通过 JMX 获取 JVM 监控数据

本文 提供了一个 Java 工具类,用来获取诸如以下的 JVM 数据:

  • 类加载信息
  • 编译信息
  • 操作系统信息
    • 系统名称、架构、版本、负载 …
    • 物理内存信息
    • CPU 信息
  • 运行时信息
    • 进程ID
    • JVM 版本信息
    • 启动参数
    • 系统属性
    • 启动时间、运行时常
  • 线程信息
    • 线程状态
    • 死锁检查
  • JVM 内存信息
    • 内存使用情况
    • 各个区域内存使用情况
    • 垃圾收集器信息

PlatformManagedObject 的 继承结构

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
PlatformManagedObject (java.lang.management)
CompilationMXBean (java.lang.management)
CompilationImpl (sun.management)
MemoryMXBean (java.lang.management)
MemoryImpl (sun.management)
RuntimeMXBean (java.lang.management)
RuntimeImpl (sun.management)
BufferPoolMXBean (java.lang.management)
ManagementFactoryHelper (sun.management)
MemoryPoolMXBean (java.lang.management)
MemoryPoolImpl (sun.management)
PlatformLoggingMXBean (java.lang.management)
LoggingMXBean in ManagementFactoryHelper (sun.management)
PlatformLoggingImpl in ManagementFactoryHelper (sun.management)
HotSpotDiagnosticMXBean (com.sun.management)
HotSpotDiagnostic (sun.management)
SystemResourcePressureMXBean (jdk.management.cmm)
SystemResourcePressureImpl (jdk.internal.cmm)
MemoryManagerMXBean (java.lang.management)
GarbageCollectorMXBean (java.lang.management)
GarbageCollectorMXBean (com.sun.management)
GarbageCollectorImpl (sun.management)
MemoryManagerImpl (sun.management)
GarbageCollectorImpl (sun.management)
ThreadMXBean (java.lang.management)
ThreadMXBean (com.sun.management)
ThreadImpl (sun.management)
OperatingSystemMXBean (java.lang.management)
BaseOperatingSystemImpl (sun.management)
OperatingSystemImpl (sun.management)
OperatingSystemMXBean (com.sun.management)
UnixOperatingSystemMXBean (com.sun.management)
OperatingSystemImpl (sun.management)
ClassLoadingMXBean (java.lang.management)
ClassLoadingImpl (sun.management)

工具类

通过 PlatformManagedObject 的继承结构可以看出, JDK 提供了非常强大的扩展管理和监控功能。

以下主要对进 JDK 提供的主要接口进行再次封装,并不完整,如需更精细的获取 JVM 数据,可参考 PlatformManagedObject 的体系结构,寻找合适的API。

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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
package xyz.kail.blog;

import java.lang.management.*;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;

/**
* @author kail
*/
public class JmxMetricsUtil {

/**
* 单位转换
*/
public static class Unit {

public static final double KB = 1024D;
public static final double MB = 1024D * KB;
public static final double GB = 1024D * MB;

public static double kb(double b) {
return b / KB;
}

public static double mb(double b) {
return b / MB;
}

public static double gb(double b) {
return b / GB;
}
}

/**
* 类加载信息
*/
public static class ClassLoading {

private static final ClassLoadingMXBean classLoading = ManagementFactory.getClassLoadingMXBean();

/**
* 已加载类总数
*/
public static long getTotalLoadedClassCount() {
return classLoading.getTotalLoadedClassCount();
}


/**
* 已加载当前类
*/
public static int getLoadedClassCount() {
return classLoading.getLoadedClassCount();
}


/**
* 已卸载类总数
*/
public static long getUnloadedClassCount() {
return classLoading.getUnloadedClassCount();
}

}

/**
* 编译信息
*/
public static class Compilation {

private static final CompilationMXBean compilation = ManagementFactory.getCompilationMXBean();

/**
* JIT编译器名称
*/
public static String getName() {
return compilation.getName();
}

/**
* 判断jvm是否支持编译时间的监控
*/
public static boolean isCompilationTimeMonitoringSupported() {
return compilation.isCompilationTimeMonitoringSupported();
}

/**
* 总编译时间
*/
public static long getTotalCompilationTime() {
if (!isCompilationTimeMonitoringSupported()) {
return -1L;
}
return compilation.getTotalCompilationTime();
}

}

/**
* 操作系统信息
*/
public static class OperatingSystem {

private static final OperatingSystemMXBean system = ManagementFactory.getOperatingSystemMXBean();

private static final boolean isOperatingSystemImpl;

static {
isOperatingSystemImpl = "sun.management.OperatingSystemImpl".equals(system.getClass().getName());
}

/**
* 系统名称
* <p>
* 相当于 System.getProperty("os.name")
*/
public static String getName() {
return system.getName();
}

/**
* 系统版本
* <p>
* 相当于System.getProperty("os.version")
*/
public static String getVersion() {
return system.getVersion();
}

/**
* 操作系统的架构
* <p>
* 相当于System.getProperty("os.arch")
*/
public static String getArch() {
return system.getArch();
}

/**
* 可用的内核数
* <p>
* 相当于 Runtime.availableProcessors()
*/
public static int getAvailableProcessors() {
return system.getAvailableProcessors();
}

/**
* 获取系统负载平均值
*
* @since 1.6
*/
public static double getSystemLoadAverage() {
return system.getSystemLoadAverage();
}

/**
* public native long getCommittedVirtualMemorySize();
* <p>
* public native long getFreeSwapSpaceSize();
* <p>
* public native long getFreePhysicalMemorySize();
* <p>
* public native long getMaxFileDescriptorCount();
* <p>
* public native long getOpenFileDescriptorCount();
* <p>
* public native long getProcessCpuTime();
* <p>
* public native double getProcessCpuLoad();
* <p>
* public native double getSystemCpuLoad();
* <p>
* public native long getTotalPhysicalMemorySize();
* <p>
* public native long getTotalSwapSpaceSize();
*/
public static class Impl {


public static boolean isOperatingSystemImpl() {
return isOperatingSystemImpl;
}

private static long getLong(String methodName) {
try {
final Method method = OperatingSystem.system.getClass().getMethod(methodName, (Class<?>[]) null);
method.setAccessible(true);
return (long) method.invoke(OperatingSystem.system, (Object[]) null);
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
// Do Noting
}
return -1L;
}

private static double getDouble(String methodName) {
try {
final Method method = OperatingSystem.system.getClass().getMethod(methodName, (Class<?>[]) null);
method.setAccessible(true);
return (double) method.invoke(OperatingSystem.system, (Object[]) null);
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
// Do Noting
}
return -1D;
}

public static long getCommittedVirtualMemorySize() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getCommittedVirtualMemorySize");
}

public static long getTotalSwapSpaceSize() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getTotalSwapSpaceSize");
}

public static long getFreeSwapSpaceSize() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getFreeSwapSpaceSize");
}

public static long getProcessCpuTime() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getProcessCpuTime");
}

public static long getFreePhysicalMemorySize() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getFreePhysicalMemorySize");
}

public static long getTotalPhysicalMemorySize() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getTotalPhysicalMemorySize");
}

public static long getOpenFileDescriptorCount() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getOpenFileDescriptorCount");
}

public static long getMaxFileDescriptorCount() {
if (!isOperatingSystemImpl()) {
return -1L;
}
return getLong("getMaxFileDescriptorCount");
}

public static double getSystemCpuLoad() {
if (!isOperatingSystemImpl()) {
return -1D;
}
return getDouble("getSystemCpuLoad");
}

public static double getProcessCpuLoad() {
if (!isOperatingSystemImpl()) {
return -1D;
}
return getDouble("getProcessCpuLoad");
}

}
}

/**
* 运行时信息
*/
public static class Runtime {

private static final RuntimeMXBean runtime = ManagementFactory.getRuntimeMXBean();

/**
* pid@主机名 = vmId
*/
public static String getName() {
return runtime.getName();
}

/**
* 进程ID
*/
public static String getPid() {
return runtime.getName().split("@")[0];
}


/**
* 引导类路径
*/
public static String getBootClassPath() {
return runtime.getBootClassPath();
}

/**
* 库路径
*/
public static String getLibraryPath() {
return runtime.getLibraryPath();
}

/**
* 类路径
*/
public static String getClassPath() {
return runtime.getClassPath();
}

/**
* jvm规范名称
*/
public static String getSpecName() {
return runtime.getSpecName();
}

/**
* jvm规范运营商
*/
public static String getSpecVendor() {
return runtime.getSpecVendor();
}

/**
* jvm规范版本
* <p>
* 1.8
*/
public static String getSpecVersion() {
return runtime.getSpecVersion();
}

/**
* jvm名称
* <p>
* 相当于System.getProperty("java.vm.name")
*/
public static String getVmName() {
return runtime.getVmName();
}

/**
* jvm运营商
* <p>
* 相当于System.getProperty("java.vm.vendor")
*/
public static String getVmVendor() {
return runtime.getVmVendor();
}

/**
* jvm实现版本
* <p>
* 相当于System.getProperty("java.vm.version")
* <p>
* 25.131-b11
*/
public static String getVmVersion() {
return runtime.getVmVersion();
}

public static String getManagementSpecVersion() {
return runtime.getManagementSpecVersion();
}

/**
* jvm启动时间(毫秒)
*/
public static long getStartTime() {
return runtime.getStartTime();
}

/**
* jvm正常运行时间(毫秒)
*/
public static long getUptime() {
return runtime.getUptime();
}

/**
* 获取系统属性
*/
public static Map<String, String> getSystemProperties() {
return runtime.getSystemProperties();
}

/**
* JVM 启动参数
*/
public static List<String> getInputArguments() {
return runtime.getInputArguments();
}


}

/**
* 线程
*/
public static class Thread {

private static final ThreadMXBean thread = ManagementFactory.getThreadMXBean();

/**
* 返回当前活动线程数,包括守护和非守护线程
*/
public static int getThreadCount() {
return thread.getThreadCount();
}

/**
* 峰值活动线程数
*/
public static int getPeakThreadCount() {
return thread.getPeakThreadCount();
}

/**
* JVM 启动以来创建的线程总数
*/
public static long getTotalStartedThreadCount() {
return thread.getTotalStartedThreadCount();
}

/**
* 守护线程数
*/
public static long getDaemonThreadCount() {
return thread.getDaemonThreadCount();
}

/**
* 获取所有的线程信息
*/
public static Map<Long, ThreadInfo> getAllThreadInfo() {
Map<Long, ThreadInfo> allThreadInfo = new HashMap<>();
long[] threadIds = thread.getAllThreadIds();
for (long threadId : threadIds) {
ThreadInfo threadInfo = thread.getThreadInfo(threadId);
allThreadInfo.put(threadId, threadInfo);
}
return allThreadInfo;
}

/**
* 所有的死锁线程
*/
public static Map<Long, ThreadInfo> getAllDeadlockedThreadInfo() {
Map<Long, ThreadInfo> allDeadlockedThreadInfo = new HashMap<>();
long[] threadIds = thread.findDeadlockedThreads();
for (long threadId : threadIds) {
ThreadInfo threadInfo = thread.getThreadInfo(threadId);
allDeadlockedThreadInfo.put(threadId, threadInfo);
}
return allDeadlockedThreadInfo;
}

}


/**
* MemoryManager
*/
public static class Memory {

/**
* 内存信息
*/
private static final MemoryMXBean memory = ManagementFactory.getMemoryMXBean();

/**
* 内存区域
*/
private static final Map<String, MemoryPoolMXBean> pools = new HashMap<>();

static {
List<MemoryPoolMXBean> memoryPool = ManagementFactory.getMemoryPoolMXBeans();
for (MemoryPoolMXBean pool : memoryPool) {
pools.put(pool.getName(), pool);
}
}

/**
* 垃圾收集器
*/
private static final Map<String, GarbageCollectorMXBean> collectors = new HashMap<>();

static {
List<GarbageCollectorMXBean> garbageCollectors = ManagementFactory.getGarbageCollectorMXBeans();
for (GarbageCollectorMXBean garbageCollector : garbageCollectors) {
collectors.put(garbageCollector.getName(), garbageCollector);
}
}

/**
* 内存区域
*/
public enum PoolEnum {


/**
* -XX:+UseSerialGC
*/
EDEN_SPACE("Eden Space"),
/**
* -XX:+UseSerialGC
*/
SURVIVOR_SPACE("Survivor Space"),
/**
* -XX:+UseSerialGC
*/
TENURED_GEN("Tenured Gen"),

/**
*
*/
PS_EDEN_SPACE("PS Eden Space"),
/**
*
*/
PS_SURVIVOR_SPACE("PS Survivor Space"),
/**
*
*/
PS_OLD_GEN("PS Old Gen"),


/**
* -XX:+UseConcMarkSweepGC
*/
PAR_EDEN_SPACE("Par Eden Space"),
/**
* -XX:+UseConcMarkSweepGC
*/
PAR_SURVIVOR_SPACE("Par Survivor Space"),
/**
* -XX:+UseConcMarkSweepGC
*/
CMS_OLD_GEN("CMS Old Gen"),


/**
* -XX:+UseG1GC
*/
G1_EDEN_SPACE("G1 Eden Space"),
/**
* -XX:+UseG1GC
*/
G1_SURVIVOR_SPACE("G1 Survivor Space"),
/**
* -XX:+UseG1GC
*/
G1_OLD_GEN("G1 Old Gen"),


/**
*
*/
META_SPACE("Metaspace"),
/**
*
*/
CODE_CACHE("Code Cache"),
/**
*
*/
COMPRESSED_CLASS_SPACE("Compressed Class Space"),
;

private String poolName;

PoolEnum(String poolName) {
this.poolName = poolName;
}

public String getPoolName() {
return poolName;
}

public static PoolEnum enumOf(String name) {
PoolEnum[] values = PoolEnum.values();
for (PoolEnum value : values) {
if (Objects.equals(value.poolName, name)) {
return value;
}
}
return null;
}
}

/**
* 垃圾收集名称
*/
public enum CollectorEnum {

/**
* -XX:+UseSerialGC
*/
COPY("Copy"),

/**
* -XX:+UseSerialGC
*/
MARK_SWEEP_COMPACT("MarkSweepCompact"),

/**
* -XX:+UseParallelOldGC
* -XX:+UseParallelGC
*/
PS_SCAVENGE("PS Scavenge"),

/**
* -XX:+UseParallelOldGC
* -XX:+UseParallelGC
*/
PS_MARKSWEEP("PS MarkSweep"),

/**
* -XX:+UseConcMarkSweepGC
* -XX:+UseParNewGC
*/
Par_New("ParNew"),

/**
* -XX:+UseConcMarkSweepGC
* -XX:+UseParNewGC
*/
Concurrent_Mark_Sweep("ConcurrentMarkSweep"),

/**
* -XX:+UseG1GC
*/
G1_Young("G1 Young Generation"),

/**
* -XX:+UseG1GC
*/
G1_Old("G1 Old Generation"),;

private String collectorName;

CollectorEnum(String collectorName) {
this.collectorName = collectorName;
}

public String getCollectorName() {
return collectorName;
}

public static CollectorEnum enumOf(String name) {
CollectorEnum[] values = CollectorEnum.values();
for (CollectorEnum value : values) {
if (Objects.equals(value.collectorName, name)) {
return value;
}
}
return null;
}


}


/**
* 堆内内存使用量
* <pre>
* +----------------------------------------------+
* +//////////////// | +
* +//////////////// | +
* +----------------------------------------------+
*
* |--------|
* init
* |---------------|
* used
* |---------------------------|
* committed
* |----------------------------------------------|
* max
* </pre>
*/
public static MemoryUsage getHeapMemoryUsage() {
return memory.getHeapMemoryUsage();
}

/**
* 堆外内存使用量
* <pre>
* +----------------------------------------------+
* +//////////////// | +
* +//////////////// | +
* +----------------------------------------------+
*
* |--------|
* init
* |---------------|
* used
* |---------------------------|
* committed
* |----------------------------------------------|
* max
* </pre>
*/
public static MemoryUsage getNonHeapMemoryUsage() {
return memory.getNonHeapMemoryUsage();
}

/**
* 当前 JVM 的内存区域名称
*/
public static Set<String> getPoolNames() {
return pools.keySet();
}

/**
* 对应的内存区域是否存在
*/
public static boolean existMemoryPool(PoolEnum name) {
return pools.containsKey(name.getPoolName());
}

public static MemoryUsage getPoolUsage(PoolEnum name) {
if (!existMemoryPool(name)) {
return nullUsage(null);
}
return nullUsage(pools.get(name.getPoolName()).getUsage());
}

public static MemoryType getPoolType(PoolEnum name) {
if (!existMemoryPool(name)) {
return null;
}
return pools.get(name.getPoolName()).getType();
}

/**
* 返回 JVM 最近在此内存池中回收未使用的对象 所花费的内存使用量
*/
public static MemoryUsage getPoolCollectionUsage(PoolEnum name) {
if (!existMemoryPool(name)) {
return nullUsage(null);
}
return nullUsage(pools.get(name.getPoolName()).getCollectionUsage());
}

/**
* 峰值内存使用量
*/
public static MemoryUsage getPoolPeakUsage(PoolEnum name) {
if (!existMemoryPool(name)) {
return nullUsage(null);
}
return nullUsage(pools.get(name.getPoolName()).getPeakUsage());
}


/**
* 以字节为单位返回此内存池的使用阈值
*/
public static long getPoolUsageThreshold(PoolEnum name) {
if (!existMemoryPool(name)) {
return -1;
}
return pools.get(name.getPoolName()).getUsageThreshold();
}

public static long getPoolUsageThresholdCount(PoolEnum name) {
if (!existMemoryPool(name)) {
return -1;
}
return pools.get(name.getPoolName()).getUsageThresholdCount();
}

public static long getPoolCollectionUsageThreshold(PoolEnum name) {
if (!existMemoryPool(name)) {
return -1;
}
return pools.get(name.getPoolName()).getCollectionUsageThreshold();
}

public static long getPoolCollectionUsageThresholdCount(PoolEnum name) {
if (!existMemoryPool(name)) {
return -1;
}
return pools.get(name.getPoolName()).getCollectionUsageThresholdCount();
}

private static MemoryUsage nullUsage(MemoryUsage usage) {
return null == usage ? new MemoryUsage(-1L, 0L, 0L, -1L) : usage;
}

/**
* 当前 JVM 的垃圾收集器
*/
public static Set<String> getCollectorNames() {
return collectors.keySet();
}

/**
* 是否存在对应的垃圾收集器
*/
public static boolean existCollector(CollectorEnum collector) {
return collectors.containsKey(collector.getCollectorName());
}

/**
* 垃圾收集器次数
*/
public static long getGarbageCollectionCount(CollectorEnum collector) {
if (!existCollector(collector)) {
return -1;
}
return collectors.get(collector.getCollectorName()).getCollectionCount();
}

/**
* 垃圾回收期总耗时
*/
public static long getGarbageCollectionTime(CollectorEnum collector) {
if (!existCollector(collector)) {
return -1;
}
return collectors.get(collector.getCollectorName()).getCollectionTime();
}

/**
* 垃圾回收器 可回收的区域名称
*/
public static List<String> getGarbageCollectionMemoryPoolNames(CollectorEnum collector) {
if (!existCollector(collector)) {
return new ArrayList<>();
}
String[] memoryPoolNames = collectors.get(collector.getCollectorName()).getMemoryPoolNames();
return new ArrayList<>(Arrays.asList(memoryPoolNames));
}

}

}