499 metrics from 5 sources
| Metric Name | Type | Description | Source |
|---|---|---|---|
prometheus (257 metrics) | |||
go_gc_cleanups_executed_cleanups_total | counter | Approximate 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_total | counter | Approximate 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_total | counter | Count of completed GC cycles generated by the Go runtime. Sourced from /gc/cycles/automatic:gc-cycles. | prometheus |
go_gc_cycles_forced_gc_cycles_total | counter | Count of completed GC cycles forced by the application. Sourced from /gc/cycles/forced:gc-cycles. | prometheus |
go_gc_cycles_total_gc_cycles_total | counter | Count of all completed GC cycles. Sourced from /gc/cycles/total:gc-cycles. | prometheus |
go_gc_duration_seconds | summary | A summary of the wall-time pause (stop-the-world) duration in garbage collection cycles. | prometheus |
go_gc_finalizers_executed_finalizers_total | counter | Total 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_total | counter | Total 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_percent | gauge | 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. | prometheus |
go_gc_gomemlimit_bytes | gauge | 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. | prometheus |
go_gc_heap_allocs_by_size_bytes | histogram | Distribution 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_total | counter | Cumulative sum of memory allocated to the heap by the application. Sourced from /gc/heap/allocs:bytes. | prometheus |
go_gc_heap_allocs_objects_total | counter | Cumulative 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_bytes | histogram | Distribution 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_total | counter | Cumulative sum of heap memory freed by the garbage collector. Sourced from /gc/heap/frees:bytes. | prometheus |
go_gc_heap_frees_objects_total | counter | Cumulative 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_bytes | gauge | Heap size target for the end of the GC cycle. Sourced from /gc/heap/goal:bytes. | prometheus |
go_gc_heap_live_bytes | gauge | Heap memory occupied by live objects that were marked by the previous GC. Sourced from /gc/heap/live:bytes. | prometheus |
go_gc_heap_objects_objects | gauge | Number of objects, live or unswept, occupying heap memory. Sourced from /gc/heap/objects:objects. | prometheus |
go_gc_heap_tiny_allocs_objects_total | counter | Count 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_cycle | gauge | GC 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_seconds | histogram | Deprecated. Prefer the identical /sched/pauses/total/gc:seconds. Sourced from /gc/pauses:seconds. | prometheus |
go_gc_scan_globals_bytes | gauge | The total amount of global variable space that is scannable. Sourced from /gc/scan/globals:bytes. | prometheus |
go_gc_scan_heap_bytes | gauge | The total amount of heap space that is scannable. Sourced from /gc/scan/heap:bytes. | prometheus |
go_gc_scan_stack_bytes | gauge | The number of bytes of stack that were scanned last GC cycle. Sourced from /gc/scan/stack:bytes. | prometheus |
go_gc_scan_total_bytes | gauge | The 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_bytes | gauge | The stack size of new goroutines. Sourced from /gc/stack/starting-size:bytes. | prometheus |
go_goroutines | gauge | Number of goroutines that currently exist. | prometheus |
go_info | gauge | Information about the Go environment. | prometheus |
go_memstats_alloc_bytes | gauge | Number of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes. | prometheus |
go_memstats_alloc_bytes_total | counter | Total number of bytes allocated in heap until now, even if released already. Equals to /gc/heap/allocs:bytes. | prometheus |
go_memstats_buck_hash_sys_bytes | gauge | Number of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes. | prometheus |
go_memstats_frees_total | counter | Total number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects. | prometheus |
go_memstats_gc_sys_bytes | gauge | Number of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes. | prometheus |
go_memstats_heap_alloc_bytes | gauge | Number 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_bytes | gauge | Number of heap bytes waiting to be used. Equals to /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes. | prometheus |
go_memstats_heap_inuse_bytes | gauge | Number of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytes | prometheus |
go_memstats_heap_objects | gauge | Number of currently allocated objects. Equals to /gc/heap/objects:objects. | prometheus |
go_memstats_heap_released_bytes | gauge | Number of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes. | prometheus |
go_memstats_heap_sys_bytes | gauge | 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. | prometheus |
go_memstats_last_gc_time_seconds | gauge | Number of seconds since 1970 of last garbage collection. | prometheus |
go_memstats_mallocs_total | counter | 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. | prometheus |
go_memstats_mcache_inuse_bytes | gauge | Number of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes. | prometheus |
go_memstats_mcache_sys_bytes | gauge | Number 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_bytes | gauge | Number of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes. | prometheus |
go_memstats_mspan_sys_bytes | gauge | Number 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_bytes | gauge | Number of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes. | prometheus |
go_memstats_other_sys_bytes | gauge | Number of bytes used for other system allocations. Equals to /memory/classes/other:bytes. | prometheus |
go_memstats_stack_inuse_bytes | gauge | Number of bytes obtained from system for stack allocator in non-CGO environments. Equals to /memory/classes/heap/stacks:bytes. | prometheus |
go_memstats_stack_sys_bytes | gauge | Number of bytes obtained from system for stack allocator. Equals to /memory/classes/heap/stacks:bytes + /memory/classes/os-stacks:bytes. | prometheus |
go_memstats_sys_bytes | gauge | Number of bytes obtained from system. Equals to /memory/classes/total:byte. | prometheus |
go_sched_gomaxprocs_threads | gauge | 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. | prometheus |
go_sched_goroutines_created_goroutines_total | counter | Count of goroutines created since program start. Sourced from /sched/goroutines-created:goroutines. | prometheus |
go_sched_goroutines_goroutines | gauge | Count of live goroutines. Sourced from /sched/goroutines:goroutines. | prometheus |
go_sched_goroutines_not_in_go_goroutines | gauge | Approximate 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_goroutines | gauge | Approximate 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_goroutines | gauge | Approximate 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_goroutines | gauge | Approximate 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_seconds | histogram | Distribution 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_seconds | histogram | Distribution 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_seconds | histogram | Distribution 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_seconds | histogram | Distribution 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_seconds | histogram | Distribution 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_threads | gauge | The 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_total | counter | Approximate 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_threads | gauge | Number of OS threads created. | prometheus |
net_conntrack_dialer_conn_attempted_total | counter | Total number of connections attempted by the given dialer a given name. | prometheus |
net_conntrack_dialer_conn_closed_total | counter | Total number of connections closed which originated from the dialer of a given name. | prometheus |
net_conntrack_dialer_conn_established_total | counter | Total number of connections successfully established by the given dialer a given name. | prometheus |
net_conntrack_dialer_conn_failed_total | counter | Total number of connections failed to dial by the dialer a given name. | prometheus |
net_conntrack_listener_conn_accepted_total | counter | Total number of connections opened to the listener of a given name. | prometheus |
net_conntrack_listener_conn_closed_total | counter | Total number of connections closed that were made to the listener of a given name. | prometheus |
process_cpu_seconds_total | counter | Total user and system CPU time spent in seconds. | prometheus |
process_max_fds | gauge | Maximum number of open file descriptors. | prometheus |
process_network_receive_bytes_total | counter | Number of bytes received by the process over the network. | prometheus |
process_network_transmit_bytes_total | counter | Number of bytes sent by the process over the network. | prometheus |
process_open_fds | gauge | Number of open file descriptors. | prometheus |
process_resident_memory_bytes | gauge | Resident memory size in bytes. | prometheus |
process_start_time_seconds | gauge | Start time of the process since unix epoch in seconds. | prometheus |
process_virtual_memory_bytes | gauge | Virtual memory size in bytes. | prometheus |
process_virtual_memory_max_bytes | gauge | Maximum amount of virtual memory available in bytes. | prometheus |
prometheus_api_notification_active_subscribers | gauge | The current number of active notification subscribers. | prometheus |
prometheus_api_notification_updates_dropped_total | counter | Total number of notification updates dropped. | prometheus |
prometheus_api_notification_updates_sent_total | counter | Total number of notification updates sent. | prometheus |
prometheus_build_info | gauge | A 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_seconds | gauge | Timestamp of the last successful configuration reload. | prometheus |
prometheus_config_last_reload_successful | gauge | Whether the last configuration reload attempt was successful. | prometheus |
prometheus_engine_queries | gauge | The current number of queries being executed or waiting. | prometheus |
prometheus_engine_queries_concurrent_max | gauge | The max number of concurrent queries. | prometheus |
prometheus_engine_query_duration_histogram_seconds | histogram | The duration of various parts of PromQL query execution. | prometheus |
prometheus_engine_query_duration_seconds | summary | Query timings | prometheus |
prometheus_engine_query_log_enabled | gauge | State of the query log. | prometheus |
prometheus_engine_query_log_failures_total | counter | The number of query log failures. | prometheus |
prometheus_engine_query_samples_read_total | counter | The total number of samples read by all queries (only new points per step for range-vector). | prometheus |
prometheus_engine_query_samples_total | counter | The total number of samples loaded by all queries (full window per step for range-vector). | prometheus |
prometheus_http_request_duration_seconds | histogram | Histogram of latencies for HTTP requests. | prometheus |
prometheus_http_requests_total | counter | Counter of HTTP requests. | prometheus |
prometheus_http_response_size_bytes | histogram | Histogram of response size for HTTP requests. | prometheus |
prometheus_notifications_alertmanagers_discovered | gauge | The number of alertmanagers discovered and active. | prometheus |
prometheus_notifications_queue_capacity | gauge | The capacity of the alert notifications queue. | prometheus |
prometheus_ready | gauge | Whether Prometheus startup was fully completed and the server is ready for normal operation. | prometheus |
prometheus_remote_read_handler_queries | gauge | The current number of remote read queries that are either in execution or queued on the handler. | prometheus |
prometheus_remote_storage_exemplars_in_total | counter | Exemplars 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_total | prometheus |
prometheus_remote_storage_highest_timestamp_in_seconds | gauge | Highest 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_total | counter | HistogramSamples 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_total | prometheus |
prometheus_remote_storage_samples_in_total | counter | Samples 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_total | prometheus |
prometheus_remote_storage_string_interner_zero_reference_releases_total | counter | The number of times release has been called for strings that are not interned. | prometheus |
prometheus_rule_evaluation_duration_histogram_seconds | histogram | The duration for a rule to execute. | prometheus |
prometheus_rule_evaluation_duration_seconds | summary | The duration for a rule to execute. | prometheus |
prometheus_rule_evaluation_failures_total | counter | The total number of rule evaluation failures. | prometheus |
prometheus_rule_evaluations_total | counter | The total number of rule evaluations. | prometheus |
prometheus_rule_group_duration_histogram_seconds | histogram | The duration of rule group evaluations. | prometheus |
prometheus_rule_group_duration_seconds | summary | The duration of rule group evaluations. | prometheus |
prometheus_rule_group_interval_seconds | gauge | The interval of a rule group. | prometheus |
prometheus_rule_group_iterations_missed_total | counter | The total number of rule group evaluations missed due to slow rule group evaluation. | prometheus |
prometheus_rule_group_iterations_total | counter | The total number of scheduled rule group evaluations, whether executed or missed. | prometheus |
prometheus_rule_group_last_duration_seconds | gauge | The duration of the last rule group evaluation. | prometheus |
prometheus_rule_group_last_evaluation_samples | gauge | The number of samples returned during the last rule group evaluation. | prometheus |
prometheus_rule_group_last_evaluation_timestamp_seconds | gauge | The timestamp of the last rule group evaluation in seconds. | prometheus |
prometheus_rule_group_last_rule_duration_sum_seconds | gauge | The 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_rules | gauge | The number of rules. | prometheus |
prometheus_sd_azure_cache_hit_total | counter | Number of cache hit during refresh. | prometheus |
prometheus_sd_azure_failures_total | counter | Number of Azure service discovery refresh failures. | prometheus |
prometheus_sd_consul_rpc_duration_seconds | summary | The duration of a Consul RPC call in seconds. | prometheus |
prometheus_sd_consul_rpc_failures_total | counter | The number of Consul RPC call failures. | prometheus |
prometheus_sd_discovered_targets | gauge | Current number of discovered targets. | prometheus |
prometheus_sd_dns_lookup_failures_total | counter | The number of DNS-SD lookup failures. | prometheus |
prometheus_sd_dns_lookups_total | counter | The number of DNS-SD lookups. | prometheus |
prometheus_sd_failed_configs | gauge | Current number of service discovery configurations that failed to load. | prometheus |
prometheus_sd_file_read_errors_total | counter | The number of File-SD read errors. | prometheus |
prometheus_sd_file_scan_duration_seconds | summary | The duration of the File-SD scan in seconds. | prometheus |
prometheus_sd_file_watcher_errors_total | counter | The number of File-SD errors caused by filesystem watch failures. | prometheus |
prometheus_sd_http_failures_total | counter | Number of HTTP service discovery refresh failures. | prometheus |
prometheus_sd_kubernetes_events_total | counter | The number of Kubernetes events handled. | prometheus |
prometheus_sd_kubernetes_failures_total | counter | The number of failed WATCH/LIST requests. | prometheus |
prometheus_sd_kuma_fetch_duration_seconds | summary | The duration of a Kuma MADS fetch call. | prometheus |
prometheus_sd_kuma_fetch_failures_total | counter | The number of Kuma MADS fetch call failures. | prometheus |
prometheus_sd_kuma_fetch_skipped_updates_total | counter | The number of Kuma MADS fetch calls that result in no updates to the targets. | prometheus |
prometheus_sd_last_update_timestamp_seconds | gauge | Timestamp of the last update sent to the SD consumers. | prometheus |
prometheus_sd_linode_failures_total | counter | Number of Linode service discovery refresh failures. | prometheus |
prometheus_sd_nomad_failures_total | counter | Number of nomad service discovery refresh failures. | prometheus |
prometheus_sd_received_updates_total | counter | Total number of update events received from the SD providers. | prometheus |
prometheus_sd_updates_delayed_total | counter | Total number of update events that couldn't be sent immediately. | prometheus |
prometheus_sd_updates_total | counter | Total number of update events sent to the SD consumers. | prometheus |
prometheus_target_interval_length_histogram_seconds | histogram | Actual intervals between scrapes. | prometheus |
prometheus_target_interval_length_seconds | summary | Actual intervals between scrapes. | prometheus |
prometheus_target_metadata_cache_bytes | gauge | The number of bytes that are currently used for storing metric metadata in the cache | prometheus |
prometheus_target_metadata_cache_entries | gauge | Total number of metric metadata entries in the cache | prometheus |
prometheus_target_scrape_duration_seconds | histogram | Total duration of the scrape from start to commit completion in seconds. | prometheus |
prometheus_target_scrape_pool_exceeded_label_limits_total | counter | Total number of times scrape pools hit the label limits, during sync or config reload. | prometheus |
prometheus_target_scrape_pool_exceeded_target_limit_total | counter | Total number of times scrape pools hit the target limit, during sync or config reload. | prometheus |
prometheus_target_scrape_pool_reloads_failed_total | counter | Total number of failed scrape pool reloads. | prometheus |
prometheus_target_scrape_pool_reloads_total | counter | Total number of scrape pool reloads. | prometheus |
prometheus_target_scrape_pool_symboltable_items | gauge | Current number of symbols in table for this scrape pool. | prometheus |
prometheus_target_scrape_pool_sync_total | counter | Total number of syncs that were executed on a scrape pool. | prometheus |
prometheus_target_scrape_pool_target_limit | gauge | Maximum number of targets allowed in this scrape pool. | prometheus |
prometheus_target_scrape_pool_targets | gauge | Current number of targets in this scrape pool. | prometheus |
prometheus_target_scrape_pools_failed_total | counter | Total number of scrape pool creations that failed. | prometheus |
prometheus_target_scrape_pools_total | counter | Total number of scrape pool creation attempts. | prometheus |
prometheus_target_scrapes_cache_flush_forced_total | counter | How many times a scrape cache was flushed due to getting big while scrapes are failing. | prometheus |
prometheus_target_scrapes_exceeded_body_size_limit_total | counter | Total number of scrapes that hit the body size limit | prometheus |
prometheus_target_scrapes_exceeded_native_histogram_bucket_limit_total | counter | Total number of scrapes that hit the native histogram bucket limit and were rejected. | prometheus |
prometheus_target_scrapes_exceeded_sample_limit_total | counter | Total number of scrapes that hit the sample limit and were rejected. | prometheus |
prometheus_target_scrapes_exemplar_out_of_order_total | counter | Total number of exemplar rejected due to not being out of the expected order. | prometheus |
prometheus_target_scrapes_sample_duplicate_timestamp_total | counter | Total number of samples rejected due to duplicate timestamps but different values. | prometheus |
prometheus_target_scrapes_sample_out_of_bounds_total | counter | Total number of samples rejected due to timestamp falling outside of the time bounds. | prometheus |
prometheus_target_scrapes_sample_out_of_order_total | counter | Total number of samples rejected due to not being out of the expected order. | prometheus |
prometheus_target_sync_failed_total | counter | Total number of target sync failures. | prometheus |
prometheus_target_sync_length_histogram_seconds | histogram | Actual interval to sync the scrape pool. | prometheus |
prometheus_target_sync_length_seconds | summary | Actual interval to sync the scrape pool. | prometheus |
prometheus_template_text_expansion_failures_total | counter | The total number of template text expansion failures. | prometheus |
prometheus_template_text_expansions_total | counter | The total number of template text expansions. | prometheus |
prometheus_treecache_watcher_goroutines | gauge | The current number of watcher goroutines. | prometheus |
prometheus_treecache_zookeeper_failures_total | counter | The total number of ZooKeeper failures. | prometheus |
prometheus_tsdb_blocks_loaded | gauge | Number of currently loaded data blocks | prometheus |
prometheus_tsdb_checkpoint_creations_failed_total | counter | Total number of checkpoint creations that failed. | prometheus |
prometheus_tsdb_checkpoint_creations_total | counter | Total number of checkpoint creations attempted. | prometheus |
prometheus_tsdb_checkpoint_deletions_failed_total | counter | Total number of checkpoint deletions that failed. | prometheus |
prometheus_tsdb_checkpoint_deletions_total | counter | Total number of checkpoint deletions attempted. | prometheus |
prometheus_tsdb_clean_start | gauge | -1: lockfile is disabled. 0: a lockfile from a previous execution was replaced. 1: lockfile creation was clean | prometheus |
prometheus_tsdb_compaction_chunk_range_seconds | histogram | Final time range of chunks on their first compaction | prometheus |
prometheus_tsdb_compaction_chunk_samples | histogram | Final number of samples on their first compaction | prometheus |
prometheus_tsdb_compaction_chunk_size_bytes | histogram | Final size of chunks on their first compaction | prometheus |
prometheus_tsdb_compaction_duration_seconds | histogram | Duration of compaction runs | prometheus |
prometheus_tsdb_compaction_populating_block | gauge | Set to 1 when a block is currently being written to the disk. | prometheus |
prometheus_tsdb_compactions_failed_total | counter | Total number of compactions that failed for the partition. | prometheus |
prometheus_tsdb_compactions_skipped_total | counter | Total number of skipped compactions due to disabled auto compaction. | prometheus |
prometheus_tsdb_compactions_total | counter | Total number of compactions that were executed for the partition. | prometheus |
prometheus_tsdb_compactions_triggered_total | counter | Total number of triggered compactions for the partition. | prometheus |
prometheus_tsdb_data_replay_duration_seconds | gauge | Time taken to replay the data on disk. | prometheus |
prometheus_tsdb_exemplar_exemplars_appended_total | counter | Total number of appended exemplars. | prometheus |
prometheus_tsdb_exemplar_exemplars_in_storage | gauge | Number of exemplars currently in circular storage. | prometheus |
prometheus_tsdb_exemplar_last_exemplars_timestamp_seconds | gauge | The 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_exemplars | gauge | Total number of exemplars the exemplar storage can store, resizeable. | prometheus |
prometheus_tsdb_exemplar_out_of_order_exemplars_total | counter | Total number of out of order exemplar ingestion failed attempts. | prometheus |
prometheus_tsdb_exemplar_series_with_exemplars_in_storage | gauge | Number of series with exemplars currently in circular storage. | prometheus |
prometheus_tsdb_head_active_appenders | gauge | Number of currently active appender transactions | prometheus |
prometheus_tsdb_head_chunks | gauge | Total number of chunks in the head block. | prometheus |
prometheus_tsdb_head_chunks_created_total | counter | Total number of chunks created in the head | prometheus |
prometheus_tsdb_head_chunks_removed_total | counter | Total number of chunks removed in the head | prometheus |
prometheus_tsdb_head_chunks_storage_size_bytes | gauge | Size of the chunks_head directory. | prometheus |
prometheus_tsdb_head_gc_duration_seconds | summary | Runtime of garbage collection in the head block. | prometheus |
prometheus_tsdb_head_max_time | gauge | Maximum timestamp of the head block. The unit is decided by the library consumer. | prometheus |
prometheus_tsdb_head_max_time_seconds | gauge | Maximum timestamp of the head block. | prometheus |
prometheus_tsdb_head_min_time | gauge | Minimum time bound of the head block. The unit is decided by the library consumer. | prometheus |
prometheus_tsdb_head_min_time_seconds | gauge | Minimum time bound of the head block. | prometheus |
prometheus_tsdb_head_out_of_order_samples_appended_total | counter | Total number of appended out of order samples. | prometheus |
prometheus_tsdb_head_samples_appended_total | counter | Total number of appended samples. | prometheus |
prometheus_tsdb_head_series | gauge | Total number of series in the head block. | prometheus |
prometheus_tsdb_head_series_created_total | counter | Total number of series created in the head | prometheus |
prometheus_tsdb_head_series_not_found_total | counter | Total number of requests for series that were not found. | prometheus |
prometheus_tsdb_head_series_removed_total | counter | Total number of series removed in the head | prometheus |
prometheus_tsdb_head_stale_series | gauge | Total number of stale series in the head block. | prometheus |
prometheus_tsdb_head_truncations_failed_total | counter | Total number of head truncations that failed. | prometheus |
prometheus_tsdb_head_truncations_total | counter | Total number of head truncations attempted. | prometheus |
prometheus_tsdb_isolation_high_watermark | gauge | The highest TSDB append ID that has been given out. | prometheus |
prometheus_tsdb_isolation_low_watermark | gauge | The lowest TSDB append ID that is still referenced. | prometheus |
prometheus_tsdb_lowest_timestamp | gauge | Lowest timestamp value stored in the database. The unit is decided by the library consumer. | prometheus |
prometheus_tsdb_lowest_timestamp_seconds | gauge | Lowest timestamp value stored in the database. | prometheus |
prometheus_tsdb_mmap_chunk_corruptions_total | counter | Total number of memory-mapped chunk corruptions. | prometheus |
prometheus_tsdb_mmap_chunks_total | counter | Total number of chunks that were memory-mapped. | prometheus |
prometheus_tsdb_out_of_bound_samples_total | counter | Total number of out of bound samples ingestion failed attempts with out of order support disabled. | prometheus |
prometheus_tsdb_out_of_order_samples_total | counter | Total number of out of order samples ingestion failed attempts due to out of order being disabled. | prometheus |
prometheus_tsdb_reloads_failures_total | counter | Number of times the database failed to reloadBlocks block data from disk. | prometheus |
prometheus_tsdb_reloads_total | counter | Number of times the database reloaded block data from disk. | prometheus |
prometheus_tsdb_retention_limit_bytes | gauge | Max number of bytes to be retained in the tsdb blocks, configured 0 means disabled | prometheus |
prometheus_tsdb_retention_limit_percentage | gauge | Max percentage of total storage space to be retained in the tsdb blocks, configured 0 means disabled | prometheus |
prometheus_tsdb_retention_limit_seconds | gauge | How long to retain samples in storage. | prometheus |
prometheus_tsdb_sample_ooo_delta | histogram | Delta 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_total | counter | The number of times that blocks were deleted because the maximum number of bytes was exceeded. | prometheus |
prometheus_tsdb_snapshot_replay_error_total | counter | Total number snapshot replays that failed. | prometheus |
prometheus_tsdb_stale_series_compaction_duration_seconds | histogram | Duration of stale series compaction runs. | prometheus |
prometheus_tsdb_stale_series_compactions_failed_total | counter | Total number of stale series compactions that failed. | prometheus |
prometheus_tsdb_stale_series_compactions_triggered_total | counter | Total number of triggered stale series compactions. | prometheus |
prometheus_tsdb_storage_blocks_bytes | gauge | The number of bytes that are currently used for local storage by all blocks. | prometheus |
prometheus_tsdb_symbol_table_size_bytes | gauge | Size of symbol table in memory for loaded blocks | prometheus |
prometheus_tsdb_time_retentions_total | counter | The number of times that blocks were deleted because the maximum time limit was exceeded. | prometheus |
prometheus_tsdb_tombstone_cleanup_seconds | histogram | The time taken to recompact blocks to remove tombstones. | prometheus |
prometheus_tsdb_too_old_samples_total | counter | Total 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_total | counter | Total number of compactions done on overlapping blocks. | prometheus |
prometheus_tsdb_wal_completed_pages_total | counter | Total number of completed pages. | prometheus |
prometheus_tsdb_wal_corruptions_total | counter | Total number of WAL corruptions. | prometheus |
prometheus_tsdb_wal_fsync_duration_seconds | summary | Duration of write log fsync. | prometheus |
prometheus_tsdb_wal_page_flushes_total | counter | Total number of page flushes. | prometheus |
prometheus_tsdb_wal_record_bytes_saved_total | counter | Total 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_total | counter | Total number of record parts written before flushing. | prometheus |
prometheus_tsdb_wal_record_parts_bytes_written_total | counter | Total number of record part bytes written before flushing, including CRC and compression headers. | prometheus |
prometheus_tsdb_wal_segment_current | gauge | Write log segment index that TSDB is currently writing to. | prometheus |
prometheus_tsdb_wal_storage_size_bytes | gauge | Size of the write log directory. | prometheus |
prometheus_tsdb_wal_truncate_duration_seconds | summary | Duration of WAL truncation. | prometheus |
prometheus_tsdb_wal_truncations_failed_total | counter | Total number of write log truncations that failed. | prometheus |
prometheus_tsdb_wal_truncations_total | counter | Total number of write log truncations attempted. | prometheus |
prometheus_tsdb_wal_writes_failed_total | counter | Total number of write log writes that failed. | prometheus |
prometheus_web_federation_errors_total | counter | Total number of errors that occurred while sending federation responses. | prometheus |
prometheus_web_federation_warnings_total | counter | Total number of warnings that occurred while sending federation responses. | prometheus |
promhttp_metric_handler_requests_in_flight | gauge | Current number of scrapes being served. | prometheus |
promhttp_metric_handler_requests_total | counter | Total number of scrapes by HTTP status code. | prometheus |
nvme_exporter (41 metrics) | |||
go_gc_duration_seconds | summary | A summary of the wall-time pause (stop-the-world) duration in garbage collection cycles. | nvme_exporter |
go_gc_gogc_percent | gauge | 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. | nvme_exporter |
go_gc_gomemlimit_bytes | gauge | 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. | nvme_exporter |
go_goroutines | gauge | Number of goroutines that currently exist. | nvme_exporter |
go_info | gauge | Information about the Go environment. | nvme_exporter |
go_memstats_alloc_bytes | gauge | Number of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes. | nvme_exporter |
go_memstats_alloc_bytes_total | counter | Total 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_bytes | gauge | Number of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes. | nvme_exporter |
go_memstats_frees_total | counter | Total number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects. | nvme_exporter |
go_memstats_gc_sys_bytes | gauge | Number of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes. | nvme_exporter |
go_memstats_heap_alloc_bytes | gauge | Number 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_bytes | gauge | Number 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_bytes | gauge | Number of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytes | nvme_exporter |
go_memstats_heap_objects | gauge | Number of currently allocated objects. Equals to /gc/heap/objects:objects. | nvme_exporter |
go_memstats_heap_released_bytes | gauge | Number of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes. | nvme_exporter |
go_memstats_heap_sys_bytes | gauge | 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. | nvme_exporter |
go_memstats_last_gc_time_seconds | gauge | Number of seconds since 1970 of last garbage collection. | nvme_exporter |
go_memstats_mallocs_total | counter | 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. | nvme_exporter |
go_memstats_mcache_inuse_bytes | gauge | Number of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes. | nvme_exporter |
go_memstats_mcache_sys_bytes | gauge | Number 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_bytes | gauge | Number of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes. | nvme_exporter |
go_memstats_mspan_sys_bytes | gauge | Number 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_bytes | gauge | Number of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes. | nvme_exporter |
go_memstats_other_sys_bytes | gauge | Number of bytes used for other system allocations. Equals to /memory/classes/other:bytes. | nvme_exporter |
go_memstats_stack_inuse_bytes | gauge | Number 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_bytes | gauge | Number 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_bytes | gauge | Number of bytes obtained from system. Equals to /memory/classes/total:byte. | nvme_exporter |
go_sched_gomaxprocs_threads | gauge | 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. | nvme_exporter |
go_threads | gauge | Number of OS threads created. | nvme_exporter |
nvme_exporter_scrape_failures_total | counter | Total number of scrape failures due to fatal validation errors (not root or nvme-cli not found) | nvme_exporter |
process_cpu_seconds_total | counter | Total user and system CPU time spent in seconds. | nvme_exporter |
process_max_fds | gauge | Maximum number of open file descriptors. | nvme_exporter |
process_network_receive_bytes_total | counter | Number of bytes received by the process over the network. | nvme_exporter |
process_network_transmit_bytes_total | counter | Number of bytes sent by the process over the network. | nvme_exporter |
process_open_fds | gauge | Number of open file descriptors. | nvme_exporter |
process_resident_memory_bytes | gauge | Resident memory size in bytes. | nvme_exporter |
process_start_time_seconds | gauge | Start time of the process since unix epoch in seconds. | nvme_exporter |
process_virtual_memory_bytes | gauge | Virtual memory size in bytes. | nvme_exporter |
process_virtual_memory_max_bytes | gauge | Maximum amount of virtual memory available in bytes. | nvme_exporter |
promhttp_metric_handler_requests_in_flight | gauge | Current number of scrapes being served. | nvme_exporter |
promhttp_metric_handler_requests_total | counter | Total number of scrapes by HTTP status code. | nvme_exporter |
vllm (16 metrics) | |||
process_cpu_seconds_total | counter | Total user and system CPU time spent in seconds. | vllm |
process_max_fds | gauge | Maximum number of open file descriptors. | vllm |
process_open_fds | gauge | Number of open file descriptors. | vllm |
process_resident_memory_bytes | gauge | Resident memory size in bytes. | vllm |
process_start_time_seconds | gauge | Start time of the process since unix epoch in seconds. | vllm |
process_virtual_memory_bytes | gauge | Virtual memory size in bytes. | vllm |
python_gc_collections_total | counter | Number of times this generation was collected | vllm |
python_gc_objects_collected_total | counter | Objects collected during gc | vllm |
python_gc_objects_uncollectable_total | counter | Uncollectable objects found during GC | vllm |
python_info | gauge | Python platform information | vllm |
vllm_generation_tokens_created | gauge | Total number of generation tokens produced | vllm |
vllm_generation_tokens_total | counter | Total number of generation tokens produced | vllm |
vllm_request_duration_seconds | histogram | Completion request latency in seconds | vllm |
vllm_request_duration_seconds_created | gauge | Completion request latency in seconds | vllm |
vllm_requests_created | gauge | Total number of completions requests | vllm |
vllm_requests_total | counter | Total number of completions requests | vllm |
node_exporter (144 metrics) | |||
go_gc_duration_seconds | summary | A summary of the pause duration of garbage collection cycles. | node_exporter |
go_goroutines | gauge | Number of goroutines that currently exist. | node_exporter |
go_info | gauge | Information about the Go environment. | node_exporter |
go_memstats_alloc_bytes | gauge | Number of bytes allocated and still in use. | node_exporter |
go_memstats_alloc_bytes_total | counter | Total number of bytes allocated, even if freed. | node_exporter |
go_memstats_buck_hash_sys_bytes | gauge | Number of bytes used by the profiling bucket hash table. | node_exporter |
go_memstats_frees_total | counter | Total number of frees. | node_exporter |
go_memstats_gc_sys_bytes | gauge | Number of bytes used for garbage collection system metadata. | node_exporter |
go_memstats_heap_alloc_bytes | gauge | Number of heap bytes allocated and still in use. | node_exporter |
go_memstats_heap_idle_bytes | gauge | Number of heap bytes waiting to be used. | node_exporter |
go_memstats_heap_inuse_bytes | gauge | Number of heap bytes that are in use. | node_exporter |
go_memstats_heap_objects | gauge | Number of allocated objects. | node_exporter |
go_memstats_heap_released_bytes | gauge | Number of heap bytes released to OS. | node_exporter |
go_memstats_heap_sys_bytes | gauge | Number of heap bytes obtained from system. | node_exporter |
go_memstats_last_gc_time_seconds | gauge | Number of seconds since 1970 of last garbage collection. | node_exporter |
go_memstats_lookups_total | counter | Total number of pointer lookups. | node_exporter |
go_memstats_mallocs_total | counter | Total number of mallocs. | node_exporter |
go_memstats_mcache_inuse_bytes | gauge | Number of bytes in use by mcache structures. | node_exporter |
go_memstats_mcache_sys_bytes | gauge | Number of bytes used for mcache structures obtained from system. | node_exporter |
go_memstats_mspan_inuse_bytes | gauge | Number of bytes in use by mspan structures. | node_exporter |
go_memstats_mspan_sys_bytes | gauge | Number of bytes used for mspan structures obtained from system. | node_exporter |
go_memstats_next_gc_bytes | gauge | Number of heap bytes when next garbage collection will take place. | node_exporter |
go_memstats_other_sys_bytes | gauge | Number of bytes used for other system allocations. | node_exporter |
go_memstats_stack_inuse_bytes | gauge | Number of bytes in use by the stack allocator. | node_exporter |
go_memstats_stack_sys_bytes | gauge | Number of bytes obtained from system for stack allocator. | node_exporter |
go_memstats_sys_bytes | gauge | Number of bytes obtained from system. | node_exporter |
go_threads | gauge | Number of OS threads created. | node_exporter |
node_cpu_guest_seconds_total | counter | Seconds the CPUs spent in guests (VMs) for each mode. | node_exporter |
node_cpu_seconds_total | counter | Seconds the CPUs spent in each mode. | node_exporter |
node_disk_device_mapper_info | gauge | Info about disk device mapper. | node_exporter |
node_disk_discard_time_seconds_total | counter | This is the total number of seconds spent by all discards. | node_exporter |
node_disk_discarded_sectors_total | counter | The total number of sectors discarded successfully. | node_exporter |
node_disk_discards_completed_total | counter | The total number of discards completed successfully. | node_exporter |
node_disk_discards_merged_total | counter | The total number of discards merged. | node_exporter |
node_disk_filesystem_info | gauge | Info about disk filesystem. | node_exporter |
node_disk_flush_requests_time_seconds_total | counter | This is the total number of seconds spent by all flush requests. | node_exporter |
node_disk_flush_requests_total | counter | The total number of flush requests completed successfully | node_exporter |
node_disk_info | gauge | Info of /sys/block/<block_device>. | node_exporter |
node_disk_io_now | gauge | The number of I/Os currently in progress. | node_exporter |
node_disk_io_time_seconds_total | counter | Total seconds spent doing I/Os. | node_exporter |
node_disk_io_time_weighted_seconds_total | counter | The weighted # of seconds spent doing I/Os. | node_exporter |
node_disk_read_bytes_total | counter | The total number of bytes read successfully. | node_exporter |
node_disk_read_time_seconds_total | counter | The total number of seconds spent by all reads. | node_exporter |
node_disk_reads_completed_total | counter | The total number of reads completed successfully. | node_exporter |
node_disk_reads_merged_total | counter | The total number of reads merged. | node_exporter |
node_disk_write_time_seconds_total | counter | This is the total number of seconds spent by all writes. | node_exporter |
node_disk_writes_completed_total | counter | The total number of writes completed successfully. | node_exporter |
node_disk_writes_merged_total | counter | The number of writes merged. | node_exporter |
node_disk_written_bytes_total | counter | The total number of bytes written successfully. | node_exporter |
node_exporter_build_info | gauge | 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. | node_exporter |
node_filesystem_avail_bytes | gauge | Filesystem space available to non-root users in bytes. | node_exporter |
node_filesystem_device_error | gauge | Whether an error occurred while getting statistics for the given device. | node_exporter |
node_filesystem_files | gauge | Filesystem total file nodes. | node_exporter |
node_filesystem_files_free | gauge | Filesystem total free file nodes. | node_exporter |
node_filesystem_free_bytes | gauge | Filesystem free space in bytes. | node_exporter |
node_filesystem_readonly | gauge | Filesystem read-only status. | node_exporter |
node_filesystem_size_bytes | gauge | Filesystem size in bytes. | node_exporter |
node_load1 | gauge | 1m load average. | node_exporter |
node_load15 | gauge | 15m load average. | node_exporter |
node_load5 | gauge | 5m load average. | node_exporter |
node_memory_Active_anon_bytes | gauge | Memory information field Active_anon_bytes. | node_exporter |
node_memory_Active_bytes | gauge | Memory information field Active_bytes. | node_exporter |
node_memory_Active_file_bytes | gauge | Memory information field Active_file_bytes. | node_exporter |
node_memory_AnonHugePages_bytes | gauge | Memory information field AnonHugePages_bytes. | node_exporter |
node_memory_AnonPages_bytes | gauge | Memory information field AnonPages_bytes. | node_exporter |
node_memory_Bounce_bytes | gauge | Memory information field Bounce_bytes. | node_exporter |
node_memory_Buffers_bytes | gauge | Memory information field Buffers_bytes. | node_exporter |
node_memory_Cached_bytes | gauge | Memory information field Cached_bytes. | node_exporter |
node_memory_CommitLimit_bytes | gauge | Memory information field CommitLimit_bytes. | node_exporter |
node_memory_Committed_AS_bytes | gauge | Memory information field Committed_AS_bytes. | node_exporter |
node_memory_DirectMap1G_bytes | gauge | Memory information field DirectMap1G_bytes. | node_exporter |
node_memory_DirectMap2M_bytes | gauge | Memory information field DirectMap2M_bytes. | node_exporter |
node_memory_DirectMap4k_bytes | gauge | Memory information field DirectMap4k_bytes. | node_exporter |
node_memory_Dirty_bytes | gauge | Memory information field Dirty_bytes. | node_exporter |
node_memory_FileHugePages_bytes | gauge | Memory information field FileHugePages_bytes. | node_exporter |
node_memory_FilePmdMapped_bytes | gauge | Memory information field FilePmdMapped_bytes. | node_exporter |
node_memory_HardwareCorrupted_bytes | gauge | Memory information field HardwareCorrupted_bytes. | node_exporter |
node_memory_HugePages_Free | gauge | Memory information field HugePages_Free. | node_exporter |
node_memory_HugePages_Rsvd | gauge | Memory information field HugePages_Rsvd. | node_exporter |
node_memory_HugePages_Surp | gauge | Memory information field HugePages_Surp. | node_exporter |
node_memory_HugePages_Total | gauge | Memory information field HugePages_Total. | node_exporter |
node_memory_Hugepagesize_bytes | gauge | Memory information field Hugepagesize_bytes. | node_exporter |
node_memory_Hugetlb_bytes | gauge | Memory information field Hugetlb_bytes. | node_exporter |
node_memory_Inactive_anon_bytes | gauge | Memory information field Inactive_anon_bytes. | node_exporter |
node_memory_Inactive_bytes | gauge | Memory information field Inactive_bytes. | node_exporter |
node_memory_Inactive_file_bytes | gauge | Memory information field Inactive_file_bytes. | node_exporter |
node_memory_KReclaimable_bytes | gauge | Memory information field KReclaimable_bytes. | node_exporter |
node_memory_KernelStack_bytes | gauge | Memory information field KernelStack_bytes. | node_exporter |
node_memory_Mapped_bytes | gauge | Memory information field Mapped_bytes. | node_exporter |
node_memory_MemAvailable_bytes | gauge | Memory information field MemAvailable_bytes. | node_exporter |
node_memory_MemFree_bytes | gauge | Memory information field MemFree_bytes. | node_exporter |
node_memory_MemTotal_bytes | gauge | Memory information field MemTotal_bytes. | node_exporter |
node_memory_Mlocked_bytes | gauge | Memory information field Mlocked_bytes. | node_exporter |
node_memory_NFS_Unstable_bytes | gauge | Memory information field NFS_Unstable_bytes. | node_exporter |
node_memory_PageTables_bytes | gauge | Memory information field PageTables_bytes. | node_exporter |
node_memory_Percpu_bytes | gauge | Memory information field Percpu_bytes. | node_exporter |
node_memory_SReclaimable_bytes | gauge | Memory information field SReclaimable_bytes. | node_exporter |
node_memory_SUnreclaim_bytes | gauge | Memory information field SUnreclaim_bytes. | node_exporter |
node_memory_SecPageTables_bytes | gauge | Memory information field SecPageTables_bytes. | node_exporter |
node_memory_ShmemHugePages_bytes | gauge | Memory information field ShmemHugePages_bytes. | node_exporter |
node_memory_ShmemPmdMapped_bytes | gauge | Memory information field ShmemPmdMapped_bytes. | node_exporter |
node_memory_Shmem_bytes | gauge | Memory information field Shmem_bytes. | node_exporter |
node_memory_Slab_bytes | gauge | Memory information field Slab_bytes. | node_exporter |
node_memory_SwapCached_bytes | gauge | Memory information field SwapCached_bytes. | node_exporter |
node_memory_SwapFree_bytes | gauge | Memory information field SwapFree_bytes. | node_exporter |
node_memory_SwapTotal_bytes | gauge | Memory information field SwapTotal_bytes. | node_exporter |
node_memory_Unaccepted_bytes | gauge | Memory information field Unaccepted_bytes. | node_exporter |
node_memory_Unevictable_bytes | gauge | Memory information field Unevictable_bytes. | node_exporter |
node_memory_VmallocChunk_bytes | gauge | Memory information field VmallocChunk_bytes. | node_exporter |
node_memory_VmallocTotal_bytes | gauge | Memory information field VmallocTotal_bytes. | node_exporter |
node_memory_VmallocUsed_bytes | gauge | Memory information field VmallocUsed_bytes. | node_exporter |
node_memory_WritebackTmp_bytes | gauge | Memory information field WritebackTmp_bytes. | node_exporter |
node_memory_Writeback_bytes | gauge | Memory information field Writeback_bytes. | node_exporter |
node_memory_Zswap_bytes | gauge | Memory information field Zswap_bytes. | node_exporter |
node_memory_Zswapped_bytes | gauge | Memory information field Zswapped_bytes. | node_exporter |
node_network_receive_bytes_total | counter | Network device statistic receive_bytes. | node_exporter |
node_network_receive_compressed_total | counter | Network device statistic receive_compressed. | node_exporter |
node_network_receive_drop_total | counter | Network device statistic receive_drop. | node_exporter |
node_network_receive_errs_total | counter | Network device statistic receive_errs. | node_exporter |
node_network_receive_fifo_total | counter | Network device statistic receive_fifo. | node_exporter |
node_network_receive_frame_total | counter | Network device statistic receive_frame. | node_exporter |
node_network_receive_multicast_total | counter | Network device statistic receive_multicast. | node_exporter |
node_network_receive_nohandler_total | counter | Network device statistic receive_nohandler. | node_exporter |
node_network_receive_packets_total | counter | Network device statistic receive_packets. | node_exporter |
node_network_transmit_bytes_total | counter | Network device statistic transmit_bytes. | node_exporter |
node_network_transmit_carrier_total | counter | Network device statistic transmit_carrier. | node_exporter |
node_network_transmit_colls_total | counter | Network device statistic transmit_colls. | node_exporter |
node_network_transmit_compressed_total | counter | Network device statistic transmit_compressed. | node_exporter |
node_network_transmit_drop_total | counter | Network device statistic transmit_drop. | node_exporter |
node_network_transmit_errs_total | counter | Network device statistic transmit_errs. | node_exporter |
node_network_transmit_fifo_total | counter | Network device statistic transmit_fifo. | node_exporter |
node_network_transmit_packets_total | counter | Network device statistic transmit_packets. | node_exporter |
node_scrape_collector_duration_seconds | gauge | node_exporter: Duration of a collector scrape. | node_exporter |
node_scrape_collector_success | gauge | node_exporter: Whether a collector succeeded. | node_exporter |
process_cpu_seconds_total | counter | Total user and system CPU time spent in seconds. | node_exporter |
process_max_fds | gauge | Maximum number of open file descriptors. | node_exporter |
process_open_fds | gauge | Number of open file descriptors. | node_exporter |
process_resident_memory_bytes | gauge | Resident memory size in bytes. | node_exporter |
process_start_time_seconds | gauge | Start time of the process since unix epoch in seconds. | node_exporter |
process_virtual_memory_bytes | gauge | Virtual memory size in bytes. | node_exporter |
process_virtual_memory_max_bytes | gauge | Maximum amount of virtual memory available in bytes. | node_exporter |
promhttp_metric_handler_errors_total | counter | Total number of internal errors encountered by the promhttp metric handler. | node_exporter |
promhttp_metric_handler_requests_in_flight | gauge | Current number of scrapes being served. | node_exporter |
promhttp_metric_handler_requests_total | counter | Total number of scrapes by HTTP status code. | node_exporter |
rdma_exporter (41 metrics) | |||
go_gc_duration_seconds | summary | A summary of the wall-time pause (stop-the-world) duration in garbage collection cycles. | rdma_exporter |
go_gc_gogc_percent | gauge | 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 | rdma_exporter |
go_gc_gomemlimit_bytes | gauge | 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 | rdma_exporter |
go_goroutines | gauge | Number of goroutines that currently exist. | rdma_exporter |
go_info | gauge | Information about the Go environment. | rdma_exporter |
go_memstats_alloc_bytes | gauge | Number of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes. | rdma_exporter |
go_memstats_alloc_bytes_total | counter | Total 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_bytes | gauge | Number of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes. | rdma_exporter |
go_memstats_frees_total | counter | Total number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects. | rdma_exporter |
go_memstats_gc_sys_bytes | gauge | Number of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes. | rdma_exporter |
go_memstats_heap_alloc_bytes | gauge | Number 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_bytes | gauge | Number 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_bytes | gauge | Number of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytes | rdma_exporter |
go_memstats_heap_objects | gauge | Number of currently allocated objects. Equals to /gc/heap/objects:objects. | rdma_exporter |
go_memstats_heap_released_bytes | gauge | Number of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes. | rdma_exporter |
go_memstats_heap_sys_bytes | gauge | 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. | rdma_exporter |
go_memstats_last_gc_time_seconds | gauge | Number of seconds since 1970 of last garbage collection. | rdma_exporter |
go_memstats_mallocs_total | counter | 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. | rdma_exporter |
go_memstats_mcache_inuse_bytes | gauge | Number of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes. | rdma_exporter |
go_memstats_mcache_sys_bytes | gauge | Number 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_bytes | gauge | Number of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes. | rdma_exporter |
go_memstats_mspan_sys_bytes | gauge | Number 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_bytes | gauge | Number of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes. | rdma_exporter |
go_memstats_other_sys_bytes | gauge | Number of bytes used for other system allocations. Equals to /memory/classes/other:bytes. | rdma_exporter |
go_memstats_stack_inuse_bytes | gauge | Number 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_bytes | gauge | Number 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_bytes | gauge | Number of bytes obtained from system. Equals to /memory/classes/total:byte. | rdma_exporter |
go_sched_gomaxprocs_threads | gauge | 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 | rdma_exporter |
go_threads | gauge | Number of OS threads created. | rdma_exporter |
process_cpu_seconds_total | counter | Total user and system CPU time spent in seconds. | rdma_exporter |
process_max_fds | gauge | Maximum number of open file descriptors. | rdma_exporter |
process_network_receive_bytes_total | counter | Number of bytes received by the process over the network. | rdma_exporter |
process_network_transmit_bytes_total | counter | Number of bytes sent by the process over the network. | rdma_exporter |
process_open_fds | gauge | Number of open file descriptors. | rdma_exporter |
process_resident_memory_bytes | gauge | Resident memory size in bytes. | rdma_exporter |
process_start_time_seconds | gauge | Start time of the process since unix epoch in seconds. | rdma_exporter |
process_virtual_memory_bytes | gauge | Virtual memory size in bytes. | rdma_exporter |
process_virtual_memory_max_bytes | gauge | Maximum amount of virtual memory available in bytes. | rdma_exporter |
promhttp_metric_handler_requests_in_flight | gauge | Current number of scrapes being served. | rdma_exporter |
promhttp_metric_handler_requests_total | counter | Total number of scrapes by HTTP status code. | rdma_exporter |
rdma_scrape_errors_total | counter | Total number of errors encountered while scraping RDMA sysfs. | rdma_exporter |