|
| 1 | +# HELP go_gc_duration_seconds A summary of the wall-time pause (stop-the-world) duration in garbage collection cycles. |
| 2 | +# TYPE go_gc_duration_seconds summary |
| 3 | +# HELP go_gc_gogc_percent Heap size target percentage configured by the user, otherwise 100. This value is set by the GOGC environment variable, and the runtime/debug.SetGCPercent function. Sourced from /gc/gogc:percent |
| 4 | +# TYPE go_gc_gogc_percent gauge |
| 5 | +# HELP go_gc_gomemlimit_bytes Go runtime memory limit configured by the user, otherwise math.MaxInt64. This value is set by the GOMEMLIMIT environment variable, and the runtime/debug.SetMemoryLimit function. Sourced from /gc/gomemlimit:bytes |
| 6 | +# TYPE go_gc_gomemlimit_bytes gauge |
| 7 | +# HELP go_goroutines Number of goroutines that currently exist. |
| 8 | +# TYPE go_goroutines gauge |
| 9 | +# HELP go_info Information about the Go environment. |
| 10 | +# TYPE go_info gauge |
| 11 | +# HELP go_memstats_alloc_bytes Number of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes. |
| 12 | +# TYPE go_memstats_alloc_bytes gauge |
| 13 | +# HELP go_memstats_alloc_bytes_total Total number of bytes allocated in heap until now, even if released already. Equals to /gc/heap/allocs:bytes. |
| 14 | +# TYPE go_memstats_alloc_bytes_total counter |
| 15 | +# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes. |
| 16 | +# TYPE go_memstats_buck_hash_sys_bytes gauge |
| 17 | +# HELP go_memstats_frees_total Total number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects. |
| 18 | +# TYPE go_memstats_frees_total counter |
| 19 | +# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes. |
| 20 | +# TYPE go_memstats_gc_sys_bytes gauge |
| 21 | +# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and currently in use, same as go_memstats_alloc_bytes. Equals to /memory/classes/heap/objects:bytes. |
| 22 | +# TYPE go_memstats_heap_alloc_bytes gauge |
| 23 | +# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used. Equals to /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes. |
| 24 | +# TYPE go_memstats_heap_idle_bytes gauge |
| 25 | +# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytes |
| 26 | +# TYPE go_memstats_heap_inuse_bytes gauge |
| 27 | +# HELP go_memstats_heap_objects Number of currently allocated objects. Equals to /gc/heap/objects:objects. |
| 28 | +# TYPE go_memstats_heap_objects gauge |
| 29 | +# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes. |
| 30 | +# TYPE go_memstats_heap_released_bytes gauge |
| 31 | +# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytes + /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes. |
| 32 | +# TYPE go_memstats_heap_sys_bytes gauge |
| 33 | +# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection. |
| 34 | +# TYPE go_memstats_last_gc_time_seconds gauge |
| 35 | +# HELP go_memstats_mallocs_total Total number of heap objects allocated, both live and gc-ed. Semantically a counter version for go_memstats_heap_objects gauge. Equals to /gc/heap/allocs:objects + /gc/heap/tiny/allocs:objects. |
| 36 | +# TYPE go_memstats_mallocs_total counter |
| 37 | +# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes. |
| 38 | +# TYPE go_memstats_mcache_inuse_bytes gauge |
| 39 | +# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system. Equals to /memory/classes/metadata/mcache/inuse:bytes + /memory/classes/metadata/mcache/free:bytes. |
| 40 | +# TYPE go_memstats_mcache_sys_bytes gauge |
| 41 | +# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes. |
| 42 | +# TYPE go_memstats_mspan_inuse_bytes gauge |
| 43 | +# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system. Equals to /memory/classes/metadata/mspan/inuse:bytes + /memory/classes/metadata/mspan/free:bytes. |
| 44 | +# TYPE go_memstats_mspan_sys_bytes gauge |
| 45 | +# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes. |
| 46 | +# TYPE go_memstats_next_gc_bytes gauge |
| 47 | +# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations. Equals to /memory/classes/other:bytes. |
| 48 | +# TYPE go_memstats_other_sys_bytes gauge |
| 49 | +# HELP go_memstats_stack_inuse_bytes Number of bytes obtained from system for stack allocator in non-CGO environments. Equals to /memory/classes/heap/stacks:bytes. |
| 50 | +# TYPE go_memstats_stack_inuse_bytes gauge |
| 51 | +# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator. Equals to /memory/classes/heap/stacks:bytes + /memory/classes/os-stacks:bytes. |
| 52 | +# TYPE go_memstats_stack_sys_bytes gauge |
| 53 | +# HELP go_memstats_sys_bytes Number of bytes obtained from system. Equals to /memory/classes/total:byte. |
| 54 | +# TYPE go_memstats_sys_bytes gauge |
| 55 | +# HELP go_sched_gomaxprocs_threads The current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. Sourced from /sched/gomaxprocs:threads |
| 56 | +# TYPE go_sched_gomaxprocs_threads gauge |
| 57 | +# HELP go_threads Number of OS threads created. |
| 58 | +# TYPE go_threads gauge |
| 59 | +# HELP node_boot_time_seconds Unix time of last boot, including microseconds. |
| 60 | +# TYPE node_boot_time_seconds gauge |
| 61 | +node_boot_time_seconds 1.732329528488754e+09 |
| 62 | +# HELP node_exec_software_interrupts_total Software interrupts since system boot. Resets at architecture unsigned integer. |
| 63 | +# TYPE node_exec_software_interrupts_total counter |
| 64 | +node_exec_software_interrupts_total 43 |
| 65 | +# HELP node_exporter_build_info A metric with a constant '1' value labeled by version, revision, branch, goversion from which node_exporter was built, and the goos and goarch for the build. |
| 66 | +# TYPE node_exporter_build_info gauge |
| 67 | +# HELP node_memory_cache_bytes Almost free, backed by swap or files, available for re-allocation |
| 68 | +# TYPE node_memory_cache_bytes gauge |
| 69 | +node_memory_cache_bytes 0 |
| 70 | +# HELP node_memory_size_bytes Total physical memory size |
| 71 | +# TYPE node_memory_size_bytes gauge |
| 72 | +node_memory_size_bytes 6.214455296e+09 |
| 73 | +# HELP node_memory_swap_in_bytes_total Bytes paged in from swap devices |
| 74 | +# TYPE node_memory_swap_in_bytes_total counter |
| 75 | +node_memory_swap_in_bytes_total 0 |
| 76 | +# HELP node_memory_swap_out_bytes_total Bytes paged out to swap devices |
| 77 | +# TYPE node_memory_swap_out_bytes_total counter |
| 78 | +node_memory_swap_out_bytes_total 0 |
| 79 | +# HELP node_memory_swap_size_bytes Total swap memory size |
| 80 | +# TYPE node_memory_swap_size_bytes gauge |
| 81 | +node_memory_swap_size_bytes 1.073741824e+09 |
| 82 | +# HELP node_memory_swap_used_bytes Currently allocated swap |
| 83 | +# TYPE node_memory_swap_used_bytes gauge |
| 84 | +node_memory_swap_used_bytes 0 |
| 85 | +# HELP node_memory_user_wired_bytes Locked in memory by user, mlock, etc |
| 86 | +# TYPE node_memory_user_wired_bytes gauge |
| 87 | +node_memory_user_wired_bytes 0 |
| 88 | +# HELP node_netisr_bindthreads netisr threads bound to CPUs |
| 89 | +# TYPE node_netisr_bindthreads gauge |
| 90 | +node_netisr_bindthreads 0 |
| 91 | +# HELP node_netisr_defaultqlimit netisr default queue limit |
| 92 | +# TYPE node_netisr_defaultqlimit gauge |
| 93 | +node_netisr_defaultqlimit 256 |
| 94 | +# HELP node_netisr_maxprot netisr maximum protocols |
| 95 | +# TYPE node_netisr_maxprot gauge |
| 96 | +node_netisr_maxprot 16 |
| 97 | +# HELP node_netisr_maxqlimit netisr maximum queue limit |
| 98 | +# TYPE node_netisr_maxqlimit gauge |
| 99 | +node_netisr_maxqlimit 10240 |
| 100 | +# HELP node_netisr_maxthreads netisr maximum thread count |
| 101 | +# TYPE node_netisr_maxthreads gauge |
| 102 | +node_netisr_maxthreads 1 |
| 103 | +# HELP node_netisr_numthreads netisr current thread count |
| 104 | +# TYPE node_netisr_numthreads gauge |
| 105 | +node_netisr_numthreads 1 |
| 106 | +# HELP node_network_receive_bytes_total Network device statistic receive_bytes. |
| 107 | +# TYPE node_network_receive_bytes_total counter |
| 108 | +# HELP node_network_receive_drop_total Network device statistic receive_drop. |
| 109 | +# TYPE node_network_receive_drop_total counter |
| 110 | +node_network_receive_drop_total{device="em0"} 0 |
| 111 | +node_network_receive_drop_total{device="lo0"} 0 |
| 112 | +# HELP node_network_receive_errs_total Network device statistic receive_errs. |
| 113 | +# TYPE node_network_receive_errs_total counter |
| 114 | +node_network_receive_errs_total{device="em0"} 0 |
| 115 | +node_network_receive_errs_total{device="lo0"} 0 |
| 116 | +# HELP node_network_receive_multicast_total Network device statistic receive_multicast. |
| 117 | +# TYPE node_network_receive_multicast_total counter |
| 118 | +node_network_receive_multicast_total{device="em0"} 3 |
| 119 | +node_network_receive_multicast_total{device="lo0"} 0 |
| 120 | +# HELP node_network_receive_packets_total Network device statistic receive_packets. |
| 121 | +# TYPE node_network_receive_packets_total counter |
| 122 | +# HELP node_network_transmit_bytes_total Network device statistic transmit_bytes. |
| 123 | +# TYPE node_network_transmit_bytes_total counter |
| 124 | +# HELP node_network_transmit_drop_total Network device statistic transmit_drop. |
| 125 | +# TYPE node_network_transmit_drop_total counter |
| 126 | +node_network_transmit_drop_total{device="em0"} 0 |
| 127 | +node_network_transmit_drop_total{device="lo0"} 0 |
| 128 | +# HELP node_network_transmit_errs_total Network device statistic transmit_errs. |
| 129 | +# TYPE node_network_transmit_errs_total counter |
| 130 | +node_network_transmit_errs_total{device="em0"} 0 |
| 131 | +node_network_transmit_errs_total{device="lo0"} 0 |
| 132 | +# HELP node_network_transmit_multicast_total Network device statistic transmit_multicast. |
| 133 | +# TYPE node_network_transmit_multicast_total counter |
| 134 | +node_network_transmit_multicast_total{device="em0"} 8 |
| 135 | +node_network_transmit_multicast_total{device="lo0"} 0 |
| 136 | +# HELP node_network_transmit_packets_total Network device statistic transmit_packets. |
| 137 | +# TYPE node_network_transmit_packets_total counter |
| 138 | +# HELP node_os_info A metric with a constant '1' value labeled by build_id, id, id_like, image_id, image_version, name, pretty_name, variant, variant_id, version, version_codename, version_id. |
| 139 | +# TYPE node_os_info gauge |
| 140 | +node_os_info{build_id="",id="ubuntu",id_like="debian",image_id="",image_version="",name="Ubuntu",pretty_name="Ubuntu 20.04.2 LTS",variant="",variant_id="",version="20.04.2 LTS (Focal Fossa)",version_codename="focal",version_id="20.04"} 1 |
| 141 | +# HELP node_os_version Metric containing the major.minor part of the OS version. |
| 142 | +# TYPE node_os_version gauge |
| 143 | +node_os_version{id="ubuntu",id_like="debian",name="Ubuntu"} 20.04 |
| 144 | +# HELP node_scrape_collector_duration_seconds node_exporter: Duration of a collector scrape. |
| 145 | +# TYPE node_scrape_collector_duration_seconds gauge |
| 146 | +# HELP node_scrape_collector_success node_exporter: Whether a collector succeeded. |
| 147 | +# TYPE node_scrape_collector_success gauge |
| 148 | +node_scrape_collector_success{collector="boottime"} 1 |
| 149 | +node_scrape_collector_success{collector="cpu"} 1 |
| 150 | +node_scrape_collector_success{collector="exec"} 1 |
| 151 | +node_scrape_collector_success{collector="loadavg"} 1 |
| 152 | +node_scrape_collector_success{collector="meminfo"} 1 |
| 153 | +node_scrape_collector_success{collector="netdev"} 1 |
| 154 | +node_scrape_collector_success{collector="netisr"} 1 |
| 155 | +node_scrape_collector_success{collector="os"} 1 |
| 156 | +node_scrape_collector_success{collector="textfile"} 1 |
| 157 | +node_scrape_collector_success{collector="time"} 1 |
| 158 | +node_scrape_collector_success{collector="uname"} 1 |
| 159 | +node_scrape_collector_success{collector="zfs"} 1 |
| 160 | +# HELP node_textfile_scrape_error 1 if there was an error opening or reading a file, 0 otherwise |
| 161 | +# TYPE node_textfile_scrape_error gauge |
| 162 | +node_textfile_scrape_error 0 |
| 163 | +# HELP node_time_seconds System time in seconds since epoch (1970). |
| 164 | +# TYPE node_time_seconds gauge |
| 165 | +# HELP node_time_zone_offset_seconds System time zone offset in seconds. |
| 166 | +# TYPE node_time_zone_offset_seconds gauge |
| 167 | +# HELP node_uname_info Labeled system information as provided by the uname system call. |
| 168 | +# TYPE node_uname_info gauge |
| 169 | +node_uname_info{domainname="(none)",machine="amd64",nodename="freebsd",release="14.1-RELEASE",sysname="FreeBSD",version="FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC "} 1 |
| 170 | +# HELP promhttp_metric_handler_errors_total Total number of internal errors encountered by the promhttp metric handler. |
| 171 | +# TYPE promhttp_metric_handler_errors_total counter |
| 172 | +promhttp_metric_handler_errors_total{cause="encoding"} 0 |
| 173 | +promhttp_metric_handler_errors_total{cause="gathering"} 0 |
| 174 | +# HELP promhttp_metric_handler_requests_in_flight Current number of scrapes being served. |
| 175 | +# TYPE promhttp_metric_handler_requests_in_flight gauge |
| 176 | +promhttp_metric_handler_requests_in_flight 1 |
| 177 | +# HELP promhttp_metric_handler_requests_total Total number of scrapes by HTTP status code. |
| 178 | +# TYPE promhttp_metric_handler_requests_total counter |
| 179 | +promhttp_metric_handler_requests_total{code="200"} 0 |
| 180 | +promhttp_metric_handler_requests_total{code="500"} 0 |
| 181 | +promhttp_metric_handler_requests_total{code="503"} 0 |
0 commit comments