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 +4 -4
- data/CHANGELOG.md +6 -1
- data/bin/metrics-mysql-raw.rb +2 -1
- data/lib/sensu-plugins-mysql/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 047cfd16fcb8dbdad410dce0f2ef3f4a438f77fc76091912200656d3340ccf88
|
|
4
|
+
data.tar.gz: 2cd3ad7a243d134f2c6a6dd86e6f0fda48d1737470333a3bb0cacd09a9558bd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
data/bin/metrics-mysql-raw.rb
CHANGED
|
@@ -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',
|
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
|
+
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-
|
|
11
|
+
date: 2018-06-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: inifile
|