JmxMon.java
8.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package se.lil.jm;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.HashMap;
import java.util.Set;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import javax.management.JMX;
import javax.management.MBeanAttributeInfo;
import javax.management.MBeanInfo;
import javax.management.MBeanServerConnection;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.management.openmbean.CompositeData;
import javax.management.openmbean.TabularData;
public class JmxMon {
String conUser = "system";
String conPass = "passw0rd";
String domainName = null;
String serverName = null;
String runtimeName = null;
JMXServiceURL url = null;
JMXConnector jmxc = null;
MBeanServerConnection mbsc = null;
Thread myThread = null;
ClassLoader myCL = null;
int getDataCalls = 0;
int getDataSucess = 0;
HashMap<String, LongDelta> longDeltaMap = new HashMap<String, LongDelta>();
HashMap<String, DoubleDelta> doubleDeltaMap = new HashMap<String, DoubleDelta>();
private void updateLongDelta (Long timestamp, String name, Long value) {
LongDelta ld = longDeltaMap.get(name);
if(ld == null) {
ld = new LongDelta();
longDeltaMap.put(name, ld);
}
ld.update(timestamp, value);
}
private LongDelta getAttributeLongDelta(String name, String attribute) {
return longDeltaMap.get(name + ":" + attribute);
}
private void updateDoubleDelta (Long timestamp, String name, Double value) {
DoubleDelta dd = doubleDeltaMap.get(name);
if(dd == null) {
dd = new DoubleDelta();
doubleDeltaMap.put(name, dd);
}
dd.update(timestamp, value);
}
private DoubleDelta getAttributeDoubleDelta(String name, String attribute) {
return doubleDeltaMap.get(name + ":" + attribute);
}
private Object getAttributeValue(String name, String attribute) {
Object ro = null;
if(mbsc != null) {
try {
ro = mbsc.getAttribute(new ObjectName(name), attribute);
} catch (Exception e) {
ro = e;
}
}
return ro;
}
private void fetchUpdateAttribute(String name, String attribute) {
String fullName = name + ":" + attribute;
Object obj = getAttributeValue(name, attribute);
Long ts = (Long)getAttributeValue("java.lang:type=Runtime", "Uptime");
if(obj != null) {
if(obj.getClass().equals(java.lang.Long.class)) {
updateLongDelta(ts, fullName, (Long)obj);
}
if(obj.getClass().equals(java.lang.Integer.class)) {
Integer i = (Integer)obj;
updateLongDelta(ts, fullName, i.longValue());
}
if(obj.getClass().equals(java.lang.Double.class)) {
updateDoubleDelta(ts, fullName, (Double)obj);
}
if(obj.getClass().equals(java.lang.Float.class)) {
Float f = (Float)obj;
updateDoubleDelta(ts, fullName, f.doubleValue());
}
}
}
public int getDataCalled() {
return getDataCalls;
}
public int getDataSucceeded() {
return getDataSucess;
}
public int getDataFailed() {
return getDataCalls - getDataSucess;
}
public String getConString() {
if(this.url != null) return this.url.toString();
else return null;
}
public String getServerName() {
return serverName;
}
public String getDomainName() {
return domainName;
}
public String getRuntimeName() {
return runtimeName;
}
public void open() throws IOException {
if(url != null) {
jmxc = JMXConnectorFactory.connect(url);
mbsc = jmxc.getMBeanServerConnection();
domainName = mbsc.getDefaultDomain();
Object obj = getAttributeValue("java.lang:type=Runtime", "Name");
if(obj.getClass().equals(java.lang.String.class)) {
runtimeName = (String)obj;
}
obj = getAttributeValue("java.lang:type=Runtime", "SystemProperties");
TabularData td = (TabularData)obj;
for (Object o : td.values()) {
CompositeData d = (CompositeData)o;
if(d.get("key").toString().equals("weblogic.Name")) serverName = d.get("value").toString();
}
}
}
public void open(String serviceURL) throws IOException, MalformedURLException {
url = new JMXServiceURL(serviceURL);
open();
}
public void close() throws IOException {
if(jmxc != null) jmxc.close();
jmxc = null;
mbsc = null;
}
long lastRTns = 0;
public long getLastRTms() {
return lastRTns / (1000 * 1000);
}
long lastFetchTSns = 0;
public boolean getData(long ageTs) throws Throwable {
if (getAgeTs() > ageTs ) return getData();
else return false;
}
public long getAgeTs() {
if(lastFetchTSns > 0) return (System.nanoTime() - lastFetchTSns)/(1000*1000*1000);
else return 0;
}
Lock lock = new ReentrantLock();
public boolean getData() throws Throwable {
// Start thread safe
// Try to get a lock
boolean haveLock = lock.tryLock();
if( haveLock == false) {
// We could not get the lock, someone else is updating. Wait for it to complete by waiting for a lock, then unlock and return.
try {
lock.lock();
} finally {
lock.unlock();
}
return false;
}
// We do have the lock. Do the rest in a try catch everything and if we catch anything, re throw the catch but always release the lock.
try {
long startTSns = System.nanoTime();
getDataCalls++;
// Do the update of data
numCpus = (Integer)getAttributeValue("java.lang:type=OperatingSystem", "AvailableProcessors");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "ProcessCpuTime");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "OpenFileDescriptorCount");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "MaxFileDescriptorCount");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "TotalSwapSpaceSize");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "FreeSwapSpaceSize");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "FreePhysicalMemorySize");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "TotalPhysicalMemorySize");
fetchUpdateAttribute("java.lang:type=OperatingSystem", "SystemLoadAverage");
fetchUpdateAttribute("java.lang:type=Threading", "ThreadCount");
fetchUpdateAttribute("java.lang:type=ClassLoading", "LoadedClassCount");
// Finished updating data
getDataSucess++;
lastFetchTSns = System.nanoTime();
lastRTns = lastFetchTSns - startTSns;
return true;
} catch (Throwable e) {
throw (e);
} finally {
lock.unlock();
}
// End thread safe
}
//NUM_CPUS
int numCpus = 0;
public long getNumberOfCPUs() {
return numCpus;
}
public long getLoadedClassCount() {
LongDelta ld = getAttributeLongDelta("java.lang:type=ClassLoading", "LoadedClassCount");
return ld.getCurrentValue();
}
public double getCPUPercent() {
LongDelta ld = getAttributeLongDelta("java.lang:type=OperatingSystem", "ProcessCpuTime");
double cpuDeltaMS = (double)ld.getDelta() / (1000D*1000D);
double spentMS = ld.getMilliSeconds();
double perCPUMS = cpuDeltaMS / (double)numCpus;
double cpuPct = (perCPUMS / spentMS) * 100D;
return cpuPct;
}
public double getAverageLoad() {
DoubleDelta dd = getAttributeDoubleDelta("java.lang:type=OperatingSystem", "SystemLoadAverage");
return dd.getCurrentValue();
}
public double getAverageLoadPerCpu() {
DoubleDelta dd = getAttributeDoubleDelta("java.lang:type=OperatingSystem", "SystemLoadAverage");
return dd.getCurrentValue()/(double)numCpus;
}
public long getThreads() {
LongDelta ld = getAttributeLongDelta("java.lang:type=Threading", "ThreadCount");
return ld.getCurrentValue();
}
public double getSystemMemoryPercentUsed() {
LongDelta ldf = getAttributeLongDelta("java.lang:type=OperatingSystem", "FreePhysicalMemorySize");
LongDelta ldt = getAttributeLongDelta("java.lang:type=OperatingSystem", "TotalPhysicalMemorySize");
double free = ldf.getCurrentValue();
double total = ldt.getCurrentValue();
return ((total - free)/(total)) * 100D;
}
public double getSystemSwapPercentUsed() {
LongDelta ldf = getAttributeLongDelta("java.lang:type=OperatingSystem", "FreeSwapSpaceSize");
LongDelta ldt = getAttributeLongDelta("java.lang:type=OperatingSystem", "TotalSwapSpaceSize");
double free = ldf.getCurrentValue();
double total = ldt.getCurrentValue();
return ((total - free)/(total)) * 100D;
}
public double getSystemFileDescriptorsPercentUsed() {
LongDelta ldo = getAttributeLongDelta("java.lang:type=OperatingSystem", "OpenFileDescriptorCount");
LongDelta ldm = getAttributeLongDelta("java.lang:type=OperatingSystem", "MaxFileDescriptorCount");
double open = ldo.getCurrentValue();
double max = ldm.getCurrentValue();
return (open/max) * 100D;
}
public JmxMon() {
}
public JmxMon(String serviceURL) throws MalformedURLException {
this.url = new JMXServiceURL(serviceURL);
}
}