我们有一个Spring Boot(1.5.3)应用程序,该应用程序使用Micrometer.io和InfluxDB收集指标,并使用Grafana来显示它们。

查看InfluxDB记录时,我可以看到它具有以下指标的值:

dataSource_connections_active
dataSource_connections_max
dataSource_connections_min
jvm_buffer_count
jvm_buffer_memory_used
jvm_buffer_total_capacity
jvm_classes_loaded
jvm_classes_unloaded
jvm_gc_live_data_size
jvm_gc_max_data_size
jvm_gc_memory_allocated
jvm_gc_memory_promoted
jvm_gc_pause
jvm_memory_committed
jvm_memory_max
jvm_memory_used
jvm_threads_daemon
jvm_threads_live
jvm_threads_peak
jvm_threads_states
logback_events
process_cpu_usage
process_files_max
process_files_open
process_start_time
process_uptime
request_duration
system_cpu_count
system_cpu_usage
system_load_average_1m
tomcat_global_error
tomcat_global_received
tomcat_global_request
tomcat_global_request_max
tomcat_global_sent
tomcat_sessions_active_current
tomcat_sessions_active_max
tomcat_sessions_alive_max
tomcat_sessions_created
tomcat_sessions_expired
tomcat_sessions_rejected
tomcat_threads_busy
tomcat_threads_config_max
tomcat_threads_current


我不确定这些指标是Sprint Boot指标还是包含一些Micrometer魔术,但是无论哪种情况,我都无法找到这些指标的详细说明,尤其是与内存和GC相关的指标。

jvm_gc_live_data_size
jvm_gc_max_data_size
jvm_gc_memory_allocated
jvm_gc_memory_promoted
jvm_gc_pause
jvm_memory_committed
jvm_memory_max
jvm_memory_used


不知何故,Sprint Boot文档没有提供任何细节,Micrometer文档也没有。

谁能指出我在哪里可以找到这些指标的详细说明?

最佳答案

您可以在千分尺源代码https://github.com/micrometer-metrics/micrometer中找到这些度量的定义,以及它们的名称,描述和基本单位。

例如,在此处定义了jvm_memory_max:https://github.com/micrometer-metrics/micrometer/blob/48eb59d3b5cb5e4df7f35c0dfa323241f3cf2484/micrometer-core/src/main/java/io/micrometer/core/instrument/binder/jvm/JvmMemoryMetrics.java#L97

因此,jvm_memory_max为“可用于内存管理的最大内存量(以字节为单位)”。

08-28 21:21