AIC Prometheus Metrics Reference

Generated 2026-08-31 09:14 UTC  ยท  commit 3e0253b

499 metrics from 5 sources

Metric Name Type Description Source
prometheus (257 metrics)
go_gc_cleanups_executed_cleanups_totalcounterApproximate total count of cleanup functions (created by runtime.AddCleanup) executed by the runtime. Subtract /gc/cleanups/queued:cleanups to approximate cleanup queue length. Useful for detecting slow cleanups holding up the queue. Sourced from /gc/cleanups/executed:cleanups.prometheus
go_gc_cleanups_queued_cleanups_totalcounterApproximate total count of cleanup functions (created by runtime.AddCleanup) queued by the runtime for execution. Subtract from /gc/cleanups/executed:cleanups to approximate cleanup queue length. Useful for detecting slow cleanups holding up the queue. Sourced from /gc/cleanups/queued:cleanups.prometheus
go_gc_cycles_automatic_gc_cycles_totalcounterCount of completed GC cycles generated by the Go runtime. Sourced from /gc/cycles/automatic:gc-cycles.prometheus
go_gc_cycles_forced_gc_cycles_totalcounterCount of completed GC cycles forced by the application. Sourced from /gc/cycles/forced:gc-cycles.prometheus
go_gc_cycles_total_gc_cycles_totalcounterCount of all completed GC cycles. Sourced from /gc/cycles/total:gc-cycles.prometheus
go_gc_duration_secondssummaryA summary of the wall-time pause (stop-the-world) duration in garbage collection cycles.prometheus
go_gc_finalizers_executed_finalizers_totalcounterTotal count of finalizer functions (created by runtime.SetFinalizer) executed by the runtime. Subtract /gc/finalizers/queued:finalizers to approximate finalizer queue length. Useful for detecting finalizers overwhelming the queue, either by being too slow, or by there being too many of them. Sourced from /gc/finalizers/executed:finalizers.prometheus
go_gc_finalizers_queued_finalizers_totalcounterTotal count of finalizer functions (created by runtime.SetFinalizer) and queued by the runtime for execution. Subtract from /gc/finalizers/executed:finalizers to approximate finalizer queue length. Useful for detecting slow finalizers holding up the queue. Sourced from /gc/finalizers/queued:finalizers.prometheus
go_gc_gogc_percentgaugeHeap 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.prometheus
go_gc_gomemlimit_bytesgaugeGo 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.prometheus
go_gc_heap_allocs_by_size_byteshistogramDistribution of heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. Sourced from /gc/heap/allocs-by-size:bytes.prometheus
go_gc_heap_allocs_bytes_totalcounterCumulative sum of memory allocated to the heap by the application. Sourced from /gc/heap/allocs:bytes.prometheus
go_gc_heap_allocs_objects_totalcounterCumulative count of heap allocations triggered by the application. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. Sourced from /gc/heap/allocs:objects.prometheus
go_gc_heap_frees_by_size_byteshistogramDistribution of freed heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. Sourced from /gc/heap/frees-by-size:bytes.prometheus
go_gc_heap_frees_bytes_totalcounterCumulative sum of heap memory freed by the garbage collector. Sourced from /gc/heap/frees:bytes.prometheus
go_gc_heap_frees_objects_totalcounterCumulative count of heap allocations whose storage was freed by the garbage collector. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. Sourced from /gc/heap/frees:objects.prometheus
go_gc_heap_goal_bytesgaugeHeap size target for the end of the GC cycle. Sourced from /gc/heap/goal:bytes.prometheus
go_gc_heap_live_bytesgaugeHeap memory occupied by live objects that were marked by the previous GC. Sourced from /gc/heap/live:bytes.prometheus
go_gc_heap_objects_objectsgaugeNumber of objects, live or unswept, occupying heap memory. Sourced from /gc/heap/objects:objects.prometheus
go_gc_heap_tiny_allocs_objects_totalcounterCount of small allocations that are packed together into blocks. These allocations are counted separately from other allocations because each individual allocation is not tracked by the runtime, only their block. Each block is already accounted for in allocs-by-size and frees-by-size. Sourced from /gc/heap/tiny/allocs:objects.prometheus
go_gc_limiter_last_enabled_gc_cyclegaugeGC cycle the last time the GC CPU limiter was enabled. This metric is useful for diagnosing the root cause of an out-of-memory error, because the limiter trades memory for CPU time when the GC's CPU time gets too high. This is most likely to occur with use of SetMemoryLimit. The first GC cycle is cycle 1, so a value of 0 indicates that it was never enabled. Sourced from /gc/limiter/last-enabled:gc-cycle.prometheus
go_gc_pauses_secondshistogramDeprecated. Prefer the identical /sched/pauses/total/gc:seconds. Sourced from /gc/pauses:seconds.prometheus
go_gc_scan_globals_bytesgaugeThe total amount of global variable space that is scannable. Sourced from /gc/scan/globals:bytes.prometheus
go_gc_scan_heap_bytesgaugeThe total amount of heap space that is scannable. Sourced from /gc/scan/heap:bytes.prometheus
go_gc_scan_stack_bytesgaugeThe number of bytes of stack that were scanned last GC cycle. Sourced from /gc/scan/stack:bytes.prometheus
go_gc_scan_total_bytesgaugeThe total amount space that is scannable. Sum of all metrics in /gc/scan. Sourced from /gc/scan/total:bytes.prometheus
go_gc_stack_starting_size_bytesgaugeThe stack size of new goroutines. Sourced from /gc/stack/starting-size:bytes.prometheus
go_goroutinesgaugeNumber of goroutines that currently exist.prometheus
go_infogaugeInformation about the Go environment.prometheus
go_memstats_alloc_bytesgaugeNumber of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes.prometheus
go_memstats_alloc_bytes_totalcounterTotal number of bytes allocated in heap until now, even if released already. Equals to /gc/heap/allocs:bytes.prometheus
go_memstats_buck_hash_sys_bytesgaugeNumber of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes.prometheus
go_memstats_frees_totalcounterTotal number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects.prometheus
go_memstats_gc_sys_bytesgaugeNumber of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes.prometheus
go_memstats_heap_alloc_bytesgaugeNumber of heap bytes allocated and currently in use, same as go_memstats_alloc_bytes. Equals to /memory/classes/heap/objects:bytes.prometheus
go_memstats_heap_idle_bytesgaugeNumber of heap bytes waiting to be used. Equals to /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes.prometheus
go_memstats_heap_inuse_bytesgaugeNumber of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytesprometheus
go_memstats_heap_objectsgaugeNumber of currently allocated objects. Equals to /gc/heap/objects:objects.prometheus
go_memstats_heap_released_bytesgaugeNumber of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes.prometheus
go_memstats_heap_sys_bytesgaugeNumber 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.prometheus
go_memstats_last_gc_time_secondsgaugeNumber of seconds since 1970 of last garbage collection.prometheus
go_memstats_mallocs_totalcounterTotal 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.prometheus
go_memstats_mcache_inuse_bytesgaugeNumber of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes.prometheus
go_memstats_mcache_sys_bytesgaugeNumber of bytes used for mcache structures obtained from system. Equals to /memory/classes/metadata/mcache/inuse:bytes + /memory/classes/metadata/mcache/free:bytes.prometheus
go_memstats_mspan_inuse_bytesgaugeNumber of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes.prometheus
go_memstats_mspan_sys_bytesgaugeNumber of bytes used for mspan structures obtained from system. Equals to /memory/classes/metadata/mspan/inuse:bytes + /memory/classes/metadata/mspan/free:bytes.prometheus
go_memstats_next_gc_bytesgaugeNumber of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes.prometheus
go_memstats_other_sys_bytesgaugeNumber of bytes used for other system allocations. Equals to /memory/classes/other:bytes.prometheus
go_memstats_stack_inuse_bytesgaugeNumber of bytes obtained from system for stack allocator in non-CGO environments. Equals to /memory/classes/heap/stacks:bytes.prometheus
go_memstats_stack_sys_bytesgaugeNumber of bytes obtained from system for stack allocator. Equals to /memory/classes/heap/stacks:bytes + /memory/classes/os-stacks:bytes.prometheus
go_memstats_sys_bytesgaugeNumber of bytes obtained from system. Equals to /memory/classes/total:byte.prometheus
go_sched_gomaxprocs_threadsgaugeThe current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. Sourced from /sched/gomaxprocs:threads.prometheus
go_sched_goroutines_created_goroutines_totalcounterCount of goroutines created since program start. Sourced from /sched/goroutines-created:goroutines.prometheus
go_sched_goroutines_goroutinesgaugeCount of live goroutines. Sourced from /sched/goroutines:goroutines.prometheus
go_sched_goroutines_not_in_go_goroutinesgaugeApproximate count of goroutines running or blocked in a system call or cgo call. Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics. Sourced from /sched/goroutines/not-in-go:goroutines.prometheus
go_sched_goroutines_runnable_goroutinesgaugeApproximate count of goroutines ready to execute, but not executing. Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics. Sourced from /sched/goroutines/runnable:goroutines.prometheus
go_sched_goroutines_running_goroutinesgaugeApproximate count of goroutines executing. Always less than or equal to /sched/gomaxprocs:threads. Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics. Sourced from /sched/goroutines/running:goroutines.prometheus
go_sched_goroutines_waiting_goroutinesgaugeApproximate count of goroutines waiting on a resource (I/O or sync primitives). Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics. Sourced from /sched/goroutines/waiting:goroutines.prometheus
go_sched_latencies_secondshistogramDistribution of the time goroutines have spent in the scheduler in a runnable state before actually running. Bucket counts increase monotonically. Sourced from /sched/latencies:seconds.prometheus
go_sched_pauses_stopping_gc_secondshistogramDistribution of individual GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total GC-related stop-the-world time (/sched/pauses/total/gc:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. Sourced from /sched/pauses/stopping/gc:seconds.prometheus
go_sched_pauses_stopping_other_secondshistogramDistribution of individual non-GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total non-GC-related stop-the-world time (/sched/pauses/total/other:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. Sourced from /sched/pauses/stopping/other:seconds.prometheus
go_sched_pauses_total_gc_secondshistogramDistribution of individual GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (this is measured directly in /sched/pauses/stopping/gc:seconds), during which some threads may still be running. Bucket counts increase monotonically. Sourced from /sched/pauses/total/gc:seconds.prometheus
go_sched_pauses_total_other_secondshistogramDistribution of individual non-GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (measured directly in /sched/pauses/stopping/other:seconds). Bucket counts increase monotonically. Sourced from /sched/pauses/total/other:seconds.prometheus
go_sched_threads_total_threadsgaugeThe current count of live threads that are owned by the Go runtime. Sourced from /sched/threads/total:threads.prometheus
go_sync_mutex_wait_total_seconds_totalcounterApproximate cumulative time goroutines have spent blocked on a sync.Mutex, sync.RWMutex, or runtime-internal lock. This metric is useful for identifying global changes in lock contention. Collect a mutex or block profile using the runtime/pprof package for more detailed contention data. Sourced from /sync/mutex/wait/total:seconds.prometheus
go_threadsgaugeNumber of OS threads created.prometheus
net_conntrack_dialer_conn_attempted_totalcounterTotal number of connections attempted by the given dialer a given name.prometheus
net_conntrack_dialer_conn_closed_totalcounterTotal number of connections closed which originated from the dialer of a given name.prometheus
net_conntrack_dialer_conn_established_totalcounterTotal number of connections successfully established by the given dialer a given name.prometheus
net_conntrack_dialer_conn_failed_totalcounterTotal number of connections failed to dial by the dialer a given name.prometheus
net_conntrack_listener_conn_accepted_totalcounterTotal number of connections opened to the listener of a given name.prometheus
net_conntrack_listener_conn_closed_totalcounterTotal number of connections closed that were made to the listener of a given name.prometheus
process_cpu_seconds_totalcounterTotal user and system CPU time spent in seconds.prometheus
process_max_fdsgaugeMaximum number of open file descriptors.prometheus
process_network_receive_bytes_totalcounterNumber of bytes received by the process over the network.prometheus
process_network_transmit_bytes_totalcounterNumber of bytes sent by the process over the network.prometheus
process_open_fdsgaugeNumber of open file descriptors.prometheus
process_resident_memory_bytesgaugeResident memory size in bytes.prometheus
process_start_time_secondsgaugeStart time of the process since unix epoch in seconds.prometheus
process_virtual_memory_bytesgaugeVirtual memory size in bytes.prometheus
process_virtual_memory_max_bytesgaugeMaximum amount of virtual memory available in bytes.prometheus
prometheus_api_notification_active_subscribersgaugeThe current number of active notification subscribers.prometheus
prometheus_api_notification_updates_dropped_totalcounterTotal number of notification updates dropped.prometheus
prometheus_api_notification_updates_sent_totalcounterTotal number of notification updates sent.prometheus
prometheus_build_infogaugeA metric with a constant '1' value labeled by version, revision, branch, goversion from which prometheus was built, and the goos and goarch for the build.prometheus
prometheus_config_last_reload_success_timestamp_secondsgaugeTimestamp of the last successful configuration reload.prometheus
prometheus_config_last_reload_successfulgaugeWhether the last configuration reload attempt was successful.prometheus
prometheus_engine_queriesgaugeThe current number of queries being executed or waiting.prometheus
prometheus_engine_queries_concurrent_maxgaugeThe max number of concurrent queries.prometheus
prometheus_engine_query_duration_histogram_secondshistogramThe duration of various parts of PromQL query execution.prometheus
prometheus_engine_query_duration_secondssummaryQuery timingsprometheus
prometheus_engine_query_log_enabledgaugeState of the query log.prometheus
prometheus_engine_query_log_failures_totalcounterThe number of query log failures.prometheus
prometheus_engine_query_samples_read_totalcounterThe total number of samples read by all queries (only new points per step for range-vector).prometheus
prometheus_engine_query_samples_totalcounterThe total number of samples loaded by all queries (full window per step for range-vector).prometheus
prometheus_http_request_duration_secondshistogramHistogram of latencies for HTTP requests.prometheus
prometheus_http_requests_totalcounterCounter of HTTP requests.prometheus
prometheus_http_response_size_byteshistogramHistogram of response size for HTTP requests.prometheus
prometheus_notifications_alertmanagers_discoveredgaugeThe number of alertmanagers discovered and active.prometheus
prometheus_notifications_queue_capacitygaugeThe capacity of the alert notifications queue.prometheus
prometheus_readygaugeWhether Prometheus startup was fully completed and the server is ready for normal operation.prometheus
prometheus_remote_read_handler_queriesgaugeThe current number of remote read queries that are either in execution or queued on the handler.prometheus
prometheus_remote_storage_exemplars_in_totalcounterExemplars in to remote storage, compare to exemplars out for queue managers. Deprecated, check prometheus_wal_watcher_records_read_total and prometheus_remote_storage_exemplars_dropped_totalprometheus
prometheus_remote_storage_highest_timestamp_in_secondsgaugeHighest timestamp that has come into the remote storage via the Appender interface, in seconds since epoch. Initialized to 0 when no data has been received yet. Deprecated, check prometheus_remote_storage_queue_highest_timestamp_seconds which is more accurate.prometheus
prometheus_remote_storage_histograms_in_totalcounterHistogramSamples in to remote storage, compare to histograms out for queue managers. Deprecated, check prometheus_wal_watcher_records_read_total and prometheus_remote_storage_histograms_dropped_totalprometheus
prometheus_remote_storage_samples_in_totalcounterSamples in to remote storage, compare to samples out for queue managers. Deprecated, check prometheus_wal_watcher_records_read_total and prometheus_remote_storage_samples_dropped_totalprometheus
prometheus_remote_storage_string_interner_zero_reference_releases_totalcounterThe number of times release has been called for strings that are not interned.prometheus
prometheus_rule_evaluation_duration_histogram_secondshistogramThe duration for a rule to execute.prometheus
prometheus_rule_evaluation_duration_secondssummaryThe duration for a rule to execute.prometheus
prometheus_rule_evaluation_failures_totalcounterThe total number of rule evaluation failures.prometheus
prometheus_rule_evaluations_totalcounterThe total number of rule evaluations.prometheus
prometheus_rule_group_duration_histogram_secondshistogramThe duration of rule group evaluations.prometheus
prometheus_rule_group_duration_secondssummaryThe duration of rule group evaluations.prometheus
prometheus_rule_group_interval_secondsgaugeThe interval of a rule group.prometheus
prometheus_rule_group_iterations_missed_totalcounterThe total number of rule group evaluations missed due to slow rule group evaluation.prometheus
prometheus_rule_group_iterations_totalcounterThe total number of scheduled rule group evaluations, whether executed or missed.prometheus
prometheus_rule_group_last_duration_secondsgaugeThe duration of the last rule group evaluation.prometheus
prometheus_rule_group_last_evaluation_samplesgaugeThe number of samples returned during the last rule group evaluation.prometheus
prometheus_rule_group_last_evaluation_timestamp_secondsgaugeThe timestamp of the last rule group evaluation in seconds.prometheus
prometheus_rule_group_last_rule_duration_sum_secondsgaugeThe sum of time in seconds it took to evaluate each rule in the group regardless of concurrency. This should be higher than the group duration if rules are evaluated concurrently.prometheus
prometheus_rule_group_rulesgaugeThe number of rules.prometheus
prometheus_sd_azure_cache_hit_totalcounterNumber of cache hit during refresh.prometheus
prometheus_sd_azure_failures_totalcounterNumber of Azure service discovery refresh failures.prometheus
prometheus_sd_consul_rpc_duration_secondssummaryThe duration of a Consul RPC call in seconds.prometheus
prometheus_sd_consul_rpc_failures_totalcounterThe number of Consul RPC call failures.prometheus
prometheus_sd_discovered_targetsgaugeCurrent number of discovered targets.prometheus
prometheus_sd_dns_lookup_failures_totalcounterThe number of DNS-SD lookup failures.prometheus
prometheus_sd_dns_lookups_totalcounterThe number of DNS-SD lookups.prometheus
prometheus_sd_failed_configsgaugeCurrent number of service discovery configurations that failed to load.prometheus
prometheus_sd_file_read_errors_totalcounterThe number of File-SD read errors.prometheus
prometheus_sd_file_scan_duration_secondssummaryThe duration of the File-SD scan in seconds.prometheus
prometheus_sd_file_watcher_errors_totalcounterThe number of File-SD errors caused by filesystem watch failures.prometheus
prometheus_sd_http_failures_totalcounterNumber of HTTP service discovery refresh failures.prometheus
prometheus_sd_kubernetes_events_totalcounterThe number of Kubernetes events handled.prometheus
prometheus_sd_kubernetes_failures_totalcounterThe number of failed WATCH/LIST requests.prometheus
prometheus_sd_kuma_fetch_duration_secondssummaryThe duration of a Kuma MADS fetch call.prometheus
prometheus_sd_kuma_fetch_failures_totalcounterThe number of Kuma MADS fetch call failures.prometheus
prometheus_sd_kuma_fetch_skipped_updates_totalcounterThe number of Kuma MADS fetch calls that result in no updates to the targets.prometheus
prometheus_sd_last_update_timestamp_secondsgaugeTimestamp of the last update sent to the SD consumers.prometheus
prometheus_sd_linode_failures_totalcounterNumber of Linode service discovery refresh failures.prometheus
prometheus_sd_nomad_failures_totalcounterNumber of nomad service discovery refresh failures.prometheus
prometheus_sd_received_updates_totalcounterTotal number of update events received from the SD providers.prometheus
prometheus_sd_updates_delayed_totalcounterTotal number of update events that couldn't be sent immediately.prometheus
prometheus_sd_updates_totalcounterTotal number of update events sent to the SD consumers.prometheus
prometheus_target_interval_length_histogram_secondshistogramActual intervals between scrapes.prometheus
prometheus_target_interval_length_secondssummaryActual intervals between scrapes.prometheus
prometheus_target_metadata_cache_bytesgaugeThe number of bytes that are currently used for storing metric metadata in the cacheprometheus
prometheus_target_metadata_cache_entriesgaugeTotal number of metric metadata entries in the cacheprometheus
prometheus_target_scrape_duration_secondshistogramTotal duration of the scrape from start to commit completion in seconds.prometheus
prometheus_target_scrape_pool_exceeded_label_limits_totalcounterTotal number of times scrape pools hit the label limits, during sync or config reload.prometheus
prometheus_target_scrape_pool_exceeded_target_limit_totalcounterTotal number of times scrape pools hit the target limit, during sync or config reload.prometheus
prometheus_target_scrape_pool_reloads_failed_totalcounterTotal number of failed scrape pool reloads.prometheus
prometheus_target_scrape_pool_reloads_totalcounterTotal number of scrape pool reloads.prometheus
prometheus_target_scrape_pool_symboltable_itemsgaugeCurrent number of symbols in table for this scrape pool.prometheus
prometheus_target_scrape_pool_sync_totalcounterTotal number of syncs that were executed on a scrape pool.prometheus
prometheus_target_scrape_pool_target_limitgaugeMaximum number of targets allowed in this scrape pool.prometheus
prometheus_target_scrape_pool_targetsgaugeCurrent number of targets in this scrape pool.prometheus
prometheus_target_scrape_pools_failed_totalcounterTotal number of scrape pool creations that failed.prometheus
prometheus_target_scrape_pools_totalcounterTotal number of scrape pool creation attempts.prometheus
prometheus_target_scrapes_cache_flush_forced_totalcounterHow many times a scrape cache was flushed due to getting big while scrapes are failing.prometheus
prometheus_target_scrapes_exceeded_body_size_limit_totalcounterTotal number of scrapes that hit the body size limitprometheus
prometheus_target_scrapes_exceeded_native_histogram_bucket_limit_totalcounterTotal number of scrapes that hit the native histogram bucket limit and were rejected.prometheus
prometheus_target_scrapes_exceeded_sample_limit_totalcounterTotal number of scrapes that hit the sample limit and were rejected.prometheus
prometheus_target_scrapes_exemplar_out_of_order_totalcounterTotal number of exemplar rejected due to not being out of the expected order.prometheus
prometheus_target_scrapes_sample_duplicate_timestamp_totalcounterTotal number of samples rejected due to duplicate timestamps but different values.prometheus
prometheus_target_scrapes_sample_out_of_bounds_totalcounterTotal number of samples rejected due to timestamp falling outside of the time bounds.prometheus
prometheus_target_scrapes_sample_out_of_order_totalcounterTotal number of samples rejected due to not being out of the expected order.prometheus
prometheus_target_sync_failed_totalcounterTotal number of target sync failures.prometheus
prometheus_target_sync_length_histogram_secondshistogramActual interval to sync the scrape pool.prometheus
prometheus_target_sync_length_secondssummaryActual interval to sync the scrape pool.prometheus
prometheus_template_text_expansion_failures_totalcounterThe total number of template text expansion failures.prometheus
prometheus_template_text_expansions_totalcounterThe total number of template text expansions.prometheus
prometheus_treecache_watcher_goroutinesgaugeThe current number of watcher goroutines.prometheus
prometheus_treecache_zookeeper_failures_totalcounterThe total number of ZooKeeper failures.prometheus
prometheus_tsdb_blocks_loadedgaugeNumber of currently loaded data blocksprometheus
prometheus_tsdb_checkpoint_creations_failed_totalcounterTotal number of checkpoint creations that failed.prometheus
prometheus_tsdb_checkpoint_creations_totalcounterTotal number of checkpoint creations attempted.prometheus
prometheus_tsdb_checkpoint_deletions_failed_totalcounterTotal number of checkpoint deletions that failed.prometheus
prometheus_tsdb_checkpoint_deletions_totalcounterTotal number of checkpoint deletions attempted.prometheus
prometheus_tsdb_clean_startgauge-1: lockfile is disabled. 0: a lockfile from a previous execution was replaced. 1: lockfile creation was cleanprometheus
prometheus_tsdb_compaction_chunk_range_secondshistogramFinal time range of chunks on their first compactionprometheus
prometheus_tsdb_compaction_chunk_sampleshistogramFinal number of samples on their first compactionprometheus
prometheus_tsdb_compaction_chunk_size_byteshistogramFinal size of chunks on their first compactionprometheus
prometheus_tsdb_compaction_duration_secondshistogramDuration of compaction runsprometheus
prometheus_tsdb_compaction_populating_blockgaugeSet to 1 when a block is currently being written to the disk.prometheus
prometheus_tsdb_compactions_failed_totalcounterTotal number of compactions that failed for the partition.prometheus
prometheus_tsdb_compactions_skipped_totalcounterTotal number of skipped compactions due to disabled auto compaction.prometheus
prometheus_tsdb_compactions_totalcounterTotal number of compactions that were executed for the partition.prometheus
prometheus_tsdb_compactions_triggered_totalcounterTotal number of triggered compactions for the partition.prometheus
prometheus_tsdb_data_replay_duration_secondsgaugeTime taken to replay the data on disk.prometheus
prometheus_tsdb_exemplar_exemplars_appended_totalcounterTotal number of appended exemplars.prometheus
prometheus_tsdb_exemplar_exemplars_in_storagegaugeNumber of exemplars currently in circular storage.prometheus
prometheus_tsdb_exemplar_last_exemplars_timestamp_secondsgaugeThe timestamp of the oldest exemplar stored in circular storage. Useful to check for what timerange the current exemplar buffer limit allows. This usually means the last timestampfor all exemplars for a typical setup. This is not true though if one of the series timestamp is in future compared to rest series.prometheus
prometheus_tsdb_exemplar_max_exemplarsgaugeTotal number of exemplars the exemplar storage can store, resizeable.prometheus
prometheus_tsdb_exemplar_out_of_order_exemplars_totalcounterTotal number of out of order exemplar ingestion failed attempts.prometheus
prometheus_tsdb_exemplar_series_with_exemplars_in_storagegaugeNumber of series with exemplars currently in circular storage.prometheus
prometheus_tsdb_head_active_appendersgaugeNumber of currently active appender transactionsprometheus
prometheus_tsdb_head_chunksgaugeTotal number of chunks in the head block.prometheus
prometheus_tsdb_head_chunks_created_totalcounterTotal number of chunks created in the headprometheus
prometheus_tsdb_head_chunks_removed_totalcounterTotal number of chunks removed in the headprometheus
prometheus_tsdb_head_chunks_storage_size_bytesgaugeSize of the chunks_head directory.prometheus
prometheus_tsdb_head_gc_duration_secondssummaryRuntime of garbage collection in the head block.prometheus
prometheus_tsdb_head_max_timegaugeMaximum timestamp of the head block. The unit is decided by the library consumer.prometheus
prometheus_tsdb_head_max_time_secondsgaugeMaximum timestamp of the head block.prometheus
prometheus_tsdb_head_min_timegaugeMinimum time bound of the head block. The unit is decided by the library consumer.prometheus
prometheus_tsdb_head_min_time_secondsgaugeMinimum time bound of the head block.prometheus
prometheus_tsdb_head_out_of_order_samples_appended_totalcounterTotal number of appended out of order samples.prometheus
prometheus_tsdb_head_samples_appended_totalcounterTotal number of appended samples.prometheus
prometheus_tsdb_head_seriesgaugeTotal number of series in the head block.prometheus
prometheus_tsdb_head_series_created_totalcounterTotal number of series created in the headprometheus
prometheus_tsdb_head_series_not_found_totalcounterTotal number of requests for series that were not found.prometheus
prometheus_tsdb_head_series_removed_totalcounterTotal number of series removed in the headprometheus
prometheus_tsdb_head_stale_seriesgaugeTotal number of stale series in the head block.prometheus
prometheus_tsdb_head_truncations_failed_totalcounterTotal number of head truncations that failed.prometheus
prometheus_tsdb_head_truncations_totalcounterTotal number of head truncations attempted.prometheus
prometheus_tsdb_isolation_high_watermarkgaugeThe highest TSDB append ID that has been given out.prometheus
prometheus_tsdb_isolation_low_watermarkgaugeThe lowest TSDB append ID that is still referenced.prometheus
prometheus_tsdb_lowest_timestampgaugeLowest timestamp value stored in the database. The unit is decided by the library consumer.prometheus
prometheus_tsdb_lowest_timestamp_secondsgaugeLowest timestamp value stored in the database.prometheus
prometheus_tsdb_mmap_chunk_corruptions_totalcounterTotal number of memory-mapped chunk corruptions.prometheus
prometheus_tsdb_mmap_chunks_totalcounterTotal number of chunks that were memory-mapped.prometheus
prometheus_tsdb_out_of_bound_samples_totalcounterTotal number of out of bound samples ingestion failed attempts with out of order support disabled.prometheus
prometheus_tsdb_out_of_order_samples_totalcounterTotal number of out of order samples ingestion failed attempts due to out of order being disabled.prometheus
prometheus_tsdb_reloads_failures_totalcounterNumber of times the database failed to reloadBlocks block data from disk.prometheus
prometheus_tsdb_reloads_totalcounterNumber of times the database reloaded block data from disk.prometheus
prometheus_tsdb_retention_limit_bytesgaugeMax number of bytes to be retained in the tsdb blocks, configured 0 means disabledprometheus
prometheus_tsdb_retention_limit_percentagegaugeMax percentage of total storage space to be retained in the tsdb blocks, configured 0 means disabledprometheus
prometheus_tsdb_retention_limit_secondsgaugeHow long to retain samples in storage.prometheus
prometheus_tsdb_sample_ooo_deltahistogramDelta in seconds by which a sample is considered out of order (reported regardless of OOO time window and whether sample is accepted or not).prometheus
prometheus_tsdb_size_retentions_totalcounterThe number of times that blocks were deleted because the maximum number of bytes was exceeded.prometheus
prometheus_tsdb_snapshot_replay_error_totalcounterTotal number snapshot replays that failed.prometheus
prometheus_tsdb_stale_series_compaction_duration_secondshistogramDuration of stale series compaction runs.prometheus
prometheus_tsdb_stale_series_compactions_failed_totalcounterTotal number of stale series compactions that failed.prometheus
prometheus_tsdb_stale_series_compactions_triggered_totalcounterTotal number of triggered stale series compactions.prometheus
prometheus_tsdb_storage_blocks_bytesgaugeThe number of bytes that are currently used for local storage by all blocks.prometheus
prometheus_tsdb_symbol_table_size_bytesgaugeSize of symbol table in memory for loaded blocksprometheus
prometheus_tsdb_time_retentions_totalcounterThe number of times that blocks were deleted because the maximum time limit was exceeded.prometheus
prometheus_tsdb_tombstone_cleanup_secondshistogramThe time taken to recompact blocks to remove tombstones.prometheus
prometheus_tsdb_too_old_samples_totalcounterTotal number of out of order samples ingestion failed attempts with out of support enabled, but sample outside of time window.prometheus
prometheus_tsdb_vertical_compactions_totalcounterTotal number of compactions done on overlapping blocks.prometheus
prometheus_tsdb_wal_completed_pages_totalcounterTotal number of completed pages.prometheus
prometheus_tsdb_wal_corruptions_totalcounterTotal number of WAL corruptions.prometheus
prometheus_tsdb_wal_fsync_duration_secondssummaryDuration of write log fsync.prometheus
prometheus_tsdb_wal_page_flushes_totalcounterTotal number of page flushes.prometheus
prometheus_tsdb_wal_record_bytes_saved_totalcounterTotal number of bytes saved by the optional record compression. Use this metric to learn about the effectiveness compression.prometheus
prometheus_tsdb_wal_record_part_writes_totalcounterTotal number of record parts written before flushing.prometheus
prometheus_tsdb_wal_record_parts_bytes_written_totalcounterTotal number of record part bytes written before flushing, including CRC and compression headers.prometheus
prometheus_tsdb_wal_segment_currentgaugeWrite log segment index that TSDB is currently writing to.prometheus
prometheus_tsdb_wal_storage_size_bytesgaugeSize of the write log directory.prometheus
prometheus_tsdb_wal_truncate_duration_secondssummaryDuration of WAL truncation.prometheus
prometheus_tsdb_wal_truncations_failed_totalcounterTotal number of write log truncations that failed.prometheus
prometheus_tsdb_wal_truncations_totalcounterTotal number of write log truncations attempted.prometheus
prometheus_tsdb_wal_writes_failed_totalcounterTotal number of write log writes that failed.prometheus
prometheus_web_federation_errors_totalcounterTotal number of errors that occurred while sending federation responses.prometheus
prometheus_web_federation_warnings_totalcounterTotal number of warnings that occurred while sending federation responses.prometheus
promhttp_metric_handler_requests_in_flightgaugeCurrent number of scrapes being served.prometheus
promhttp_metric_handler_requests_totalcounterTotal number of scrapes by HTTP status code.prometheus
nvme_exporter (41 metrics)
go_gc_duration_secondssummaryA summary of the wall-time pause (stop-the-world) duration in garbage collection cycles.nvme_exporter
go_gc_gogc_percentgaugeHeap 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.nvme_exporter
go_gc_gomemlimit_bytesgaugeGo 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.nvme_exporter
go_goroutinesgaugeNumber of goroutines that currently exist.nvme_exporter
go_infogaugeInformation about the Go environment.nvme_exporter
go_memstats_alloc_bytesgaugeNumber of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes.nvme_exporter
go_memstats_alloc_bytes_totalcounterTotal number of bytes allocated in heap until now, even if released already. Equals to /gc/heap/allocs:bytes.nvme_exporter
go_memstats_buck_hash_sys_bytesgaugeNumber of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes.nvme_exporter
go_memstats_frees_totalcounterTotal number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects.nvme_exporter
go_memstats_gc_sys_bytesgaugeNumber of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes.nvme_exporter
go_memstats_heap_alloc_bytesgaugeNumber of heap bytes allocated and currently in use, same as go_memstats_alloc_bytes. Equals to /memory/classes/heap/objects:bytes.nvme_exporter
go_memstats_heap_idle_bytesgaugeNumber of heap bytes waiting to be used. Equals to /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes.nvme_exporter
go_memstats_heap_inuse_bytesgaugeNumber of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytesnvme_exporter
go_memstats_heap_objectsgaugeNumber of currently allocated objects. Equals to /gc/heap/objects:objects.nvme_exporter
go_memstats_heap_released_bytesgaugeNumber of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes.nvme_exporter
go_memstats_heap_sys_bytesgaugeNumber 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.nvme_exporter
go_memstats_last_gc_time_secondsgaugeNumber of seconds since 1970 of last garbage collection.nvme_exporter
go_memstats_mallocs_totalcounterTotal 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.nvme_exporter
go_memstats_mcache_inuse_bytesgaugeNumber of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes.nvme_exporter
go_memstats_mcache_sys_bytesgaugeNumber of bytes used for mcache structures obtained from system. Equals to /memory/classes/metadata/mcache/inuse:bytes + /memory/classes/metadata/mcache/free:bytes.nvme_exporter
go_memstats_mspan_inuse_bytesgaugeNumber of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes.nvme_exporter
go_memstats_mspan_sys_bytesgaugeNumber of bytes used for mspan structures obtained from system. Equals to /memory/classes/metadata/mspan/inuse:bytes + /memory/classes/metadata/mspan/free:bytes.nvme_exporter
go_memstats_next_gc_bytesgaugeNumber of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes.nvme_exporter
go_memstats_other_sys_bytesgaugeNumber of bytes used for other system allocations. Equals to /memory/classes/other:bytes.nvme_exporter
go_memstats_stack_inuse_bytesgaugeNumber of bytes obtained from system for stack allocator in non-CGO environments. Equals to /memory/classes/heap/stacks:bytes.nvme_exporter
go_memstats_stack_sys_bytesgaugeNumber of bytes obtained from system for stack allocator. Equals to /memory/classes/heap/stacks:bytes + /memory/classes/os-stacks:bytes.nvme_exporter
go_memstats_sys_bytesgaugeNumber of bytes obtained from system. Equals to /memory/classes/total:byte.nvme_exporter
go_sched_gomaxprocs_threadsgaugeThe current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. Sourced from /sched/gomaxprocs:threads.nvme_exporter
go_threadsgaugeNumber of OS threads created.nvme_exporter
nvme_exporter_scrape_failures_totalcounterTotal number of scrape failures due to fatal validation errors (not root or nvme-cli not found)nvme_exporter
process_cpu_seconds_totalcounterTotal user and system CPU time spent in seconds.nvme_exporter
process_max_fdsgaugeMaximum number of open file descriptors.nvme_exporter
process_network_receive_bytes_totalcounterNumber of bytes received by the process over the network.nvme_exporter
process_network_transmit_bytes_totalcounterNumber of bytes sent by the process over the network.nvme_exporter
process_open_fdsgaugeNumber of open file descriptors.nvme_exporter
process_resident_memory_bytesgaugeResident memory size in bytes.nvme_exporter
process_start_time_secondsgaugeStart time of the process since unix epoch in seconds.nvme_exporter
process_virtual_memory_bytesgaugeVirtual memory size in bytes.nvme_exporter
process_virtual_memory_max_bytesgaugeMaximum amount of virtual memory available in bytes.nvme_exporter
promhttp_metric_handler_requests_in_flightgaugeCurrent number of scrapes being served.nvme_exporter
promhttp_metric_handler_requests_totalcounterTotal number of scrapes by HTTP status code.nvme_exporter
vllm (16 metrics)
process_cpu_seconds_totalcounterTotal user and system CPU time spent in seconds.vllm
process_max_fdsgaugeMaximum number of open file descriptors.vllm
process_open_fdsgaugeNumber of open file descriptors.vllm
process_resident_memory_bytesgaugeResident memory size in bytes.vllm
process_start_time_secondsgaugeStart time of the process since unix epoch in seconds.vllm
process_virtual_memory_bytesgaugeVirtual memory size in bytes.vllm
python_gc_collections_totalcounterNumber of times this generation was collectedvllm
python_gc_objects_collected_totalcounterObjects collected during gcvllm
python_gc_objects_uncollectable_totalcounterUncollectable objects found during GCvllm
python_infogaugePython platform informationvllm
vllm_generation_tokens_createdgaugeTotal number of generation tokens producedvllm
vllm_generation_tokens_totalcounterTotal number of generation tokens producedvllm
vllm_request_duration_secondshistogramCompletion request latency in secondsvllm
vllm_request_duration_seconds_createdgaugeCompletion request latency in secondsvllm
vllm_requests_createdgaugeTotal number of completions requestsvllm
vllm_requests_totalcounterTotal number of completions requestsvllm
node_exporter (144 metrics)
go_gc_duration_secondssummaryA summary of the pause duration of garbage collection cycles.node_exporter
go_goroutinesgaugeNumber of goroutines that currently exist.node_exporter
go_infogaugeInformation about the Go environment.node_exporter
go_memstats_alloc_bytesgaugeNumber of bytes allocated and still in use.node_exporter
go_memstats_alloc_bytes_totalcounterTotal number of bytes allocated, even if freed.node_exporter
go_memstats_buck_hash_sys_bytesgaugeNumber of bytes used by the profiling bucket hash table.node_exporter
go_memstats_frees_totalcounterTotal number of frees.node_exporter
go_memstats_gc_sys_bytesgaugeNumber of bytes used for garbage collection system metadata.node_exporter
go_memstats_heap_alloc_bytesgaugeNumber of heap bytes allocated and still in use.node_exporter
go_memstats_heap_idle_bytesgaugeNumber of heap bytes waiting to be used.node_exporter
go_memstats_heap_inuse_bytesgaugeNumber of heap bytes that are in use.node_exporter
go_memstats_heap_objectsgaugeNumber of allocated objects.node_exporter
go_memstats_heap_released_bytesgaugeNumber of heap bytes released to OS.node_exporter
go_memstats_heap_sys_bytesgaugeNumber of heap bytes obtained from system.node_exporter
go_memstats_last_gc_time_secondsgaugeNumber of seconds since 1970 of last garbage collection.node_exporter
go_memstats_lookups_totalcounterTotal number of pointer lookups.node_exporter
go_memstats_mallocs_totalcounterTotal number of mallocs.node_exporter
go_memstats_mcache_inuse_bytesgaugeNumber of bytes in use by mcache structures.node_exporter
go_memstats_mcache_sys_bytesgaugeNumber of bytes used for mcache structures obtained from system.node_exporter
go_memstats_mspan_inuse_bytesgaugeNumber of bytes in use by mspan structures.node_exporter
go_memstats_mspan_sys_bytesgaugeNumber of bytes used for mspan structures obtained from system.node_exporter
go_memstats_next_gc_bytesgaugeNumber of heap bytes when next garbage collection will take place.node_exporter
go_memstats_other_sys_bytesgaugeNumber of bytes used for other system allocations.node_exporter
go_memstats_stack_inuse_bytesgaugeNumber of bytes in use by the stack allocator.node_exporter
go_memstats_stack_sys_bytesgaugeNumber of bytes obtained from system for stack allocator.node_exporter
go_memstats_sys_bytesgaugeNumber of bytes obtained from system.node_exporter
go_threadsgaugeNumber of OS threads created.node_exporter
node_cpu_guest_seconds_totalcounterSeconds the CPUs spent in guests (VMs) for each mode.node_exporter
node_cpu_seconds_totalcounterSeconds the CPUs spent in each mode.node_exporter
node_disk_device_mapper_infogaugeInfo about disk device mapper.node_exporter
node_disk_discard_time_seconds_totalcounterThis is the total number of seconds spent by all discards.node_exporter
node_disk_discarded_sectors_totalcounterThe total number of sectors discarded successfully.node_exporter
node_disk_discards_completed_totalcounterThe total number of discards completed successfully.node_exporter
node_disk_discards_merged_totalcounterThe total number of discards merged.node_exporter
node_disk_filesystem_infogaugeInfo about disk filesystem.node_exporter
node_disk_flush_requests_time_seconds_totalcounterThis is the total number of seconds spent by all flush requests.node_exporter
node_disk_flush_requests_totalcounterThe total number of flush requests completed successfullynode_exporter
node_disk_infogaugeInfo of /sys/block/<block_device>.node_exporter
node_disk_io_nowgaugeThe number of I/Os currently in progress.node_exporter
node_disk_io_time_seconds_totalcounterTotal seconds spent doing I/Os.node_exporter
node_disk_io_time_weighted_seconds_totalcounterThe weighted # of seconds spent doing I/Os.node_exporter
node_disk_read_bytes_totalcounterThe total number of bytes read successfully.node_exporter
node_disk_read_time_seconds_totalcounterThe total number of seconds spent by all reads.node_exporter
node_disk_reads_completed_totalcounterThe total number of reads completed successfully.node_exporter
node_disk_reads_merged_totalcounterThe total number of reads merged.node_exporter
node_disk_write_time_seconds_totalcounterThis is the total number of seconds spent by all writes.node_exporter
node_disk_writes_completed_totalcounterThe total number of writes completed successfully.node_exporter
node_disk_writes_merged_totalcounterThe number of writes merged.node_exporter
node_disk_written_bytes_totalcounterThe total number of bytes written successfully.node_exporter
node_exporter_build_infogaugeA 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.node_exporter
node_filesystem_avail_bytesgaugeFilesystem space available to non-root users in bytes.node_exporter
node_filesystem_device_errorgaugeWhether an error occurred while getting statistics for the given device.node_exporter
node_filesystem_filesgaugeFilesystem total file nodes.node_exporter
node_filesystem_files_freegaugeFilesystem total free file nodes.node_exporter
node_filesystem_free_bytesgaugeFilesystem free space in bytes.node_exporter
node_filesystem_readonlygaugeFilesystem read-only status.node_exporter
node_filesystem_size_bytesgaugeFilesystem size in bytes.node_exporter
node_load1gauge1m load average.node_exporter
node_load15gauge15m load average.node_exporter
node_load5gauge5m load average.node_exporter
node_memory_Active_anon_bytesgaugeMemory information field Active_anon_bytes.node_exporter
node_memory_Active_bytesgaugeMemory information field Active_bytes.node_exporter
node_memory_Active_file_bytesgaugeMemory information field Active_file_bytes.node_exporter
node_memory_AnonHugePages_bytesgaugeMemory information field AnonHugePages_bytes.node_exporter
node_memory_AnonPages_bytesgaugeMemory information field AnonPages_bytes.node_exporter
node_memory_Bounce_bytesgaugeMemory information field Bounce_bytes.node_exporter
node_memory_Buffers_bytesgaugeMemory information field Buffers_bytes.node_exporter
node_memory_Cached_bytesgaugeMemory information field Cached_bytes.node_exporter
node_memory_CommitLimit_bytesgaugeMemory information field CommitLimit_bytes.node_exporter
node_memory_Committed_AS_bytesgaugeMemory information field Committed_AS_bytes.node_exporter
node_memory_DirectMap1G_bytesgaugeMemory information field DirectMap1G_bytes.node_exporter
node_memory_DirectMap2M_bytesgaugeMemory information field DirectMap2M_bytes.node_exporter
node_memory_DirectMap4k_bytesgaugeMemory information field DirectMap4k_bytes.node_exporter
node_memory_Dirty_bytesgaugeMemory information field Dirty_bytes.node_exporter
node_memory_FileHugePages_bytesgaugeMemory information field FileHugePages_bytes.node_exporter
node_memory_FilePmdMapped_bytesgaugeMemory information field FilePmdMapped_bytes.node_exporter
node_memory_HardwareCorrupted_bytesgaugeMemory information field HardwareCorrupted_bytes.node_exporter
node_memory_HugePages_FreegaugeMemory information field HugePages_Free.node_exporter
node_memory_HugePages_RsvdgaugeMemory information field HugePages_Rsvd.node_exporter
node_memory_HugePages_SurpgaugeMemory information field HugePages_Surp.node_exporter
node_memory_HugePages_TotalgaugeMemory information field HugePages_Total.node_exporter
node_memory_Hugepagesize_bytesgaugeMemory information field Hugepagesize_bytes.node_exporter
node_memory_Hugetlb_bytesgaugeMemory information field Hugetlb_bytes.node_exporter
node_memory_Inactive_anon_bytesgaugeMemory information field Inactive_anon_bytes.node_exporter
node_memory_Inactive_bytesgaugeMemory information field Inactive_bytes.node_exporter
node_memory_Inactive_file_bytesgaugeMemory information field Inactive_file_bytes.node_exporter
node_memory_KReclaimable_bytesgaugeMemory information field KReclaimable_bytes.node_exporter
node_memory_KernelStack_bytesgaugeMemory information field KernelStack_bytes.node_exporter
node_memory_Mapped_bytesgaugeMemory information field Mapped_bytes.node_exporter
node_memory_MemAvailable_bytesgaugeMemory information field MemAvailable_bytes.node_exporter
node_memory_MemFree_bytesgaugeMemory information field MemFree_bytes.node_exporter
node_memory_MemTotal_bytesgaugeMemory information field MemTotal_bytes.node_exporter
node_memory_Mlocked_bytesgaugeMemory information field Mlocked_bytes.node_exporter
node_memory_NFS_Unstable_bytesgaugeMemory information field NFS_Unstable_bytes.node_exporter
node_memory_PageTables_bytesgaugeMemory information field PageTables_bytes.node_exporter
node_memory_Percpu_bytesgaugeMemory information field Percpu_bytes.node_exporter
node_memory_SReclaimable_bytesgaugeMemory information field SReclaimable_bytes.node_exporter
node_memory_SUnreclaim_bytesgaugeMemory information field SUnreclaim_bytes.node_exporter
node_memory_SecPageTables_bytesgaugeMemory information field SecPageTables_bytes.node_exporter
node_memory_ShmemHugePages_bytesgaugeMemory information field ShmemHugePages_bytes.node_exporter
node_memory_ShmemPmdMapped_bytesgaugeMemory information field ShmemPmdMapped_bytes.node_exporter
node_memory_Shmem_bytesgaugeMemory information field Shmem_bytes.node_exporter
node_memory_Slab_bytesgaugeMemory information field Slab_bytes.node_exporter
node_memory_SwapCached_bytesgaugeMemory information field SwapCached_bytes.node_exporter
node_memory_SwapFree_bytesgaugeMemory information field SwapFree_bytes.node_exporter
node_memory_SwapTotal_bytesgaugeMemory information field SwapTotal_bytes.node_exporter
node_memory_Unaccepted_bytesgaugeMemory information field Unaccepted_bytes.node_exporter
node_memory_Unevictable_bytesgaugeMemory information field Unevictable_bytes.node_exporter
node_memory_VmallocChunk_bytesgaugeMemory information field VmallocChunk_bytes.node_exporter
node_memory_VmallocTotal_bytesgaugeMemory information field VmallocTotal_bytes.node_exporter
node_memory_VmallocUsed_bytesgaugeMemory information field VmallocUsed_bytes.node_exporter
node_memory_WritebackTmp_bytesgaugeMemory information field WritebackTmp_bytes.node_exporter
node_memory_Writeback_bytesgaugeMemory information field Writeback_bytes.node_exporter
node_memory_Zswap_bytesgaugeMemory information field Zswap_bytes.node_exporter
node_memory_Zswapped_bytesgaugeMemory information field Zswapped_bytes.node_exporter
node_network_receive_bytes_totalcounterNetwork device statistic receive_bytes.node_exporter
node_network_receive_compressed_totalcounterNetwork device statistic receive_compressed.node_exporter
node_network_receive_drop_totalcounterNetwork device statistic receive_drop.node_exporter
node_network_receive_errs_totalcounterNetwork device statistic receive_errs.node_exporter
node_network_receive_fifo_totalcounterNetwork device statistic receive_fifo.node_exporter
node_network_receive_frame_totalcounterNetwork device statistic receive_frame.node_exporter
node_network_receive_multicast_totalcounterNetwork device statistic receive_multicast.node_exporter
node_network_receive_nohandler_totalcounterNetwork device statistic receive_nohandler.node_exporter
node_network_receive_packets_totalcounterNetwork device statistic receive_packets.node_exporter
node_network_transmit_bytes_totalcounterNetwork device statistic transmit_bytes.node_exporter
node_network_transmit_carrier_totalcounterNetwork device statistic transmit_carrier.node_exporter
node_network_transmit_colls_totalcounterNetwork device statistic transmit_colls.node_exporter
node_network_transmit_compressed_totalcounterNetwork device statistic transmit_compressed.node_exporter
node_network_transmit_drop_totalcounterNetwork device statistic transmit_drop.node_exporter
node_network_transmit_errs_totalcounterNetwork device statistic transmit_errs.node_exporter
node_network_transmit_fifo_totalcounterNetwork device statistic transmit_fifo.node_exporter
node_network_transmit_packets_totalcounterNetwork device statistic transmit_packets.node_exporter
node_scrape_collector_duration_secondsgaugenode_exporter: Duration of a collector scrape.node_exporter
node_scrape_collector_successgaugenode_exporter: Whether a collector succeeded.node_exporter
process_cpu_seconds_totalcounterTotal user and system CPU time spent in seconds.node_exporter
process_max_fdsgaugeMaximum number of open file descriptors.node_exporter
process_open_fdsgaugeNumber of open file descriptors.node_exporter
process_resident_memory_bytesgaugeResident memory size in bytes.node_exporter
process_start_time_secondsgaugeStart time of the process since unix epoch in seconds.node_exporter
process_virtual_memory_bytesgaugeVirtual memory size in bytes.node_exporter
process_virtual_memory_max_bytesgaugeMaximum amount of virtual memory available in bytes.node_exporter
promhttp_metric_handler_errors_totalcounterTotal number of internal errors encountered by the promhttp metric handler.node_exporter
promhttp_metric_handler_requests_in_flightgaugeCurrent number of scrapes being served.node_exporter
promhttp_metric_handler_requests_totalcounterTotal number of scrapes by HTTP status code.node_exporter
rdma_exporter (41 metrics)
go_gc_duration_secondssummaryA summary of the wall-time pause (stop-the-world) duration in garbage collection cycles.rdma_exporter
go_gc_gogc_percentgaugeHeap 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:percentrdma_exporter
go_gc_gomemlimit_bytesgaugeGo 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:bytesrdma_exporter
go_goroutinesgaugeNumber of goroutines that currently exist.rdma_exporter
go_infogaugeInformation about the Go environment.rdma_exporter
go_memstats_alloc_bytesgaugeNumber of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes.rdma_exporter
go_memstats_alloc_bytes_totalcounterTotal number of bytes allocated in heap until now, even if released already. Equals to /gc/heap/allocs:bytes.rdma_exporter
go_memstats_buck_hash_sys_bytesgaugeNumber of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes.rdma_exporter
go_memstats_frees_totalcounterTotal number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects.rdma_exporter
go_memstats_gc_sys_bytesgaugeNumber of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes.rdma_exporter
go_memstats_heap_alloc_bytesgaugeNumber of heap bytes allocated and currently in use, same as go_memstats_alloc_bytes. Equals to /memory/classes/heap/objects:bytes.rdma_exporter
go_memstats_heap_idle_bytesgaugeNumber of heap bytes waiting to be used. Equals to /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes.rdma_exporter
go_memstats_heap_inuse_bytesgaugeNumber of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytesrdma_exporter
go_memstats_heap_objectsgaugeNumber of currently allocated objects. Equals to /gc/heap/objects:objects.rdma_exporter
go_memstats_heap_released_bytesgaugeNumber of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes.rdma_exporter
go_memstats_heap_sys_bytesgaugeNumber 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.rdma_exporter
go_memstats_last_gc_time_secondsgaugeNumber of seconds since 1970 of last garbage collection.rdma_exporter
go_memstats_mallocs_totalcounterTotal 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.rdma_exporter
go_memstats_mcache_inuse_bytesgaugeNumber of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes.rdma_exporter
go_memstats_mcache_sys_bytesgaugeNumber of bytes used for mcache structures obtained from system. Equals to /memory/classes/metadata/mcache/inuse:bytes + /memory/classes/metadata/mcache/free:bytes.rdma_exporter
go_memstats_mspan_inuse_bytesgaugeNumber of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes.rdma_exporter
go_memstats_mspan_sys_bytesgaugeNumber of bytes used for mspan structures obtained from system. Equals to /memory/classes/metadata/mspan/inuse:bytes + /memory/classes/metadata/mspan/free:bytes.rdma_exporter
go_memstats_next_gc_bytesgaugeNumber of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes.rdma_exporter
go_memstats_other_sys_bytesgaugeNumber of bytes used for other system allocations. Equals to /memory/classes/other:bytes.rdma_exporter
go_memstats_stack_inuse_bytesgaugeNumber of bytes obtained from system for stack allocator in non-CGO environments. Equals to /memory/classes/heap/stacks:bytes.rdma_exporter
go_memstats_stack_sys_bytesgaugeNumber of bytes obtained from system for stack allocator. Equals to /memory/classes/heap/stacks:bytes + /memory/classes/os-stacks:bytes.rdma_exporter
go_memstats_sys_bytesgaugeNumber of bytes obtained from system. Equals to /memory/classes/total:byte.rdma_exporter
go_sched_gomaxprocs_threadsgaugeThe current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. Sourced from /sched/gomaxprocs:threadsrdma_exporter
go_threadsgaugeNumber of OS threads created.rdma_exporter
process_cpu_seconds_totalcounterTotal user and system CPU time spent in seconds.rdma_exporter
process_max_fdsgaugeMaximum number of open file descriptors.rdma_exporter
process_network_receive_bytes_totalcounterNumber of bytes received by the process over the network.rdma_exporter
process_network_transmit_bytes_totalcounterNumber of bytes sent by the process over the network.rdma_exporter
process_open_fdsgaugeNumber of open file descriptors.rdma_exporter
process_resident_memory_bytesgaugeResident memory size in bytes.rdma_exporter
process_start_time_secondsgaugeStart time of the process since unix epoch in seconds.rdma_exporter
process_virtual_memory_bytesgaugeVirtual memory size in bytes.rdma_exporter
process_virtual_memory_max_bytesgaugeMaximum amount of virtual memory available in bytes.rdma_exporter
promhttp_metric_handler_requests_in_flightgaugeCurrent number of scrapes being served.rdma_exporter
promhttp_metric_handler_requests_totalcounterTotal number of scrapes by HTTP status code.rdma_exporter
rdma_scrape_errors_totalcounterTotal number of errors encountered while scraping RDMA sysfs.rdma_exporter