Spring Boot指标的描述在哪里可以找到?

3
我们有一个使用Micrometer.io和InfluxDB来收集指标并使用Grafana进行显示的Spring Boot(1.5.3)应用程序。
当我查看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

一些Spring Boot文档并没有提供详细信息,Micrometer文档也是如此。
有人能指引我到哪里可以找到这些度量标准的详细解释吗?
1个回答

0

你能帮我找到process_cpu_usage或system_cpu_usage的单位吗?我对这两个有点困惑。 - undefined
谢谢 @DanielM,这真的很有帮助。我到处找了,但描述都不清楚。 - undefined

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接