forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add edits for prometheus module docs (elastic#3520)
- Loading branch information
1 parent
60e7999
commit f006365
Showing
7 changed files
with
29 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
== prometheus Module | ||
== Prometheus Module | ||
|
||
beta[] | ||
|
||
This is the prometheus Module. | ||
|
||
This module periodically fetches metrics from | ||
https://prometheus.io/docs/[Prometheus]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
=== prometheus collector MetricSet | ||
=== Prometheus Collector Metricset | ||
|
||
This is the collector metricset of the module prometheus. It allows to fetch data from https://prometheus.io/docs/instrumenting/exporters/[prometheus exporters]. | ||
The Prometheus `collector` metricset fetches data from https://prometheus.io/docs/instrumenting/exporters/[prometheus exporters]. | ||
|
||
All events with the same labels are grouped together as one event. | ||
All events with the same labels are grouped together as one event. The fields | ||
exported by this metricset vary depending on the Prometheus exporter that you're | ||
using. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
=== prometheus stats MetricSet | ||
=== Prometheus Stats Metricset | ||
|
||
This is the stats metricset of the module prometheus. | ||
The Prometheus `stats` metricset collects statistics about the Prometheus | ||
server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
- name: stats | ||
type: group | ||
description: > | ||
stats | ||
Stats about the Prometheus server. | ||
fields: | ||
- name: notifications | ||
type: group | ||
description: > | ||
Notification stats | ||
Notification stats. | ||
fields: | ||
- name: queue_length | ||
type: long | ||
description: > | ||
Current queue length | ||
Current queue length. | ||
- name: dropped | ||
type: long | ||
description: > | ||
Dropped queue events | ||
Number of dropped queue events. | ||
- name: processes.open_fds | ||
type: long | ||
description: > | ||
Open file descriptors gauge | ||
Number of open file descriptors. | ||
- name: storage.chunks_to_persist | ||
type: long | ||
description: > | ||
Gauge on chunks which are not persisted to disk yet | ||
Number of memory chunks that are not yet persisted to disk. |