Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add description to the mysql.status.command fields. #3319

Merged
merged 1 commit into from Jan 10, 2017
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.asciidoc
Expand Up @@ -134,7 +134,7 @@ https://github.com/elastic/beats/compare/v5.0.2...v5.1.1[View commits]
- Add support for MongoDB 3.4 and WiredTiger metrics. {pull}2999[2999]
- Add experimental kafka module with partition metricset. {pull}2969[2969]
- Add raw config option for mysql/status metricset. {pull}3001[3001]
- Add command fileds for mysql/status metricset. {pull}3251[3251]
- Add command fields for mysql/status metricset. {pull}3251[3251]

*Filebeat*

Expand Down
4 changes: 4 additions & 0 deletions metricbeat/docs/fields.asciidoc
Expand Up @@ -3575,27 +3575,31 @@ type: long

type: long

The number of DELETE queries since startup.


[float]
=== mysql.status.command.insert

type: long

The number of INSERT queries since startup.


[float]
=== mysql.status.command.select

type: long

The number of SELECT queries since startup.


[float]
=== mysql.status.command.update

type: long

The number of UPDATE queries since startup.


[[exported-fields-nginx]]
Expand Down
6 changes: 5 additions & 1 deletion metricbeat/module/mysql/status/_meta/fields.yml
Expand Up @@ -143,15 +143,19 @@
- name: delete
type: long
description: >
The number of DELETE queries since startup.

- name: insert
type: long
description: >
The number of INSERT queries since startup.

- name: select
type: long
description: >
The number of SELECT queries since startup.

- name: update
type: long
description: >
description: >
The number of UPDATE queries since startup.