sensu-plugins-mysql 2.4.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f3c4c5c8032b4d4772fa261612cdfa3e253354fc4ecf3f91df6bd5de5ae3092
4
- data.tar.gz: 80cc13b7479af0f2131327e376d1bf60c9fbca0bc80b2bea85d015068fe4e1a6
3
+ metadata.gz: 047cfd16fcb8dbdad410dce0f2ef3f4a438f77fc76091912200656d3340ccf88
4
+ data.tar.gz: 2cd3ad7a243d134f2c6a6dd86e6f0fda48d1737470333a3bb0cacd09a9558bd8
5
5
  SHA512:
6
- metadata.gz: f4928ac744df5cfa609f918e1f3c6ebcce3c1a67d4d4cbbc55311c384341b90801bb58a97a1da8d2dce1627df3703fa6352f22e5116c35913b8786f58633b2bc
7
- data.tar.gz: 338847d6b300427fb42ca5ee97db87fa9512520743457de3746e43405050a9327d2aadc6631285516eea0fa0b98bf2298a1099c66fa86902f64855bfb775245b
6
+ metadata.gz: fdafcf335638b6d805922a3db4f9cf7d48f419f7d1b70d1c9050426b9ee79f1667d5d72a414be37b94e50158390c3be6c0e0dd44876888ceebe5841f8c802db9
7
+ data.tar.gz: 7682ac87a3e900789e60c85e0314112790ea82ed2927791d03d355f28bb82a1a578b06653170bcd84eba1ff54cf5bc5492c7d9993ea31c0d7a81bd64db1a3cb6
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [2.5.0] - 2018-06-12
9
+ ### Added
10
+ - metrics-mysql-raw.rb: added `Qcache_free_memory` collection (@alchandia)
11
+
8
12
  ## [2.4.0] - 2018-06-4
9
13
  ### Added
10
14
  - Add check-mysql-select-count.rb script (@negachov)
@@ -125,7 +129,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
125
129
  ### Added
126
130
  - initial release
127
131
 
128
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.4.0...HEAD
132
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.5.0...HEAD
133
+ [2.5.0]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.4.0...2.5.0
129
134
  [2.4.0]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.3.0...2.4.0
130
135
  [2.3.0]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.2.1...2.3.0
131
136
  [2.2.1]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.2.0..2.2.1
@@ -189,7 +189,8 @@ class MetricsMySQLRaw < Sensu::Plugin::Metric::CLI::Graphite
189
189
  'Qcache_hits' => 'cacheHits',
190
190
  'Qcache_inserts' => 'inserts',
191
191
  'Qcache_not_cached' => 'notCached',
192
- 'Qcache_lowmem_prunes' => 'lowMemPrunes'
192
+ 'Qcache_lowmem_prunes' => 'lowMemPrunes',
193
+ 'Qcache_free_memory' => 'freeMemory'
193
194
  },
194
195
  'commands' => {
195
196
  'Com_admin_commands' => 'admin_commands',
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsMySql
2
2
  module Version
3
3
  MAJOR = 2
4
- MINOR = 4
4
+ MINOR = 5
5
5
  PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-mysql
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-05 00:00:00.000000000 Z
11
+ date: 2018-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: inifile