sensu-plugins-influxdb-metrics-checker 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f2faf768f52259477f77f590df56d99c8e99a9c4
4
- data.tar.gz: 33c7bb5da5466dce940086afc2944242ff6b9815
3
+ metadata.gz: c7500de08054b834c43543ddec485aabdfe8af3e
4
+ data.tar.gz: 488ca9ee8b3fdab706df3adc48ed25ea96cd538a
5
5
  SHA512:
6
- metadata.gz: 535f53f71f815f6cfd18e413070b735fd0e80284f0228b0d8d659844f0fa3560a7d740011664b64d285b53c9117644ad6922abba7d8ac35870c6cce032a05d30
7
- data.tar.gz: e0d5ef15e1f95cb094d2137a0b3da60cb888afa7722f84cdc358d78b4e2d525dbfb219c2695022d1c2c7c3d4ab280105406eca9e7a7adfcaced845810e7aa3b5
6
+ metadata.gz: 2fda3e3e2805fc56fc17c8255770d2ab3bfff2f2338de83d5b5806f0a11512dbd8434af8174fa5df0f70d37110342762373c549c095fea92b243e8cd14ffb2a8
7
+ data.tar.gz: c768ca81e572ac01ef462342682a57378482287fd7a7fac59cb181ebae1573f5b8cf7d84c51ad593c32348dda6ae667db431a19e179a56f30f3668d3df872cb0
@@ -3,9 +3,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
+ # [0.6.1] - 2017-02-03
7
+ Aiming to fix a problem with 0.6.0 where a library was not included.
8
+ It uses absolute time in epoch seconds instead of relative time (now)
9
+
6
10
  # [0.6.0] - 2017-02-01
7
11
  - eleventh release
8
- Using absolute time in `epoch seconds` instead of relative time `now`
12
+ Using absolute time in `epoch seconds` instead of relative time `now`.
13
+ This version is not working because it's missing a library, please don't use it.
9
14
 
10
15
  # [0.5.0] - 2017-01-24
11
16
  - tenth release
@@ -67,4 +72,5 @@ Leaving 5 minutes to the data to consolidate.
67
72
  [0.4.4]: https://github.com/pliyosenpai/sensu-plugins-influxdb-metrics-checker/0.4.4...0.4.8
68
73
  [0.4.8]: https://github.com/pliyosenpai/sensu-plugins-influxdb-metrics-checker/0.4.8...0.5.0
69
74
  [0.5.0]: https://github.com/pliyosenpai/sensu-plugins-influxdb-metrics-checker/0.5.0...0.6.0
70
- [0.6.0]: https://github.com/pliyosenpai/sensu-plugins-influxdb-metrics-checker/0.6.0...HEAD
75
+ [0.6.0]: https://github.com/pliyosenpai/sensu-plugins-influxdb-metrics-checker/0.6.0...0.6.1
76
+ [0.6.1]: https://github.com/pliyosenpai/sensu-plugins-influxdb-metrics-checker/0.6.1...HEAD
data/README.md CHANGED
@@ -12,7 +12,7 @@ The result is that now we are able to experiment with our metrics and alerts, gi
12
12
 
13
13
  ## What it does
14
14
  The script will compare the values of yesterday at this time minus period, with the values of today at this time minus period.
15
- Being period a default value of 20 minutes.
15
+ Being period a default value of 20 minutes.
16
16
  It will calculate the percentage of difference and will act on that.
17
17
  You will be able to set a threshold of warning and critical values where your program will act.
18
18
  It will also leave it 5 minutes to aggregate the data in influxdb, so we are more precise.
@@ -9,7 +9,7 @@ require 'uri'
9
9
  require 'json'
10
10
  require 'base64'
11
11
  require 'addressable/uri'
12
- require './time-management'
12
+ require 'time-management'
13
13
 
14
14
  class CheckInfluxDbMetrics < Sensu::Plugin::Check::CLI
15
15
  option :host,
@@ -2,7 +2,7 @@ module SensuPluginsInfluxDbMetricsChecker
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 6
5
- PATCH = 0
5
+ PATCH = 1
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-influxdb-metrics-checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juanjo Guerrero Cerezuela
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-01 00:00:00.000000000 Z
11
+ date: 2017-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -202,7 +202,6 @@ description: This plugin retrieves metrics and evaluate them. Aiming to track ou
202
202
  email: "<pliyosan@gmail.com>"
203
203
  executables:
204
204
  - check-influxdb-metrics.rb
205
- - time-management.rb
206
205
  extensions: []
207
206
  extra_rdoc_files: []
208
207
  files:
@@ -210,9 +209,9 @@ files:
210
209
  - LICENSE
211
210
  - README.md
212
211
  - bin/check-influxdb-metrics.rb
213
- - bin/time-management.rb
214
212
  - lib/sensu-plugins-influxdb-metrics-checker.rb
215
213
  - lib/sensu-plugins-influxdb-metrics-checker/version.rb
214
+ - lib/time-management.rb
216
215
  homepage: https://github.com/pliyosenpai/sensu-plugins-influxdb-metrics-checker
217
216
  licenses:
218
217
  - MIT