Skip to content

Commit

Permalink
Add description to the mysql.status.command fields. (#3319)
Browse files Browse the repository at this point in the history
  • Loading branch information
monicasarbu authored and ruflin committed Jan 10, 2017
1 parent 031447a commit 0abb9a4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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.

0 comments on commit 0abb9a4

Please sign in to comment.