zabbix_nudge 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE +201 -0
- data/README.md +4 -0
- data/Rakefile +8 -0
- data/bin/zabbix_nudge +20 -0
- data/bin/zabbix_nudge_jmx +25 -0
- data/bin/zabbix_nudged +11 -0
- data/examples/tomcat_template.xml +1279 -0
- data/lib/zabbix_nudge.rb +79 -0
- data/lib/zabbix_nudge/jmx.rb +61 -0
- data/lib/zabbix_nudge/jmx_cli.rb +54 -0
- data/lib/zabbix_nudge/nudge_cli.rb +74 -0
- data/lib/zabbix_nudge/version.rb +3 -0
- data/spec/fixtures/cms_perm_response.txt +7 -0
- data/spec/fixtures/tomcat_template.xml +92 -0
- data/spec/spec_helper.rb +13 -0
- data/spec/zabbix_nudge_spec.rb +32 -0
- data/zabbix_nudge.gemspec +37 -0
- metadata +264 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/README.md
ADDED
data/Rakefile
ADDED
data/bin/zabbix_nudge
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "rubygems"
|
4
|
+
require "ap"
|
5
|
+
|
6
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
7
|
+
|
8
|
+
require "zabbix_nudge"
|
9
|
+
require "zabbix_nudge/nudge_cli"
|
10
|
+
require "zabbix_nudge/jmx_cli"
|
11
|
+
|
12
|
+
cli = ZabbixNudge::NudgeCLI.new
|
13
|
+
cli.parse_options(ARGV)
|
14
|
+
cli.config
|
15
|
+
|
16
|
+
values = ZabbixNudge::Push.new(cli.config[:templates],cli.config.merge(:jmx => {:base_uri => cli.config[:jmx__base_uri]}) ).send
|
17
|
+
|
18
|
+
ap values if cli.config[:show_send_values]
|
19
|
+
|
20
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "rubygems"
|
4
|
+
require "ap"
|
5
|
+
|
6
|
+
$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
7
|
+
|
8
|
+
require "zabbix_nudge"
|
9
|
+
require "zabbix_nudge/jmx_cli"
|
10
|
+
|
11
|
+
cli = ZabbixNudge::JmxCLI.new
|
12
|
+
cli.parse_options(ARGV)
|
13
|
+
cli.config
|
14
|
+
|
15
|
+
jmx = ZabbixNudge::Jmx.new([],cli.config)
|
16
|
+
|
17
|
+
case cli.config[:command]
|
18
|
+
when :read
|
19
|
+
ap jmx.send(cli.config[:command],cli.config[:mbean],cli.config[:attribute],cli.config[:path],cli.config)
|
20
|
+
when :list
|
21
|
+
ap jmx.send(cli.config[:command],cli.config[:path],cli.config)
|
22
|
+
when :search
|
23
|
+
ap jmx.send(cli.config[:command],cli.config[:mbean],cli.config)
|
24
|
+
|
25
|
+
end
|
data/bin/zabbix_nudged
ADDED
@@ -0,0 +1,1279 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
|
3
|
+
<zabbix_export version="1.0" date="16.6.2011" time="16.55">
|
4
|
+
<hosts>
|
5
|
+
<host name="Template_Tomcat">
|
6
|
+
<proxy_hostid>0</proxy_hostid>
|
7
|
+
<useip>0</useip>
|
8
|
+
<dns/>
|
9
|
+
<ip>0.0.0.0</ip>
|
10
|
+
<port>0</port>
|
11
|
+
<status>3</status>
|
12
|
+
<groups>
|
13
|
+
<group>Templates</group>
|
14
|
+
<group>Application Server</group>
|
15
|
+
</groups>
|
16
|
+
<items><item type="7" key="jmx[java.lang:type=ClassLoading;LoadedClassCount;]" value_type="3">
|
17
|
+
<description>classes loaded</description>
|
18
|
+
<delay>30</delay>
|
19
|
+
<history>90</history>
|
20
|
+
<trends>365</trends>
|
21
|
+
<formula>1</formula>
|
22
|
+
<snmp_community>public</snmp_community>
|
23
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
24
|
+
<snmp_port>161</snmp_port>
|
25
|
+
</item><item type="7" key="jmx[java.lang:type=ClassLoading;TotalLoadedClassCount;]" value_type="3">
|
26
|
+
<description>classes total loaded</description>
|
27
|
+
<delay>30</delay>
|
28
|
+
<history>90</history>
|
29
|
+
<trends>365</trends>
|
30
|
+
<formula>1</formula>
|
31
|
+
<snmp_community>public</snmp_community>
|
32
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
33
|
+
<snmp_port>161</snmp_port>
|
34
|
+
</item><item type="7" key="jmx[java.lang:type=ClassLoading;UnloadedClassCount;]" value_type="3">
|
35
|
+
<description>classes unloaded</description>
|
36
|
+
<delay>30</delay>
|
37
|
+
<history>90</history>
|
38
|
+
<trends>365</trends>
|
39
|
+
<formula>1</formula>
|
40
|
+
<snmp_community>public</snmp_community>
|
41
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
42
|
+
<snmp_port>161</snmp_port>
|
43
|
+
</item><item type="7" key="jmx[java.lang:type=Compilation;Name;]" value_type="1">
|
44
|
+
<description>jit name</description>
|
45
|
+
<delay>3600</delay>
|
46
|
+
<history>90</history>
|
47
|
+
<trends>365</trends>
|
48
|
+
<formula>1</formula>
|
49
|
+
<snmp_community>public</snmp_community>
|
50
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
51
|
+
<snmp_port>161</snmp_port>
|
52
|
+
</item><item type="7" key="jmx[java.lang:type=Compilation;TotalCompilationTime;]" value_type="0">
|
53
|
+
<description>jit time</description>
|
54
|
+
<delay>30</delay>
|
55
|
+
<history>90</history>
|
56
|
+
<trends>365</trends>
|
57
|
+
<units>s</units>
|
58
|
+
<multiplier>1</multiplier>
|
59
|
+
<formula>0.0001</formula>
|
60
|
+
<snmp_community>public</snmp_community>
|
61
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
62
|
+
<snmp_port>161</snmp_port>
|
63
|
+
</item><item type="7" key="jmx[java.lang:type=Memory;ObjectPendingFinalizationCount;]" value_type="3">
|
64
|
+
<description>objects pending finalization</description>
|
65
|
+
<delay>30</delay>
|
66
|
+
<history>90</history>
|
67
|
+
<trends>365</trends>
|
68
|
+
<formula>1</formula>
|
69
|
+
<snmp_community>public</snmp_community>
|
70
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
71
|
+
<snmp_port>161</snmp_port>
|
72
|
+
</item><item type="7" key="jmx[java.lang:type=OperatingSystem;MaxFileDescriptorCount;]" value_type="3">
|
73
|
+
<description>filedescriptors max</description>
|
74
|
+
<delay>3600</delay>
|
75
|
+
<history>90</history>
|
76
|
+
<trends>365</trends>
|
77
|
+
<formula>1</formula>
|
78
|
+
<snmp_community>public</snmp_community>
|
79
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
80
|
+
<snmp_port>161</snmp_port>
|
81
|
+
</item><item type="7" key="jmx[java.lang:type=OperatingSystem;OpenFileDescriptorCount;]" value_type="3">
|
82
|
+
<description>filedescriptors open</description>
|
83
|
+
<delay>30</delay>
|
84
|
+
<history>90</history>
|
85
|
+
<trends>365</trends>
|
86
|
+
<formula>1</formula>
|
87
|
+
<snmp_community>public</snmp_community>
|
88
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
89
|
+
<snmp_port>161</snmp_port>
|
90
|
+
</item><item type="7" key="jmx[java.lang:type=Runtime;Uptime;]" value_type="0">
|
91
|
+
<description>vm uptime</description>
|
92
|
+
<delay>30</delay>
|
93
|
+
<history>90</history>
|
94
|
+
<trends>365</trends>
|
95
|
+
<units>s</units>
|
96
|
+
<multiplier>1</multiplier>
|
97
|
+
<formula>0.001</formula>
|
98
|
+
<snmp_community>public</snmp_community>
|
99
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
100
|
+
<snmp_port>161</snmp_port>
|
101
|
+
</item><item type="7" key="jmx[java.lang:type=Runtime;VmVersion;]" value_type="1">
|
102
|
+
<description>vm version</description>
|
103
|
+
<delay>3600</delay>
|
104
|
+
<history>90</history>
|
105
|
+
<trends>365</trends>
|
106
|
+
<formula>1</formula>
|
107
|
+
<snmp_community>public</snmp_community>
|
108
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
109
|
+
<snmp_port>161</snmp_port>
|
110
|
+
</item><item type="7" key="jmx[java.lang:type=Threading;DaemonThreadCount;]" value_type="3">
|
111
|
+
<description>threads daemon count</description>
|
112
|
+
<delay>30</delay>
|
113
|
+
<history>90</history>
|
114
|
+
<trends>365</trends>
|
115
|
+
<formula>1</formula>
|
116
|
+
<snmp_community>public</snmp_community>
|
117
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
118
|
+
<snmp_port>161</snmp_port>
|
119
|
+
</item><item type="7" key="jmx[java.lang:type=Threading;PeakThreadCount;]" value_type="3">
|
120
|
+
<description>threads peak</description>
|
121
|
+
<delay>30</delay>
|
122
|
+
<history>90</history>
|
123
|
+
<trends>365</trends>
|
124
|
+
<formula>1</formula>
|
125
|
+
<snmp_community>public</snmp_community>
|
126
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
127
|
+
<snmp_port>161</snmp_port>
|
128
|
+
</item><item type="7" key="jmx[java.lang:type=Threading;ThreadCount;]" value_type="3">
|
129
|
+
<description>threads count</description>
|
130
|
+
<delay>30</delay>
|
131
|
+
<history>90</history>
|
132
|
+
<trends>365</trends>
|
133
|
+
<formula>1</formula>
|
134
|
+
<snmp_community>public</snmp_community>
|
135
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
136
|
+
<snmp_port>161</snmp_port>
|
137
|
+
</item><item type="7" key="jmx[java.lang:type=Threading;TotalStartedThreadCount;]" value_type="3">
|
138
|
+
<description>threads started count</description>
|
139
|
+
<delay>30</delay>
|
140
|
+
<history>90</history>
|
141
|
+
<trends>365</trends>
|
142
|
+
<formula>1</formula>
|
143
|
+
<snmp_community>public</snmp_community>
|
144
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
145
|
+
<snmp_port>161</snmp_port>
|
146
|
+
</item><item type="7" key="jmx[java.lang:name=ConcurrentMarkSweep,type=GarbageCollector;CollectionCount;]" value_type="0">
|
147
|
+
<description>gc concurrentmarksweep cycles per second</description>
|
148
|
+
<delay>30</delay>
|
149
|
+
<history>90</history>
|
150
|
+
<trends>365</trends>
|
151
|
+
<delta>1</delta>
|
152
|
+
<formula>1</formula>
|
153
|
+
<snmp_community>public</snmp_community>
|
154
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
155
|
+
<snmp_port>161</snmp_port>
|
156
|
+
</item><item type="7" key="jmx[java.lang:name=ConcurrentMarkSweep,type=GarbageCollector;CollectionTime;]" value_type="0">
|
157
|
+
<description>gc concurrentmarksweep time</description>
|
158
|
+
<delay>30</delay>
|
159
|
+
<history>90</history>
|
160
|
+
<trends>365</trends>
|
161
|
+
<units>s</units>
|
162
|
+
<multiplier>1</multiplier>
|
163
|
+
<formula>0.001</formula>
|
164
|
+
<snmp_community>public</snmp_community>
|
165
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
166
|
+
<snmp_port>161</snmp_port>
|
167
|
+
</item><item type="7" key="jmx[java.lang:name=Copy,type=GarbageCollector;CollectionCount;]" value_type="0">
|
168
|
+
<description>gc copy cycles per second</description>
|
169
|
+
<delay>30</delay>
|
170
|
+
<history>90</history>
|
171
|
+
<trends>365</trends>
|
172
|
+
<status>3</status>
|
173
|
+
<delta>1</delta>
|
174
|
+
<formula>1</formula>
|
175
|
+
<snmp_community>public</snmp_community>
|
176
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
177
|
+
<snmp_port>161</snmp_port>
|
178
|
+
</item><item type="7" key="jmx[java.lang:name=Copy,type=GarbageCollector;CollectionTime;]" value_type="0">
|
179
|
+
<description>gc copy time</description>
|
180
|
+
<delay>30</delay>
|
181
|
+
<history>90</history>
|
182
|
+
<trends>365</trends>
|
183
|
+
<status>3</status>
|
184
|
+
<units>s</units>
|
185
|
+
<multiplier>1</multiplier>
|
186
|
+
<formula>0.001</formula>
|
187
|
+
<snmp_community>public</snmp_community>
|
188
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
189
|
+
<snmp_port>161</snmp_port>
|
190
|
+
</item><item type="7" key="jmx[java.lang:name=MarkSweepCompact,type=GarbageCollector;CollectionCount;]" value_type="0">
|
191
|
+
<description>gc marksweepcompact cycles per second</description>
|
192
|
+
<delay>30</delay>
|
193
|
+
<history>90</history>
|
194
|
+
<trends>365</trends>
|
195
|
+
<status>3</status>
|
196
|
+
<delta>1</delta>
|
197
|
+
<formula>1</formula>
|
198
|
+
<snmp_community>public</snmp_community>
|
199
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
200
|
+
<snmp_port>161</snmp_port>
|
201
|
+
</item><item type="7" key="jmx[java.lang:name=MarkSweepCompact,type=GarbageCollector;CollectionTime;]" value_type="0">
|
202
|
+
<description>gc marksweepcompact time</description>
|
203
|
+
<delay>30</delay>
|
204
|
+
<history>90</history>
|
205
|
+
<trends>365</trends>
|
206
|
+
<status>3</status>
|
207
|
+
<units>s</units>
|
208
|
+
<multiplier>1</multiplier>
|
209
|
+
<formula>0.001</formula>
|
210
|
+
<snmp_community>public</snmp_community>
|
211
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
212
|
+
<snmp_port>161</snmp_port>
|
213
|
+
</item><item type="7" key="jmx[java.lang:name=ParNew,type=GarbageCollector;CollectionCount;]" value_type="0">
|
214
|
+
<description>gc parnew cycles per second</description>
|
215
|
+
<delay>30</delay>
|
216
|
+
<history>90</history>
|
217
|
+
<trends>365</trends>
|
218
|
+
<delta>1</delta>
|
219
|
+
<formula>1</formula>
|
220
|
+
<snmp_community>public</snmp_community>
|
221
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
222
|
+
<snmp_port>161</snmp_port>
|
223
|
+
</item><item type="7" key="jmx[java.lang:name=ParNew,type=GarbageCollector;CollectionTime;]" value_type="0">
|
224
|
+
<description>gc parnew time</description>
|
225
|
+
<delay>30</delay>
|
226
|
+
<history>90</history>
|
227
|
+
<trends>365</trends>
|
228
|
+
<units>s</units>
|
229
|
+
<multiplier>1</multiplier>
|
230
|
+
<formula>0.001</formula>
|
231
|
+
<snmp_community>public</snmp_community>
|
232
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
233
|
+
<snmp_port>161</snmp_port>
|
234
|
+
</item><item type="7" key="jmx[java.lang:name=PS MarkSweep,type=GarbageCollector;CollectionCount;]" value_type="0">
|
235
|
+
<description>gs ps marksweep cycles per second</description>
|
236
|
+
<delay>30</delay>
|
237
|
+
<history>90</history>
|
238
|
+
<trends>365</trends>
|
239
|
+
<status>3</status>
|
240
|
+
<delta>1</delta>
|
241
|
+
<formula>1</formula>
|
242
|
+
<snmp_community>public</snmp_community>
|
243
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
244
|
+
<snmp_port>161</snmp_port>
|
245
|
+
</item><item type="7" key="jmx[java.lang:name=PS MarkSweep,type=GarbageCollector;CollectionTime;]" value_type="0">
|
246
|
+
<description>gc ps marksweep time</description>
|
247
|
+
<delay>30</delay>
|
248
|
+
<history>90</history>
|
249
|
+
<trends>365</trends>
|
250
|
+
<status>3</status>
|
251
|
+
<units>s</units>
|
252
|
+
<multiplier>1</multiplier>
|
253
|
+
<formula>0.001</formula>
|
254
|
+
<snmp_community>public</snmp_community>
|
255
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
256
|
+
<snmp_port>161</snmp_port>
|
257
|
+
</item><item type="7" key="jmx[java.lang:name=PS Scavenge,type=GarbageCollector;CollectionCount;]" value_type="0">
|
258
|
+
<description>gc ps scavenge cycles per second</description>
|
259
|
+
<delay>30</delay>
|
260
|
+
<history>90</history>
|
261
|
+
<trends>365</trends>
|
262
|
+
<status>3</status>
|
263
|
+
<delta>1</delta>
|
264
|
+
<formula>1</formula>
|
265
|
+
<snmp_community>public</snmp_community>
|
266
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
267
|
+
<snmp_port>161</snmp_port>
|
268
|
+
</item><item type="7" key="jmx[java.lang:name=PS Scavenge,type=GarbageCollector;CollectionTime;]" value_type="0">
|
269
|
+
<description>gc ps scavenge time</description>
|
270
|
+
<delay>30</delay>
|
271
|
+
<history>90</history>
|
272
|
+
<trends>365</trends>
|
273
|
+
<status>3</status>
|
274
|
+
<units>s</units>
|
275
|
+
<multiplier>1</multiplier>
|
276
|
+
<formula>0.001</formula>
|
277
|
+
<snmp_community>public</snmp_community>
|
278
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
279
|
+
<snmp_port>161</snmp_port>
|
280
|
+
</item><item type="7" key="jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;committed]" value_type="3">
|
281
|
+
<description>memorypool perm gen committed</description>
|
282
|
+
<delay>30</delay>
|
283
|
+
<history>90</history>
|
284
|
+
<trends>365</trends>
|
285
|
+
<units>B</units>
|
286
|
+
<formula>1</formula>
|
287
|
+
<snmp_community>public</snmp_community>
|
288
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
289
|
+
<snmp_port>161</snmp_port>
|
290
|
+
</item><item type="7" key="jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;max]" value_type="3">
|
291
|
+
<description>memorypool perm gen max</description>
|
292
|
+
<delay>3600</delay>
|
293
|
+
<history>90</history>
|
294
|
+
<trends>365</trends>
|
295
|
+
<units>B</units>
|
296
|
+
<formula>1</formula>
|
297
|
+
<snmp_community>public</snmp_community>
|
298
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
299
|
+
<snmp_port>161</snmp_port>
|
300
|
+
</item><item type="7" key="jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;used]" value_type="3">
|
301
|
+
<description>memorypool perm gen used</description>
|
302
|
+
<delay>30</delay>
|
303
|
+
<history>90</history>
|
304
|
+
<trends>365</trends>
|
305
|
+
<units>B</units>
|
306
|
+
<formula>1</formula>
|
307
|
+
<snmp_community>public</snmp_community>
|
308
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
309
|
+
<snmp_port>161</snmp_port>
|
310
|
+
</item><item type="7" key="jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;committed]" value_type="3">
|
311
|
+
<description>memorypool code cache committed</description>
|
312
|
+
<delay>30</delay>
|
313
|
+
<history>90</history>
|
314
|
+
<trends>365</trends>
|
315
|
+
<units>B</units>
|
316
|
+
<formula>1</formula>
|
317
|
+
<snmp_community>public</snmp_community>
|
318
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
319
|
+
<snmp_port>161</snmp_port>
|
320
|
+
</item><item type="7" key="jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;max]" value_type="3">
|
321
|
+
<description>memorypool code cache max</description>
|
322
|
+
<delay>3600</delay>
|
323
|
+
<history>90</history>
|
324
|
+
<trends>365</trends>
|
325
|
+
<units>B</units>
|
326
|
+
<formula>1</formula>
|
327
|
+
<snmp_community>public</snmp_community>
|
328
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
329
|
+
<snmp_port>161</snmp_port>
|
330
|
+
</item><item type="7" key="jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;used]" value_type="3">
|
331
|
+
<description>memorypool code cache used</description>
|
332
|
+
<delay>30</delay>
|
333
|
+
<history>90</history>
|
334
|
+
<trends>365</trends>
|
335
|
+
<units>B</units>
|
336
|
+
<formula>1</formula>
|
337
|
+
<snmp_community>public</snmp_community>
|
338
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
339
|
+
<snmp_port>161</snmp_port>
|
340
|
+
</item><item type="7" key="jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;committed]" value_type="3">
|
341
|
+
<description>memorypool tenured gen committed</description>
|
342
|
+
<delay>30</delay>
|
343
|
+
<history>90</history>
|
344
|
+
<trends>365</trends>
|
345
|
+
<units>B</units>
|
346
|
+
<formula>1</formula>
|
347
|
+
<snmp_community>public</snmp_community>
|
348
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
349
|
+
<snmp_port>161</snmp_port>
|
350
|
+
</item><item type="7" key="jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;max]" value_type="3">
|
351
|
+
<description>memorypool tenured gen max</description>
|
352
|
+
<delay>3600</delay>
|
353
|
+
<history>90</history>
|
354
|
+
<trends>365</trends>
|
355
|
+
<units>B</units>
|
356
|
+
<formula>1</formula>
|
357
|
+
<snmp_community>public</snmp_community>
|
358
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
359
|
+
<snmp_port>161</snmp_port>
|
360
|
+
</item><item type="7" key="jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;used]" value_type="3">
|
361
|
+
<description>memorypool tenured gen used</description>
|
362
|
+
<delay>30</delay>
|
363
|
+
<history>90</history>
|
364
|
+
<trends>365</trends>
|
365
|
+
<units>B</units>
|
366
|
+
<formula>1</formula>
|
367
|
+
<snmp_community>public</snmp_community>
|
368
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
369
|
+
<snmp_port>161</snmp_port>
|
370
|
+
</item><item type="7" key="jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;committed]" value_type="3">
|
371
|
+
<description>memorypool ps old gen committed</description>
|
372
|
+
<delay>30</delay>
|
373
|
+
<history>90</history>
|
374
|
+
<trends>365</trends>
|
375
|
+
<units>B</units>
|
376
|
+
<formula>1</formula>
|
377
|
+
<snmp_community>public</snmp_community>
|
378
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
379
|
+
<snmp_port>161</snmp_port>
|
380
|
+
</item><item type="7" key="jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;max]" value_type="3">
|
381
|
+
<description>memorypool ps old gen max</description>
|
382
|
+
<delay>3600</delay>
|
383
|
+
<history>90</history>
|
384
|
+
<trends>365</trends>
|
385
|
+
<units>B</units>
|
386
|
+
<formula>1</formula>
|
387
|
+
<snmp_community>public</snmp_community>
|
388
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
389
|
+
<snmp_port>161</snmp_port>
|
390
|
+
</item><item type="7" key="jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;used]" value_type="3">
|
391
|
+
<description>memorypool ps old gen used</description>
|
392
|
+
<delay>30</delay>
|
393
|
+
<history>90</history>
|
394
|
+
<trends>365</trends>
|
395
|
+
<units>B</units>
|
396
|
+
<formula>1</formula>
|
397
|
+
<snmp_community>public</snmp_community>
|
398
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
399
|
+
<snmp_port>161</snmp_port>
|
400
|
+
</item><item type="7" key="jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;committed]" value_type="3">
|
401
|
+
<description>memorypool ps perm gen committed</description>
|
402
|
+
<delay>30</delay>
|
403
|
+
<history>90</history>
|
404
|
+
<trends>365</trends>
|
405
|
+
<units>B</units>
|
406
|
+
<formula>1</formula>
|
407
|
+
<snmp_community>public</snmp_community>
|
408
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
409
|
+
<snmp_port>161</snmp_port>
|
410
|
+
</item><item type="7" key="jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;max]" value_type="3">
|
411
|
+
<description>memorypool ps perm gen max</description>
|
412
|
+
<delay>3600</delay>
|
413
|
+
<history>90</history>
|
414
|
+
<trends>365</trends>
|
415
|
+
<units>B</units>
|
416
|
+
<formula>1</formula>
|
417
|
+
<snmp_community>public</snmp_community>
|
418
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
419
|
+
<snmp_port>161</snmp_port>
|
420
|
+
</item><item type="7" key="jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;used]" value_type="3">
|
421
|
+
<description>memorypool ps perm gen used</description>
|
422
|
+
<delay>30</delay>
|
423
|
+
<history>90</history>
|
424
|
+
<trends>365</trends>
|
425
|
+
<units>B</units>
|
426
|
+
<formula>1</formula>
|
427
|
+
<snmp_community>public</snmp_community>
|
428
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
429
|
+
<snmp_port>161</snmp_port>
|
430
|
+
</item><item type="7" key="jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;committed]" value_type="3">
|
431
|
+
<description>memorypool cms old gen committed</description>
|
432
|
+
<delay>30</delay>
|
433
|
+
<history>90</history>
|
434
|
+
<trends>365</trends>
|
435
|
+
<units>B</units>
|
436
|
+
<formula>1</formula>
|
437
|
+
<snmp_community>public</snmp_community>
|
438
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
439
|
+
<snmp_port>161</snmp_port>
|
440
|
+
</item><item type="7" key="jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;max]" value_type="3">
|
441
|
+
<description>memorypool cms old gen max</description>
|
442
|
+
<delay>3600</delay>
|
443
|
+
<history>90</history>
|
444
|
+
<trends>365</trends>
|
445
|
+
<units>B</units>
|
446
|
+
<formula>1</formula>
|
447
|
+
<snmp_community>public</snmp_community>
|
448
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
449
|
+
<snmp_port>161</snmp_port>
|
450
|
+
</item><item type="7" key="jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;used]" value_type="3">
|
451
|
+
<description>memorypool cms old gen used</description>
|
452
|
+
<delay>30</delay>
|
453
|
+
<history>90</history>
|
454
|
+
<trends>365</trends>
|
455
|
+
<units>B</units>
|
456
|
+
<formula>1</formula>
|
457
|
+
<snmp_community>public</snmp_community>
|
458
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
459
|
+
<snmp_port>161</snmp_port>
|
460
|
+
</item><item type="7" key="jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;committed]" value_type="3">
|
461
|
+
<description>memorypool cms perm gen committed</description>
|
462
|
+
<delay>30</delay>
|
463
|
+
<history>90</history>
|
464
|
+
<trends>365</trends>
|
465
|
+
<units>B</units>
|
466
|
+
<formula>1</formula>
|
467
|
+
<snmp_community>public</snmp_community>
|
468
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
469
|
+
<snmp_port>161</snmp_port>
|
470
|
+
</item><item type="7" key="jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;max]" value_type="3">
|
471
|
+
<description>memorypool cms perm gen max</description>
|
472
|
+
<delay>3600</delay>
|
473
|
+
<history>90</history>
|
474
|
+
<trends>365</trends>
|
475
|
+
<units>B</units>
|
476
|
+
<formula>1</formula>
|
477
|
+
<snmp_community>public</snmp_community>
|
478
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
479
|
+
<snmp_port>161</snmp_port>
|
480
|
+
</item><item type="7" key="jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;used]" value_type="3">
|
481
|
+
<description>memorypool cms perm gen used</description>
|
482
|
+
<delay>30</delay>
|
483
|
+
<history>90</history>
|
484
|
+
<trends>365</trends>
|
485
|
+
<units>B</units>
|
486
|
+
<formula>1</formula>
|
487
|
+
<snmp_community>public</snmp_community>
|
488
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
489
|
+
<snmp_port>161</snmp_port>
|
490
|
+
</item><item type="7" key="jmx[Catalina:type=Server;serverInfo;]" value_type="1">
|
491
|
+
<description>tomcat version</description>
|
492
|
+
<delay>3600</delay>
|
493
|
+
<history>90</history>
|
494
|
+
<trends>365</trends>
|
495
|
+
<formula>1</formula>
|
496
|
+
<snmp_community>public</snmp_community>
|
497
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
498
|
+
<snmp_port>161</snmp_port>
|
499
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=GlobalRequestProcessor;bytesReceived;]" value_type="0">
|
500
|
+
<description>jk-8009 bytes received per second</description>
|
501
|
+
<delay>30</delay>
|
502
|
+
<history>90</history>
|
503
|
+
<trends>365</trends>
|
504
|
+
<units>B</units>
|
505
|
+
<delta>1</delta>
|
506
|
+
<formula>1</formula>
|
507
|
+
<snmp_community>public</snmp_community>
|
508
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
509
|
+
<snmp_port>161</snmp_port>
|
510
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=GlobalRequestProcessor;bytesSent;]" value_type="0">
|
511
|
+
<description>jk-8009 bytes sent per second</description>
|
512
|
+
<delay>30</delay>
|
513
|
+
<history>90</history>
|
514
|
+
<trends>365</trends>
|
515
|
+
<units>B</units>
|
516
|
+
<delta>1</delta>
|
517
|
+
<formula>1</formula>
|
518
|
+
<snmp_community>public</snmp_community>
|
519
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
520
|
+
<snmp_port>161</snmp_port>
|
521
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=GlobalRequestProcessor;requestCount;]" value_type="0">
|
522
|
+
<description>jk-8009 requests per second</description>
|
523
|
+
<delay>30</delay>
|
524
|
+
<history>90</history>
|
525
|
+
<trends>365</trends>
|
526
|
+
<delta>1</delta>
|
527
|
+
<formula>1</formula>
|
528
|
+
<snmp_community>public</snmp_community>
|
529
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
530
|
+
<snmp_port>161</snmp_port>
|
531
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=GlobalRequestProcessor;errorCount;]" value_type="0">
|
532
|
+
<description>jk-8009 errors per second</description>
|
533
|
+
<delay>30</delay>
|
534
|
+
<history>90</history>
|
535
|
+
<trends>365</trends>
|
536
|
+
<delta>1</delta>
|
537
|
+
<formula>1</formula>
|
538
|
+
<snmp_community>public</snmp_community>
|
539
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
540
|
+
<snmp_port>161</snmp_port>
|
541
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=GlobalRequestProcessor;processingTime;]" value_type="0">
|
542
|
+
<description>jk-8009 processing time per second</description>
|
543
|
+
<delay>30</delay>
|
544
|
+
<history>90</history>
|
545
|
+
<trends>365</trends>
|
546
|
+
<units>s</units>
|
547
|
+
<delta>1</delta>
|
548
|
+
<multiplier>1</multiplier>
|
549
|
+
<formula>0.001</formula>
|
550
|
+
<snmp_community>public</snmp_community>
|
551
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
552
|
+
<snmp_port>161</snmp_port>
|
553
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=ThreadPool;maxThreads;]" value_type="3">
|
554
|
+
<description>jk-8009 threads max</description>
|
555
|
+
<delay>3600</delay>
|
556
|
+
<history>90</history>
|
557
|
+
<trends>365</trends>
|
558
|
+
<formula>1</formula>
|
559
|
+
<snmp_community>public</snmp_community>
|
560
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
561
|
+
<snmp_port>161</snmp_port>
|
562
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=ThreadPool;currentThreadCount;]" value_type="3">
|
563
|
+
<description>jk-8009 threads allocated</description>
|
564
|
+
<delay>30</delay>
|
565
|
+
<history>90</history>
|
566
|
+
<trends>365</trends>
|
567
|
+
<formula>1</formula>
|
568
|
+
<snmp_community>public</snmp_community>
|
569
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
570
|
+
<snmp_port>161</snmp_port>
|
571
|
+
</item><item type="7" key="jmx[Catalina:name=jk-8009,type=ThreadPool;currentThreadsBusy;]" value_type="3">
|
572
|
+
<description>jk-8009 threads busy</description>
|
573
|
+
<delay>30</delay>
|
574
|
+
<history>90</history>
|
575
|
+
<trends>365</trends>
|
576
|
+
<formula>1</formula>
|
577
|
+
<snmp_community>public</snmp_community>
|
578
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
579
|
+
<snmp_port>161</snmp_port>
|
580
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=GlobalRequestProcessor;bytesReceived;]" value_type="0">
|
581
|
+
<description>http-8080 bytes received per second</description>
|
582
|
+
<delay>30</delay>
|
583
|
+
<history>90</history>
|
584
|
+
<trends>365</trends>
|
585
|
+
<units>B</units>
|
586
|
+
<delta>1</delta>
|
587
|
+
<formula>1</formula>
|
588
|
+
<snmp_community>public</snmp_community>
|
589
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
590
|
+
<snmp_port>161</snmp_port>
|
591
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=GlobalRequestProcessor;bytesSent;]" value_type="0">
|
592
|
+
<description>http-8080 bytes sent per second</description>
|
593
|
+
<delay>30</delay>
|
594
|
+
<history>90</history>
|
595
|
+
<trends>365</trends>
|
596
|
+
<units>B</units>
|
597
|
+
<delta>1</delta>
|
598
|
+
<formula>1</formula>
|
599
|
+
<snmp_community>public</snmp_community>
|
600
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
601
|
+
<snmp_port>161</snmp_port>
|
602
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=GlobalRequestProcessor;requestCount;]" value_type="0">
|
603
|
+
<description>http-8080 requests per second</description>
|
604
|
+
<delay>30</delay>
|
605
|
+
<history>90</history>
|
606
|
+
<trends>365</trends>
|
607
|
+
<delta>1</delta>
|
608
|
+
<formula>1</formula>
|
609
|
+
<snmp_community>public</snmp_community>
|
610
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
611
|
+
<snmp_port>161</snmp_port>
|
612
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=GlobalRequestProcessor;errorCount;]" value_type="0">
|
613
|
+
<description>http-8080 errors per second</description>
|
614
|
+
<delay>30</delay>
|
615
|
+
<history>90</history>
|
616
|
+
<trends>365</trends>
|
617
|
+
<delta>1</delta>
|
618
|
+
<formula>1</formula>
|
619
|
+
<snmp_community>public</snmp_community>
|
620
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
621
|
+
<snmp_port>161</snmp_port>
|
622
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=GlobalRequestProcessor;processingTime;]" value_type="0">
|
623
|
+
<description>http-8080 processing time per second</description>
|
624
|
+
<delay>30</delay>
|
625
|
+
<history>90</history>
|
626
|
+
<trends>365</trends>
|
627
|
+
<units>s</units>
|
628
|
+
<delta>1</delta>
|
629
|
+
<multiplier>1</multiplier>
|
630
|
+
<formula>0.001</formula>
|
631
|
+
<snmp_community>public</snmp_community>
|
632
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
633
|
+
<snmp_port>161</snmp_port>
|
634
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=ThreadPool;maxThreads;]" value_type="3">
|
635
|
+
<description>http-8080 threads max</description>
|
636
|
+
<delay>3600</delay>
|
637
|
+
<history>90</history>
|
638
|
+
<trends>365</trends>
|
639
|
+
<formula>1</formula>
|
640
|
+
<snmp_community>public</snmp_community>
|
641
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
642
|
+
<snmp_port>161</snmp_port>
|
643
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=ThreadPool;currentThreadCount;]" value_type="3">
|
644
|
+
<description>http-8080 threads allocated</description>
|
645
|
+
<delay>30</delay>
|
646
|
+
<history>90</history>
|
647
|
+
<trends>365</trends>
|
648
|
+
<formula>1</formula>
|
649
|
+
<snmp_community>public</snmp_community>
|
650
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
651
|
+
<snmp_port>161</snmp_port>
|
652
|
+
</item><item type="7" key="jmx[Catalina:name=http-8080,type=ThreadPool;currentThreadsBusy;]" value_type="3">
|
653
|
+
<description>http-8080 threads busy</description>
|
654
|
+
<delay>30</delay>
|
655
|
+
<history>90</history>
|
656
|
+
<trends>365</trends>
|
657
|
+
<formula>1</formula>
|
658
|
+
<snmp_community>public</snmp_community>
|
659
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
660
|
+
<snmp_port>161</snmp_port>
|
661
|
+
</item><item type="7" key="jmx[Catalina:type=ProtocolHandler,port=8080;compression;]" value_type="1">
|
662
|
+
<description>http-8080 gzip compression</description>
|
663
|
+
<delay>3600</delay>
|
664
|
+
<history>90</history>
|
665
|
+
<trends>365</trends>
|
666
|
+
<formula>1</formula>
|
667
|
+
<snmp_community>public</snmp_community>
|
668
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
669
|
+
<snmp_port>161</snmp_port>
|
670
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=GlobalRequestProcessor;bytesReceived;]" value_type="0">
|
671
|
+
<description>http-8443 bytes received per second</description>
|
672
|
+
<delay>30</delay>
|
673
|
+
<history>90</history>
|
674
|
+
<trends>365</trends>
|
675
|
+
<units>B</units>
|
676
|
+
<delta>1</delta>
|
677
|
+
<formula>1</formula>
|
678
|
+
<snmp_community>public</snmp_community>
|
679
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
680
|
+
<snmp_port>161</snmp_port>
|
681
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=GlobalRequestProcessor;bytesSent;]" value_type="0">
|
682
|
+
<description>http-8443 bytes sent per second</description>
|
683
|
+
<delay>30</delay>
|
684
|
+
<history>90</history>
|
685
|
+
<trends>365</trends>
|
686
|
+
<units>B</units>
|
687
|
+
<delta>1</delta>
|
688
|
+
<formula>1</formula>
|
689
|
+
<snmp_community>public</snmp_community>
|
690
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
691
|
+
<snmp_port>161</snmp_port>
|
692
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=GlobalRequestProcessor;requestCount;]" value_type="0">
|
693
|
+
<description>http-8443 requests per second</description>
|
694
|
+
<delay>30</delay>
|
695
|
+
<history>90</history>
|
696
|
+
<trends>365</trends>
|
697
|
+
<delta>1</delta>
|
698
|
+
<formula>1</formula>
|
699
|
+
<snmp_community>public</snmp_community>
|
700
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
701
|
+
<snmp_port>161</snmp_port>
|
702
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=GlobalRequestProcessor;errorCount;]" value_type="0">
|
703
|
+
<description>http-8443 errors per second</description>
|
704
|
+
<delay>30</delay>
|
705
|
+
<history>90</history>
|
706
|
+
<trends>365</trends>
|
707
|
+
<delta>1</delta>
|
708
|
+
<formula>1</formula>
|
709
|
+
<snmp_community>public</snmp_community>
|
710
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
711
|
+
<snmp_port>161</snmp_port>
|
712
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=GlobalRequestProcessor;processingTime;]" value_type="0">
|
713
|
+
<description>http-8443 processing time per second</description>
|
714
|
+
<delay>30</delay>
|
715
|
+
<history>90</history>
|
716
|
+
<trends>365</trends>
|
717
|
+
<units>s</units>
|
718
|
+
<delta>1</delta>
|
719
|
+
<multiplier>1</multiplier>
|
720
|
+
<formula>0.001</formula>
|
721
|
+
<snmp_community>public</snmp_community>
|
722
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
723
|
+
<snmp_port>161</snmp_port>
|
724
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=ThreadPool;maxThreads;]" value_type="3">
|
725
|
+
<description>http-8443 threads max</description>
|
726
|
+
<delay>3600</delay>
|
727
|
+
<history>90</history>
|
728
|
+
<trends>365</trends>
|
729
|
+
<formula>1</formula>
|
730
|
+
<snmp_community>public</snmp_community>
|
731
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
732
|
+
<snmp_port>161</snmp_port>
|
733
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=ThreadPool;currentThreadCount;]" value_type="3">
|
734
|
+
<description>http-8443 threads allocated</description>
|
735
|
+
<delay>30</delay>
|
736
|
+
<history>90</history>
|
737
|
+
<trends>365</trends>
|
738
|
+
<formula>1</formula>
|
739
|
+
<snmp_community>public</snmp_community>
|
740
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
741
|
+
<snmp_port>161</snmp_port>
|
742
|
+
</item><item type="7" key="jmx[Catalina:name=http-8443,type=ThreadPool;currentThreadsBusy;]" value_type="3">
|
743
|
+
<description>http-8443 threads busy</description>
|
744
|
+
<delay>30</delay>
|
745
|
+
<history>90</history>
|
746
|
+
<trends>365</trends>
|
747
|
+
<formula>1</formula>
|
748
|
+
<snmp_community>public</snmp_community>
|
749
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
750
|
+
<snmp_port>161</snmp_port>
|
751
|
+
</item><item type="7" key="jmx[Catalina:type=ProtocolHandler,port=8443;compression;]" value_type="1">
|
752
|
+
<description>http-8443 gzip compression</description>
|
753
|
+
<delay>3600</delay>
|
754
|
+
<history>90</history>
|
755
|
+
<trends>365</trends>
|
756
|
+
<formula>1</formula>
|
757
|
+
<snmp_community>public</snmp_community>
|
758
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
759
|
+
<snmp_port>161</snmp_port>
|
760
|
+
</item><item type="7" key="jmx[Catalina:type=Manager,path=/,host=localhost;activeSessions;]" value_type="3">
|
761
|
+
<description>sessions / active</description>
|
762
|
+
<delay>30</delay>
|
763
|
+
<history>90</history>
|
764
|
+
<trends>365</trends>
|
765
|
+
<formula>1</formula>
|
766
|
+
<snmp_community>public</snmp_community>
|
767
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
768
|
+
<snmp_port>161</snmp_port>
|
769
|
+
</item><item type="7" key="jmx[Catalina:type=Manager,path=/,host=localhost;maxActiveSessions;]" value_type="3">
|
770
|
+
<description>sessions / peak</description>
|
771
|
+
<delay>30</delay>
|
772
|
+
<history>90</history>
|
773
|
+
<trends>365</trends>
|
774
|
+
<formula>1</formula>
|
775
|
+
<snmp_community>public</snmp_community>
|
776
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
777
|
+
<snmp_port>161</snmp_port>
|
778
|
+
</item><item type="7" key="jmx[Catalina:type=Manager,path=/,host=localhost;rejectedSessions;]" value_type="3">
|
779
|
+
<description>sessions / rejected</description>
|
780
|
+
<delay>30</delay>
|
781
|
+
<history>90</history>
|
782
|
+
<trends>365</trends>
|
783
|
+
<formula>1</formula>
|
784
|
+
<snmp_community>public</snmp_community>
|
785
|
+
<snmp_oid>interfaces.ifTable.ifEntry.ifInOctets.1</snmp_oid>
|
786
|
+
<snmp_port>161</snmp_port>
|
787
|
+
</item></items>
|
788
|
+
<triggers><trigger>
|
789
|
+
<description>{HOSTNAME} is not reachable</description>
|
790
|
+
<expression>{{HOSTNAME}:jmx[java.lang:type=Runtime;Uptime;].nodata(60)}=1</expression>
|
791
|
+
<priority>4</priority>
|
792
|
+
</trigger><trigger>
|
793
|
+
<description>{HOSTNAME} uses suboptimal jit compiler</description>
|
794
|
+
<expression>{{HOSTNAME}:jmx[java.lang:type=Compilation;Name;].str(Server)}#1</expression>
|
795
|
+
<priority>2</priority>
|
796
|
+
</trigger><trigger>
|
797
|
+
<description>70% file descriptors used on {HOSTNAME}</description>
|
798
|
+
<expression>{{HOSTNAME}:jmx[java.lang:type=OperatingSystem;OpenFileDescriptorCount;].last(0)}>({{HOSTNAME}:jmx[java.lang:type=OperatingSystem;MaxFileDescriptorCount;].last(0)}*0.7)</expression>
|
799
|
+
<priority>4</priority>
|
800
|
+
</trigger><trigger>
|
801
|
+
<description>70% memorypool perm gen used on {HOSTNAME}</description>
|
802
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;used].last(0)}>({{HOSTNAME}:jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;max].last(0)}*0.7)</expression>
|
803
|
+
<priority>4</priority>
|
804
|
+
</trigger><trigger>
|
805
|
+
<description>memory pool perm gen fully committed on {HOSTNAME}</description>
|
806
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;committed].last(0)}={{HOSTNAME}:jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;max].last(0)}</expression>
|
807
|
+
<priority>3</priority>
|
808
|
+
</trigger><trigger>
|
809
|
+
<description>70% memorypool code cache used on {HOSTNAME}</description>
|
810
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;used].last(0)}>({{HOSTNAME}:jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;max].last(0)}*0.7)</expression>
|
811
|
+
<priority>4</priority>
|
812
|
+
</trigger><trigger>
|
813
|
+
<description>memory pool code cache fully committed on {HOSTNAME}</description>
|
814
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;committed].last(0)}={{HOSTNAME}:jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;max].last(0)}</expression>
|
815
|
+
<priority>3</priority>
|
816
|
+
</trigger><trigger>
|
817
|
+
<description>70% memorypool tenured gen used on {HOSTNAME}</description>
|
818
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;used].last(0)}>({{HOSTNAME}:jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;max].last(0)}*0.7)</expression>
|
819
|
+
<priority>4</priority>
|
820
|
+
</trigger><trigger>
|
821
|
+
<description>memory pool tenured gen fully committed on {HOSTNAME}</description>
|
822
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;committed].last(0)}={{HOSTNAME}:jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;max].last(0)}</expression>
|
823
|
+
<priority>3</priority>
|
824
|
+
</trigger><trigger>
|
825
|
+
<description>70% memorypool ps old gen used on {HOSTNAME}</description>
|
826
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;used].last(0)}>({{HOSTNAME}:jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;max].last(0)}*0.7)</expression>
|
827
|
+
<priority>4</priority>
|
828
|
+
</trigger><trigger>
|
829
|
+
<description>memory pool ps old gen fully committed on {HOSTNAME}</description>
|
830
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;committed].last(0)}={{HOSTNAME}:jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;max].last(0)}</expression>
|
831
|
+
<priority>3</priority>
|
832
|
+
</trigger><trigger>
|
833
|
+
<description>70% memorypool ps perm gen used on {HOSTNAME}</description>
|
834
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;used].last(0)}>({{HOSTNAME}:jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;max].last(0)}*0.7)</expression>
|
835
|
+
<priority>4</priority>
|
836
|
+
</trigger><trigger>
|
837
|
+
<description>memory pool ps perm gen fully committed on {HOSTNAME}</description>
|
838
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;committed].last(0)}={{HOSTNAME}:jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;max].last(0)}</expression>
|
839
|
+
<priority>3</priority>
|
840
|
+
</trigger><trigger>
|
841
|
+
<description>70% memorypool cms old gen used on {HOSTNAME}</description>
|
842
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;used].last(0)}>({{HOSTNAME}:jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;max].last(0)}*0.7)</expression>
|
843
|
+
<priority>4</priority>
|
844
|
+
</trigger><trigger>
|
845
|
+
<description>memory pool cms old gen fully committed on {HOSTNAME}</description>
|
846
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;committed].last(0)}={{HOSTNAME}:jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;max].last(0)}</expression>
|
847
|
+
<priority>3</priority>
|
848
|
+
</trigger><trigger>
|
849
|
+
<description>70% memorypool cms perm gen used on {HOSTNAME}</description>
|
850
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;used].last(0)}>({{HOSTNAME}:jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;max].last(0)}*0.7)</expression>
|
851
|
+
<priority>4</priority>
|
852
|
+
</trigger><trigger>
|
853
|
+
<description>memory pool cms perm gen fully committed on {HOSTNAME}</description>
|
854
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;committed].last(0)}={{HOSTNAME}:jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;max].last(0)}</expression>
|
855
|
+
<priority>3</priority>
|
856
|
+
</trigger><trigger>
|
857
|
+
<description>gc marksweepcompact in fire fighting mode on {HOSTNAME}</description>
|
858
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=Copy,type=GarbageCollector;CollectionCount;].last(0)}</expression>
|
859
|
+
<priority>4</priority>
|
860
|
+
</trigger><trigger>
|
861
|
+
<description>gc ps marksweep in fire fighting mode on {HOSTNAME}</description>
|
862
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=PS Scavenge,type=GarbageCollector;CollectionCount;].last(0)}</expression>
|
863
|
+
<priority>4</priority>
|
864
|
+
</trigger><trigger>
|
865
|
+
<description>gc concurrentmarksweep in fire fighting mode on {HOSTNAME}</description>
|
866
|
+
<expression>{{HOSTNAME}:jmx[java.lang:name=ParNew,type=GarbageCollector;CollectionCount;].last(0)}</expression>
|
867
|
+
<priority>4</priority>
|
868
|
+
</trigger><trigger>
|
869
|
+
<description>70% jk-8009 worker threads busy on {HOSTNAME}</description>
|
870
|
+
<expression>{{HOSTNAME}:jmx[Catalina:name=jk-8009,type=ThreadPool;currentThreadsBusy;].last(0)}>({{HOSTNAME}:jmx[Catalina:name=jk-8009,type=ThreadPool;maxThreads;].last(0)}*0.7)</expression>
|
871
|
+
<priority>4</priority>
|
872
|
+
</trigger><trigger>
|
873
|
+
<description>gzip compression is off for connector http-8080 on {HOSTNAME}</description>
|
874
|
+
<expression>{{HOSTNAME}:jmx[Catalina:type=ProtocolHandler,port=8080;compression;].str(off)}=1</expression>
|
875
|
+
<priority>2</priority>
|
876
|
+
</trigger><trigger>
|
877
|
+
<description>70% http-8080 worker threads busy on {HOSTNAME}</description>
|
878
|
+
<expression>{{HOSTNAME}:jmx[Catalina:name=http-8080,type=ThreadPool;currentThreadsBusy;].last(0)}>({{HOSTNAME}:jmx[Catalina:name=http-8080,type=ThreadPool;maxThreads;].last(0)}*0.7)</expression>
|
879
|
+
<priority>4</priority>
|
880
|
+
</trigger><trigger>
|
881
|
+
<description>gzip compression is off for connector http-8443 on {HOSTNAME}</description>
|
882
|
+
<expression>{{HOSTNAME}:jmx[Catalina:type=ProtocolHandler,port=8443;compression;].str(off)}=1</expression>
|
883
|
+
<priority>2</priority>
|
884
|
+
</trigger><trigger>
|
885
|
+
<description>70% http-8443 worker threads busy on {HOSTNAME}</description>
|
886
|
+
<expression>{{HOSTNAME}:jmx[Catalina:name=http-8443,type=ThreadPool;currentThreadsBusy;].last(0)}>({{HOSTNAME}:jmx[Catalina:name=http-8443,type=ThreadPool;maxThreads;].last(0)}*0.7)</expression>
|
887
|
+
<priority>4</priority>
|
888
|
+
</trigger></triggers>
|
889
|
+
<graphs><graph name="classloader" width="900" height="200">
|
890
|
+
<show_work_period>1</show_work_period>
|
891
|
+
<show_triggers>1</show_triggers>
|
892
|
+
<yaxismin>0.0000</yaxismin>
|
893
|
+
<yaxismax>100.0000</yaxismax>
|
894
|
+
<graph_elements>
|
895
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=ClassLoading;TotalLoadedClassCount;]">
|
896
|
+
<color>000099</color>
|
897
|
+
<yaxisside>1</yaxisside>
|
898
|
+
<calc_fnc>2</calc_fnc>
|
899
|
+
<periods_cnt>5</periods_cnt>
|
900
|
+
</graph_element>
|
901
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=ClassLoading;UnloadedClassCount;]">
|
902
|
+
<color>999900</color>
|
903
|
+
<yaxisside>1</yaxisside>
|
904
|
+
<calc_fnc>2</calc_fnc>
|
905
|
+
<periods_cnt>5</periods_cnt>
|
906
|
+
</graph_element>
|
907
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=ClassLoading;LoadedClassCount;]">
|
908
|
+
<color>009900</color>
|
909
|
+
<yaxisside>1</yaxisside>
|
910
|
+
<calc_fnc>2</calc_fnc>
|
911
|
+
<periods_cnt>5</periods_cnt>
|
912
|
+
</graph_element>
|
913
|
+
</graph_elements>
|
914
|
+
</graph><graph name="file descriptors" width="900" height="200">
|
915
|
+
<show_work_period>1</show_work_period>
|
916
|
+
<show_triggers>1</show_triggers>
|
917
|
+
<yaxismin>0.0000</yaxismin>
|
918
|
+
<yaxismax>100.0000</yaxismax>
|
919
|
+
<graph_elements>
|
920
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=OperatingSystem;MaxFileDescriptorCount;]">
|
921
|
+
<color>990000</color>
|
922
|
+
<yaxisside>1</yaxisside>
|
923
|
+
<calc_fnc>2</calc_fnc>
|
924
|
+
<periods_cnt>5</periods_cnt>
|
925
|
+
</graph_element>
|
926
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=OperatingSystem;OpenFileDescriptorCount;]">
|
927
|
+
<color>009900</color>
|
928
|
+
<yaxisside>1</yaxisside>
|
929
|
+
<calc_fnc>2</calc_fnc>
|
930
|
+
<periods_cnt>5</periods_cnt>
|
931
|
+
</graph_element>
|
932
|
+
</graph_elements>
|
933
|
+
</graph><graph name="threads" width="900" height="200">
|
934
|
+
<show_work_period>1</show_work_period>
|
935
|
+
<show_triggers>1</show_triggers>
|
936
|
+
<yaxismin>0.0000</yaxismin>
|
937
|
+
<yaxismax>100.0000</yaxismax>
|
938
|
+
<graph_elements>
|
939
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=Threading;PeakThreadCount;]">
|
940
|
+
<color>990000</color>
|
941
|
+
<yaxisside>1</yaxisside>
|
942
|
+
<calc_fnc>2</calc_fnc>
|
943
|
+
<periods_cnt>5</periods_cnt>
|
944
|
+
</graph_element>
|
945
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=Threading;DaemonThreadCount;]">
|
946
|
+
<color>000099</color>
|
947
|
+
<yaxisside>1</yaxisside>
|
948
|
+
<calc_fnc>2</calc_fnc>
|
949
|
+
<periods_cnt>5</periods_cnt>
|
950
|
+
</graph_element>
|
951
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:type=Threading;ThreadCount;]">
|
952
|
+
<color>009900</color>
|
953
|
+
<yaxisside>1</yaxisside>
|
954
|
+
<calc_fnc>2</calc_fnc>
|
955
|
+
<periods_cnt>5</periods_cnt>
|
956
|
+
</graph_element>
|
957
|
+
</graph_elements>
|
958
|
+
</graph><graph name="memorypool perm gen" width="900" height="200">
|
959
|
+
<show_work_period>1</show_work_period>
|
960
|
+
<show_triggers>1</show_triggers>
|
961
|
+
<yaxismin>0.0000</yaxismin>
|
962
|
+
<yaxismax>100.0000</yaxismax>
|
963
|
+
<graph_elements>
|
964
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;committed]">
|
965
|
+
<color>000099</color>
|
966
|
+
<yaxisside>1</yaxisside>
|
967
|
+
<calc_fnc>2</calc_fnc>
|
968
|
+
<periods_cnt>5</periods_cnt>
|
969
|
+
</graph_element>
|
970
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;max]">
|
971
|
+
<color>990000</color>
|
972
|
+
<yaxisside>1</yaxisside>
|
973
|
+
<calc_fnc>2</calc_fnc>
|
974
|
+
<periods_cnt>5</periods_cnt>
|
975
|
+
</graph_element>
|
976
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Perm Gen,type=MemoryPool;Usage;used]">
|
977
|
+
<color>009900</color>
|
978
|
+
<yaxisside>1</yaxisside>
|
979
|
+
<calc_fnc>2</calc_fnc>
|
980
|
+
<periods_cnt>5</periods_cnt>
|
981
|
+
</graph_element>
|
982
|
+
</graph_elements>
|
983
|
+
</graph><graph name="memorypool code cache" width="900" height="200">
|
984
|
+
<show_work_period>1</show_work_period>
|
985
|
+
<show_triggers>1</show_triggers>
|
986
|
+
<yaxismin>0.0000</yaxismin>
|
987
|
+
<yaxismax>100.0000</yaxismax>
|
988
|
+
<graph_elements>
|
989
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;committed]">
|
990
|
+
<color>000099</color>
|
991
|
+
<yaxisside>1</yaxisside>
|
992
|
+
<calc_fnc>2</calc_fnc>
|
993
|
+
<periods_cnt>5</periods_cnt>
|
994
|
+
</graph_element>
|
995
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;max]">
|
996
|
+
<color>990000</color>
|
997
|
+
<yaxisside>1</yaxisside>
|
998
|
+
<calc_fnc>2</calc_fnc>
|
999
|
+
<periods_cnt>5</periods_cnt>
|
1000
|
+
</graph_element>
|
1001
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Code Cache,type=MemoryPool;Usage;used]">
|
1002
|
+
<color>009900</color>
|
1003
|
+
<yaxisside>1</yaxisside>
|
1004
|
+
<calc_fnc>2</calc_fnc>
|
1005
|
+
<periods_cnt>5</periods_cnt>
|
1006
|
+
</graph_element>
|
1007
|
+
</graph_elements>
|
1008
|
+
</graph><graph name="memorypool tenured gen" width="900" height="200">
|
1009
|
+
<show_work_period>1</show_work_period>
|
1010
|
+
<show_triggers>1</show_triggers>
|
1011
|
+
<yaxismin>0.0000</yaxismin>
|
1012
|
+
<yaxismax>100.0000</yaxismax>
|
1013
|
+
<graph_elements>
|
1014
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;committed]">
|
1015
|
+
<color>000099</color>
|
1016
|
+
<yaxisside>1</yaxisside>
|
1017
|
+
<calc_fnc>2</calc_fnc>
|
1018
|
+
<periods_cnt>5</periods_cnt>
|
1019
|
+
</graph_element>
|
1020
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;max]">
|
1021
|
+
<color>990000</color>
|
1022
|
+
<yaxisside>1</yaxisside>
|
1023
|
+
<calc_fnc>2</calc_fnc>
|
1024
|
+
<periods_cnt>5</periods_cnt>
|
1025
|
+
</graph_element>
|
1026
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Tenured Gen,type=MemoryPool;Usage;used]">
|
1027
|
+
<color>009900</color>
|
1028
|
+
<yaxisside>1</yaxisside>
|
1029
|
+
<calc_fnc>2</calc_fnc>
|
1030
|
+
<periods_cnt>5</periods_cnt>
|
1031
|
+
</graph_element>
|
1032
|
+
</graph_elements>
|
1033
|
+
</graph><graph name="memorypool ps old gen" width="900" height="200">
|
1034
|
+
<show_work_period>1</show_work_period>
|
1035
|
+
<show_triggers>1</show_triggers>
|
1036
|
+
<yaxismin>0.0000</yaxismin>
|
1037
|
+
<yaxismax>100.0000</yaxismax>
|
1038
|
+
<graph_elements>
|
1039
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;committed]">
|
1040
|
+
<color>000099</color>
|
1041
|
+
<yaxisside>1</yaxisside>
|
1042
|
+
<calc_fnc>2</calc_fnc>
|
1043
|
+
<periods_cnt>5</periods_cnt>
|
1044
|
+
</graph_element>
|
1045
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;max]">
|
1046
|
+
<color>990000</color>
|
1047
|
+
<yaxisside>1</yaxisside>
|
1048
|
+
<calc_fnc>2</calc_fnc>
|
1049
|
+
<periods_cnt>5</periods_cnt>
|
1050
|
+
</graph_element>
|
1051
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS Old Gen,type=MemoryPool;Usage;used]">
|
1052
|
+
<color>009900</color>
|
1053
|
+
<yaxisside>1</yaxisside>
|
1054
|
+
<calc_fnc>2</calc_fnc>
|
1055
|
+
<periods_cnt>5</periods_cnt>
|
1056
|
+
</graph_element>
|
1057
|
+
</graph_elements>
|
1058
|
+
</graph><graph name="memorypool ps perm gen" width="900" height="200">
|
1059
|
+
<show_work_period>1</show_work_period>
|
1060
|
+
<show_triggers>1</show_triggers>
|
1061
|
+
<yaxismin>0.0000</yaxismin>
|
1062
|
+
<yaxismax>100.0000</yaxismax>
|
1063
|
+
<graph_elements>
|
1064
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;committed]">
|
1065
|
+
<color>000099</color>
|
1066
|
+
<yaxisside>1</yaxisside>
|
1067
|
+
<calc_fnc>2</calc_fnc>
|
1068
|
+
<periods_cnt>5</periods_cnt>
|
1069
|
+
</graph_element>
|
1070
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;max]">
|
1071
|
+
<color>990000</color>
|
1072
|
+
<yaxisside>1</yaxisside>
|
1073
|
+
<calc_fnc>2</calc_fnc>
|
1074
|
+
<periods_cnt>5</periods_cnt>
|
1075
|
+
</graph_element>
|
1076
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS Perm Gen,type=MemoryPool;Usage;used]">
|
1077
|
+
<color>009900</color>
|
1078
|
+
<yaxisside>1</yaxisside>
|
1079
|
+
<calc_fnc>2</calc_fnc>
|
1080
|
+
<periods_cnt>5</periods_cnt>
|
1081
|
+
</graph_element>
|
1082
|
+
</graph_elements>
|
1083
|
+
</graph><graph name="memorypool cms old gen" width="900" height="200">
|
1084
|
+
<show_work_period>1</show_work_period>
|
1085
|
+
<show_triggers>1</show_triggers>
|
1086
|
+
<yaxismin>0.0000</yaxismin>
|
1087
|
+
<yaxismax>100.0000</yaxismax>
|
1088
|
+
<graph_elements>
|
1089
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;committed]">
|
1090
|
+
<color>000099</color>
|
1091
|
+
<yaxisside>1</yaxisside>
|
1092
|
+
<calc_fnc>2</calc_fnc>
|
1093
|
+
<periods_cnt>5</periods_cnt>
|
1094
|
+
</graph_element>
|
1095
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;max]">
|
1096
|
+
<color>990000</color>
|
1097
|
+
<yaxisside>1</yaxisside>
|
1098
|
+
<calc_fnc>2</calc_fnc>
|
1099
|
+
<periods_cnt>5</periods_cnt>
|
1100
|
+
</graph_element>
|
1101
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=CMS Old Gen,type=MemoryPool;Usage;used]">
|
1102
|
+
<color>009900</color>
|
1103
|
+
<yaxisside>1</yaxisside>
|
1104
|
+
<calc_fnc>2</calc_fnc>
|
1105
|
+
<periods_cnt>5</periods_cnt>
|
1106
|
+
</graph_element>
|
1107
|
+
</graph_elements>
|
1108
|
+
</graph><graph name="memorypool cms perm gen" width="900" height="200">
|
1109
|
+
<show_work_period>1</show_work_period>
|
1110
|
+
<show_triggers>1</show_triggers>
|
1111
|
+
<yaxismin>0.0000</yaxismin>
|
1112
|
+
<yaxismax>100.0000</yaxismax>
|
1113
|
+
<graph_elements>
|
1114
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;committed]">
|
1115
|
+
<color>000099</color>
|
1116
|
+
<yaxisside>1</yaxisside>
|
1117
|
+
<calc_fnc>2</calc_fnc>
|
1118
|
+
<periods_cnt>5</periods_cnt>
|
1119
|
+
</graph_element>
|
1120
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;max]">
|
1121
|
+
<color>990000</color>
|
1122
|
+
<yaxisside>1</yaxisside>
|
1123
|
+
<calc_fnc>2</calc_fnc>
|
1124
|
+
<periods_cnt>5</periods_cnt>
|
1125
|
+
</graph_element>
|
1126
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=CMS Perm Gen,type=MemoryPool;Usage;used]">
|
1127
|
+
<color>009900</color>
|
1128
|
+
<yaxisside>1</yaxisside>
|
1129
|
+
<calc_fnc>2</calc_fnc>
|
1130
|
+
<periods_cnt>5</periods_cnt>
|
1131
|
+
</graph_element>
|
1132
|
+
</graph_elements>
|
1133
|
+
</graph><graph name="garbage collector cycles per second" width="900" height="200">
|
1134
|
+
<show_work_period>1</show_work_period>
|
1135
|
+
<show_triggers>1</show_triggers>
|
1136
|
+
<yaxismin>0.0000</yaxismin>
|
1137
|
+
<yaxismax>100.0000</yaxismax>
|
1138
|
+
<graph_elements>
|
1139
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS Scavenge,type=GarbageCollector;CollectionCount;]">
|
1140
|
+
<color>009900</color>
|
1141
|
+
<yaxisside>1</yaxisside>
|
1142
|
+
<calc_fnc>2</calc_fnc>
|
1143
|
+
<periods_cnt>5</periods_cnt>
|
1144
|
+
</graph_element>
|
1145
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=ConcurrentMarkSweep,type=GarbageCollector;CollectionCount;]">
|
1146
|
+
<color>990000</color>
|
1147
|
+
<yaxisside>1</yaxisside>
|
1148
|
+
<calc_fnc>2</calc_fnc>
|
1149
|
+
<periods_cnt>5</periods_cnt>
|
1150
|
+
</graph_element>
|
1151
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=Copy,type=GarbageCollector;CollectionCount;]">
|
1152
|
+
<color>009900</color>
|
1153
|
+
<yaxisside>1</yaxisside>
|
1154
|
+
<calc_fnc>2</calc_fnc>
|
1155
|
+
<periods_cnt>5</periods_cnt>
|
1156
|
+
</graph_element>
|
1157
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=MarkSweepCompact,type=GarbageCollector;CollectionCount;]">
|
1158
|
+
<color>990000</color>
|
1159
|
+
<yaxisside>1</yaxisside>
|
1160
|
+
<calc_fnc>2</calc_fnc>
|
1161
|
+
<periods_cnt>5</periods_cnt>
|
1162
|
+
</graph_element>
|
1163
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=PS MarkSweep,type=GarbageCollector;CollectionCount;]">
|
1164
|
+
<color>990000</color>
|
1165
|
+
<yaxisside>1</yaxisside>
|
1166
|
+
<calc_fnc>2</calc_fnc>
|
1167
|
+
<periods_cnt>5</periods_cnt>
|
1168
|
+
</graph_element>
|
1169
|
+
<graph_element item="{HOSTNAME}:jmx[java.lang:name=ParNew,type=GarbageCollector;CollectionCount;]">
|
1170
|
+
<color>009900</color>
|
1171
|
+
<yaxisside>1</yaxisside>
|
1172
|
+
<calc_fnc>2</calc_fnc>
|
1173
|
+
<periods_cnt>5</periods_cnt>
|
1174
|
+
</graph_element>
|
1175
|
+
</graph_elements>
|
1176
|
+
</graph><graph name="jk-8009 worker threads" width="900" height="200">
|
1177
|
+
<show_work_period>1</show_work_period>
|
1178
|
+
<show_triggers>1</show_triggers>
|
1179
|
+
<yaxismin>0.0000</yaxismin>
|
1180
|
+
<yaxismax>100.0000</yaxismax>
|
1181
|
+
<graph_elements>
|
1182
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=jk-8009,type=ThreadPool;maxThreads;]">
|
1183
|
+
<color>990000</color>
|
1184
|
+
<yaxisside>1</yaxisside>
|
1185
|
+
<calc_fnc>2</calc_fnc>
|
1186
|
+
<periods_cnt>5</periods_cnt>
|
1187
|
+
</graph_element>
|
1188
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=jk-8009,type=ThreadPool;currentThreadsBusy;]">
|
1189
|
+
<color>009900</color>
|
1190
|
+
<yaxisside>1</yaxisside>
|
1191
|
+
<calc_fnc>2</calc_fnc>
|
1192
|
+
<periods_cnt>5</periods_cnt>
|
1193
|
+
</graph_element>
|
1194
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=jk-8009,type=ThreadPool;currentThreadCount;]">
|
1195
|
+
<color>000099</color>
|
1196
|
+
<yaxisside>1</yaxisside>
|
1197
|
+
<calc_fnc>2</calc_fnc>
|
1198
|
+
<periods_cnt>5</periods_cnt>
|
1199
|
+
</graph_element>
|
1200
|
+
</graph_elements>
|
1201
|
+
</graph><graph name="http-8080 worker threads" width="900" height="200">
|
1202
|
+
<show_work_period>1</show_work_period>
|
1203
|
+
<show_triggers>1</show_triggers>
|
1204
|
+
<yaxismin>0.0000</yaxismin>
|
1205
|
+
<yaxismax>100.0000</yaxismax>
|
1206
|
+
<graph_elements>
|
1207
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=http-8080,type=ThreadPool;maxThreads;]">
|
1208
|
+
<color>990000</color>
|
1209
|
+
<yaxisside>1</yaxisside>
|
1210
|
+
<calc_fnc>2</calc_fnc>
|
1211
|
+
<periods_cnt>5</periods_cnt>
|
1212
|
+
</graph_element>
|
1213
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=http-8080,type=ThreadPool;currentThreadsBusy;]">
|
1214
|
+
<color>009900</color>
|
1215
|
+
<yaxisside>1</yaxisside>
|
1216
|
+
<calc_fnc>2</calc_fnc>
|
1217
|
+
<periods_cnt>5</periods_cnt>
|
1218
|
+
</graph_element>
|
1219
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=http-8080,type=ThreadPool;currentThreadCount;]">
|
1220
|
+
<color>000099</color>
|
1221
|
+
<yaxisside>1</yaxisside>
|
1222
|
+
<calc_fnc>2</calc_fnc>
|
1223
|
+
<periods_cnt>5</periods_cnt>
|
1224
|
+
</graph_element>
|
1225
|
+
</graph_elements>
|
1226
|
+
</graph><graph name="http-8443 worker threads" width="900" height="200">
|
1227
|
+
<show_work_period>1</show_work_period>
|
1228
|
+
<show_triggers>1</show_triggers>
|
1229
|
+
<yaxismin>0.0000</yaxismin>
|
1230
|
+
<yaxismax>100.0000</yaxismax>
|
1231
|
+
<graph_elements>
|
1232
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=http-8443,type=ThreadPool;maxThreads;]">
|
1233
|
+
<color>990000</color>
|
1234
|
+
<yaxisside>1</yaxisside>
|
1235
|
+
<calc_fnc>2</calc_fnc>
|
1236
|
+
<periods_cnt>5</periods_cnt>
|
1237
|
+
</graph_element>
|
1238
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=http-8443,type=ThreadPool;currentThreadsBusy;]">
|
1239
|
+
<color>009900</color>
|
1240
|
+
<yaxisside>1</yaxisside>
|
1241
|
+
<calc_fnc>2</calc_fnc>
|
1242
|
+
<periods_cnt>5</periods_cnt>
|
1243
|
+
</graph_element>
|
1244
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:name=http-8443,type=ThreadPool;currentThreadCount;]">
|
1245
|
+
<color>000099</color>
|
1246
|
+
<yaxisside>1</yaxisside>
|
1247
|
+
<calc_fnc>2</calc_fnc>
|
1248
|
+
<periods_cnt>5</periods_cnt>
|
1249
|
+
</graph_element>
|
1250
|
+
</graph_elements>
|
1251
|
+
</graph><graph name="sessions /" width="900" height="200">
|
1252
|
+
<show_work_period>1</show_work_period>
|
1253
|
+
<show_triggers>1</show_triggers>
|
1254
|
+
<yaxismin>0.0000</yaxismin>
|
1255
|
+
<yaxismax>100.0000</yaxismax>
|
1256
|
+
<graph_elements>
|
1257
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:type=Manager,path=/,host=localhost;rejectedSessions;]">
|
1258
|
+
<color>990000</color>
|
1259
|
+
<yaxisside>1</yaxisside>
|
1260
|
+
<calc_fnc>2</calc_fnc>
|
1261
|
+
<periods_cnt>5</periods_cnt>
|
1262
|
+
</graph_element>
|
1263
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:type=Manager,path=/,host=localhost;activeSessions;]">
|
1264
|
+
<color>009900</color>
|
1265
|
+
<yaxisside>1</yaxisside>
|
1266
|
+
<calc_fnc>2</calc_fnc>
|
1267
|
+
<periods_cnt>5</periods_cnt>
|
1268
|
+
</graph_element>
|
1269
|
+
<graph_element item="{HOSTNAME}:jmx[Catalina:type=Manager,path=/,host=localhost;maxActiveSessions;]">
|
1270
|
+
<color>000099</color>
|
1271
|
+
<yaxisside>1</yaxisside>
|
1272
|
+
<calc_fnc>2</calc_fnc>
|
1273
|
+
<periods_cnt>5</periods_cnt>
|
1274
|
+
</graph_element>
|
1275
|
+
</graph_elements>
|
1276
|
+
</graph></graphs>
|
1277
|
+
</host>
|
1278
|
+
</hosts>
|
1279
|
+
</zabbix_export>
|