From 0abb9a48ebb9a46bf4cb6a1327410d552cc149e6 Mon Sep 17 00:00:00 2001 From: Monica Sarbu Date: Tue, 10 Jan 2017 09:25:08 +0200 Subject: [PATCH] Add description to the mysql.status.command fields. (#3319) --- CHANGELOG.asciidoc | 2 +- metricbeat/docs/fields.asciidoc | 4 ++++ metricbeat/module/mysql/status/_meta/fields.yml | 6 +++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index c63086f0d6e..0d5d0168314 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -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* diff --git a/metricbeat/docs/fields.asciidoc b/metricbeat/docs/fields.asciidoc index ffe2c2acce7..1e57ccc9ebe 100644 --- a/metricbeat/docs/fields.asciidoc +++ b/metricbeat/docs/fields.asciidoc @@ -3575,6 +3575,7 @@ type: long type: long +The number of DELETE queries since startup. [float] @@ -3582,6 +3583,7 @@ type: long type: long +The number of INSERT queries since startup. [float] @@ -3589,6 +3591,7 @@ type: long type: long +The number of SELECT queries since startup. [float] @@ -3596,6 +3599,7 @@ type: long type: long +The number of UPDATE queries since startup. [[exported-fields-nginx]] diff --git a/metricbeat/module/mysql/status/_meta/fields.yml b/metricbeat/module/mysql/status/_meta/fields.yml index bc9c5535cbc..93501c4d7eb 100644 --- a/metricbeat/module/mysql/status/_meta/fields.yml +++ b/metricbeat/module/mysql/status/_meta/fields.yml @@ -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: > \ No newline at end of file + description: > + The number of UPDATE queries since startup.