JmxMon.java
4.69 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
package se.lil.jm;
import java.io.IOException;
import java.net.MalformedURLException;
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;
public class JmxMon {
String conUser = "system";
String conPass = "passw0rd";
String domain = null;
JMXServiceURL url = null;
JMXConnector jmxc = null;
MBeanServerConnection mbsc = null;
Collector col = new Collector();
int getDataCalls = 0;
int getDataSucess = 0;
public void dumpAllMBeans() {
dumpAllMBeans(null);
}
public void dumpAllMBeans(String query) {
if(mbsc != null) {
try {
Set<ObjectName> res = mbsc.queryNames(query != null ? new ObjectName(query) : ObjectName.WILDCARD, null);
for (ObjectName name : res) {
System.out.println(name.getCanonicalName());
MBeanInfo inf = mbsc.getMBeanInfo(name);
MBeanAttributeInfo[] attribs = inf.getAttributes();
for (MBeanAttributeInfo ainf : attribs) {
System.out.println("(" + ainf.getType() + ") " + ainf.getName());
}
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
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 void open() throws IOException {
if(url != null) {
jmxc = JMXConnectorFactory.connect(url);
mbsc = jmxc.getMBeanServerConnection();
domain = mbsc.getDefaultDomain();
}
}
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
Object mb;
mb = mbsc.getAttribute(new ObjectName("java.lang:type=OperatingSystem"), "ProcessCpuTime");
System.out.println("Class: " + mb.getClass());
System.out.println("toString: " + mb.toString());
mb = mbsc.getAttribute(new ObjectName("java.lang:type=OperatingSystem"), "AvailableProcessors");
System.out.println("Class: " + mb.getClass());
System.out.println("toString: " + mb.toString());
mb = mbsc.getAttribute(new ObjectName("java.lang:type=OperatingSystem"), "OpenFileDescriptorCount");
System.out.println("Class: " + mb.getClass());
System.out.println("toString: " + mb.toString());
mb = mbsc.getAttribute(new ObjectName("java.lang:type=Runtime"), "Uptime");
System.out.println("Class: " + mb.getClass());
System.out.println("toString: " + mb.toString());
// 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 JmxMon() {
}
public JmxMon(String serviceURL) throws MalformedURLException {
this.url = new JMXServiceURL(serviceURL);
}
}