-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-pick #17043 to 7.6: [Metricbeat] Move Zookeeper/connection to …
…GA (#17058)
- Loading branch information
Showing
11 changed files
with
46 additions
and
25 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
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 +1,6 @@ | ||
This is the 'connection' metricset of the module zookeeper. | ||
`connection` Metricset fetches the data returned by the `cons` admin keyword. It exposes the following metrics: | ||
|
||
* `zookeeper.connection.interest_ops`: Interest ops | ||
* `zookeeper.connection.queued`: Queued connections | ||
* `zookeeper.connection.received`: Received connections | ||
* `zookeeper.connection.sent`: Connections sent |
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 @@ | ||
- name: connection | ||
type: group | ||
release: beta | ||
release: ga | ||
description: > | ||
connections | ||
fields: | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 +1,21 @@ | ||
The ZooKeeper `mntr` metricset collects ZooKeeper monitoring statistics. | ||
`mntr` Metricset fetches the data returned by the `mntr` admin keyword. It exposes the following metrics: | ||
|
||
* `zookeeper.mntr.hostname`: ZooKeeper hostname. | ||
* `zookeeper.mntr.approximate_data_size`: Approximate size of ZooKeeper data. | ||
* `zookeeper.mntr.latency.avg`: Average latency between ensemble hosts in milliseconds. | ||
* `zookeeper.mntr.ephemerals_count`: Number of ephemeral znodes. | ||
* `zookeeper.mntr.followers`: Number of followers seen by the current host. | ||
* `zookeeper.mntr.max_file_descriptor_count`: Maximum number of file descriptors allowed for the ZooKeeper process. | ||
* `zookeeper.mntr.latency.max`: Maximum latency in milliseconds. | ||
* `zookeeper.mntr.latency.min`: Minimum latency in milliseconds. | ||
* `zookeeper.mntr.num_alive_connections`: Number of connections to ZooKeeper that are currently alive. | ||
* `zookeeper.mntr.open_file_descriptor_count`: Number of file descriptors open by the ZooKeeper process. | ||
* `zookeeper.mntr.outstanding_requests`: Number of outstanding requests that need to be processed by the cluster. | ||
* `zookeeper.mntr.packets.received`: Number of ZooKeeper network packets received. | ||
* `zookeeper.mntr.packets.sent`: Number of ZooKeeper network packets sent. | ||
* `zookeeper.mntr.pending_syncs`: Number of pending syncs to carry out to ZooKeeper ensemble followers. | ||
* `zookeeper.mntr.server_state`: Role in the ZooKeeper ensemble. | ||
* `zookeeper.mntr.synced_followers`: Number of synced followers reported when a node server_state is leader. | ||
* `zookeeper.mntr.version`: Version and build string reported. | ||
* `zookeeper.mntr.watch_count`: Number of watches currently set on the local ZooKeeper process. | ||
* `zookeeper.mntr.znode_count`: Number of znodes reported by the local ZooKeeper process. |
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,15 +1,15 @@ | ||
`server` Metricset fetches the data returned by the `srvr` admin keyword. | ||
|
||
* *connections*: Connections established by the server | ||
* *latency.avg*: Average latency of the server | ||
* *latency.max*: Max latency reached by the server | ||
* *latency.min*: Minimum latency that has been reached by the server | ||
* *mode*: Server mode | ||
* *node_count*: Total number of nodes | ||
* *outstanding*: Outstanding | ||
* *received*: Received requests to the server | ||
* *sent*: Requests sent by the server | ||
* *version_date*: Date of the Zookeeper release in use | ||
* *zxid*: Original value of the Zookeeper transaction ID | ||
* *count*: Total transactions of the leader in epoch | ||
* *epoch*: Epoch value of the Zookeeper transaction ID | ||
* `zookeeper.server.connections`: Connections established by the server | ||
* `zookeeper.server.latency.avg`: Average latency of the server | ||
* `zookeeper.server.latency.max`: Max latency reached by the server | ||
* `zookeeper.server.latency.min`: Minimum latency that has been reached by the server | ||
* `zookeeper.server.mode`: Server mode | ||
* `zookeeper.server.node_count`: Total number of nodes | ||
* `zookeeper.server.outstanding`: Outstanding | ||
* `zookeeper.server.received`: Received requests to the server | ||
* `zookeeper.server.sent`: Requests sent by the server | ||
* `zookeeper.server.version_date`: Date of the Zookeeper release in use | ||
* `zookeeper.server.zxid`: Original value of the Zookeeper transaction ID | ||
* `zookeeper.server.count`: Total transactions of the leader in epoch | ||
* `zookeeper.server.epoch`: Epoch value of the Zookeeper transaction ID |