Debezium系列之:JVM參數詳解和Debezium集群JVM監控看板制作
- 一、JVM參數詳解
- 1.jvm_memory_bytes_used
- 2.jvm_memory_bytes_committed
- 3.jvm_memory_bytes_max
- 4.jvm_memory_bytes_init
- 5.jvm_memory_pool_bytes_used
- 6.jvm_memory_pool_bytes_committed
- 7.jvm_memory_pool_bytes_max
- 8.jvm_memory_pool_bytes_init
- 9.jvm_memory_pool_collection_used_bytes
- 10.jvm_memory_pool_collection_committed_bytes
- 11.jvm_memory_pool_collection_max_bytes
- 12.jvm_memory_pool_collection_init_bytes
- 13.jvm_memory_pool_allocated_bytes_total
- 14.jvm_threads_current
- 15.jvm_threads_daemon
- 16.jvm_threads_peak
- 17.jvm_threads_started_total
- 17.jvm_threads_deadlocked
- 18.jvm_threads_deadlocked_monitor
- 19.jvm_threads_state
- 20.jmx_exporter_build_info
- 21.jmx_config_reload_failure_total
- 22.jvm_buffer_pool_used_bytes
- 23.jvm_buffer_pool_capacity_bytes
- 24.jvm_buffer_pool_used_buffers
- 35.jvm_classes_currently_loaded
- 36.jvm_classes_loaded_total
- 37.jvm_classes_unloaded_total
- 38.jmx_config_reload_success_total
- 39.jvm_info
- 40.jvm_gc_collection_seconds_count
- 41.process_cpu_seconds_total
- 42.process_start_time_seconds
- 43.process_open_fds
- 44.process_max_fds
- 45.process_virtual_memory_bytes
- 46.process_resident_memory_bytes
- 二、JVM監控看板
一、JVM參數詳解
1.jvm_memory_bytes_used
jvm_memory_bytes_used{area=“heap”,} 2.417855328E9
jvm_memory_bytes_used{area=“nonheap”,} 1.34056616E8
- 這是一些監控指標的值,用于衡量Java虛擬機(JVM)內存的使用情況。
jvm_memory_bytes_used{area="heap"}
表示JVM堆內存的使用量。堆內存是JVM分配給Java應用程序的主要內存區域,用于存儲對象實例和數組。這個值為2.417855328E9,表示使用了約2.42GB的堆內存。jvm_memory_bytes_used{area="nonheap"}
表示JVM非堆內存的使用量。非堆內存是JVM中用于存儲類信息、方法區等非對象數據的內存區域。這個值為1.34056616E8,表示使用了約1.3GB的非堆內存。
2.jvm_memory_bytes_committed
jvm_memory_bytes_committed{area=“heap”,} 3.4359738368E10
jvm_memory_bytes_committed{area=“nonheap”,} 1.48307968E8
- 這些是用于監控Java虛擬機(JVM)內存的指標,衡量了已經分配給JVM的內存量。
jvm_memory_bytes_committed{area="