Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Further Information
| elasticsearch_indices_translog_size_in_bytes | counter | 1 | Total translog size in bytes
| elasticsearch_indices_warmer_time_seconds_total | counter | 1 | Total warmer time in seconds
| elasticsearch_indices_warmer_total | counter | 1 | Total warmer count
| elasticsearch_jvm_gc_collection_count | counter | 2 | Count of JVM GC runs
| elasticsearch_jvm_gc_collection_seconds_count | counter | 2 | Count of JVM GC runs
| elasticsearch_jvm_gc_collection_seconds_sum | counter | 2 | GC run time in seconds
| elasticsearch_jvm_memory_committed_bytes | gauge | 2 | JVM memory currently committed by area
| elasticsearch_jvm_memory_max_bytes | gauge | 1 | JVM memory max
Expand Down
2 changes: 1 addition & 1 deletion collector/nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,7 @@ func NewNodes(logger log.Logger, client *http.Client, url *url.URL, all bool, no
{
Type: prometheus.CounterValue,
Desc: prometheus.NewDesc(
prometheus.BuildFQName(namespace, "jvm_gc", "collection_count"),
prometheus.BuildFQName(namespace, "jvm_gc", "collection_seconds_count"),
"Count of JVM GC runs",
append(defaultNodeLabels, "gc"), nil,
),
Expand Down