sensu-plugins-mesos 2.1.1 → 2.1.2

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
  SHA256:
3
- metadata.gz: d3959b0cafffb334bca01348d6663bddac4b24dbd90a8004417a0185aec6799e
4
- data.tar.gz: a2452eb299c011427032a4a48bbaa291f008750fb68f6091971fdeac7f5f326f
3
+ metadata.gz: 49f47811de2e1c9561493b853c17c7798a928756a3a833dbd84f443f232ea401
4
+ data.tar.gz: a702867f72846ecc058f68a81c02a6f1e5ceb4376fd730c14ea7a272aac85626
5
5
  SHA512:
6
- metadata.gz: 87d6ab28a2198f3d3b2ee79293838d7a4948723a6428f812033af4ff9554a1621b35e23c884668cbfeba22bff2ea55b51842678178702f75109e2da93034ff5f
7
- data.tar.gz: 452e7e2b5ceb6c16f826478da03441edd1d8b03b03cc0016522a98b47cf974b96e076565c98f435b2198cea11f9e4de40e52112323ca6375029bc4894dc0fcfa
6
+ metadata.gz: 67698870e977112d92d95a3615b51041ee4d69e0f68366d3bdf70ac4152b1f130fd566de63b619e960a3c5456da4ad808f9a5b25d8d39ecec3431a894769ab05
7
+ data.tar.gz: cea4ad31176d7c96a326b5c50832a3a7b57c92d4ea241b8c96007f8fde84c51a741147561608731c4cc1fba9d203b4754b6f61777b8673391f1e0924fbe33fa4
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [2.2.2] - 2017-12-05
9
+ ### Fixed
10
+ - metrics-marathon.rb: ignore 2 new keys (start, end) in Marathon 1.5 /metrics endpoint (@bergerx)
11
+
8
12
  ## [2.2.1] - 2017-11-04
9
13
  ### Fixed
10
14
  - check-marathon-task.rb: solved a bug which prevented to alert when number of instances were retrieved from Marathon
@@ -82,7 +86,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
82
86
  ### Added
83
87
  - initial release
84
88
 
85
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/2.1.0...HEAD
89
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/2.1.2...HEAD
90
+ [2.1.2]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/2.1.1...2.1.2
86
91
  [2.1.1]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/2.1.0...2.1.1
87
92
  [2.1.0]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/2.0.0...2.1.0
88
93
  [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/1.1.0...2.0.0
@@ -34,7 +34,7 @@ require 'socket'
34
34
  require 'json'
35
35
 
36
36
  class MarathonMetrics < Sensu::Plugin::Metric::CLI::Graphite
37
- SKIP_ROOT_KEYS = %w(version).freeze
37
+ SKIP_ROOT_KEYS = %w(version start end).freeze
38
38
  option :scheme,
39
39
  description: 'Metric naming scheme',
40
40
  short: '-s SCHEME',
@@ -2,7 +2,7 @@ module SensuPluginsMesos
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 1
5
- PATCH = 1
5
+ PATCH = 2
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-mesos
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
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: 2017-11-04 00:00:00.000000000 Z
11
+ date: 2017-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
268
268
  version: '0'
269
269
  requirements: []
270
270
  rubyforge_project:
271
- rubygems_version: 2.7.1
271
+ rubygems_version: 2.7.3
272
272
  signing_key:
273
273
  specification_version: 4
274
274
  summary: Sensu plugins for checking mesos