sensu-plugins-logstash 1.2.0 → 1.3.0

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
- SHA1:
3
- metadata.gz: 3894e3b7ff9114544697b10bf53ead6188d2c2a3
4
- data.tar.gz: 02cbbcfc0024c9655d92b580b20830c6d94c42c1
2
+ SHA256:
3
+ metadata.gz: 8f71163f1ba9ad6177b7db025f1f699d9bd2e551c1a688cf27aa2f7f7808733d
4
+ data.tar.gz: 1e1173ee5db093c21f48331430ace90a4bec2247cbfe969842ab07d657da0240
5
5
  SHA512:
6
- metadata.gz: a02b808838473eebe89f3c297ac68dbb78bd5adb668038980244b2a2aa36b36e74c737f915bd1106991c71197152d1364b294bdad380895e218c1b204959698c
7
- data.tar.gz: 5ccb1140fd2c07ad7cd7246257bbbe059bfa090846c0030db87dcb85786c1ac24acb09e798596a63a1df067209fda036e0dbeb6d9ca6d8ab7097ec73e583dd03
6
+ metadata.gz: 5bad41d92ccfb355a8f4e620ae03b370aaf072009d63cea7c091106f17bcc70c63e5a8527000f0207ddd680a45d36da80c2066ebc9f5574bdfccd12886efd52c
7
+ data.tar.gz: bee45e1a079f48587d3d9bcfa67c392120680d8790e92ffecbb874330d3dbf7eefa6d5e96cd32b17c845316837dfd231b853c394532ffcdc613f2d89a021bf33
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [1.3.0] - 2017-11-04
9
+ ### Added
10
+ - metrics-logstash-node.rb: Added missing pipeline output duration metric. (@Evesy)
11
+
8
12
  ## [1.2.0] - 2017-10-31
9
13
  ### Added
10
14
  - metrics-logstash-node.rb: Added queue_push_duration_in_millis metric for logstash pipeline inputs. (@Evesy)
@@ -56,6 +60,7 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
56
60
  - initial release
57
61
 
58
62
  [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-logstash/compare/1.2.0...HEAD
63
+ [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-logstash/compare/1.2.0...1.3.0
59
64
  [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-logstash/compare/1.1.1...1.2.0
60
65
  [1.1.1]: https://github.com/sensu-plugins/sensu-plugins-logstash/compare/1.1.0...1.1.1
61
66
  [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-logstash/compare/1.0.0...1.1.0
@@ -136,6 +136,7 @@ class LogstashNodeMetrics < Sensu::Plugin::Metric::CLI::Graphite
136
136
  item['events'] = {} unless item.key?('events')
137
137
  metrics["pipeline.plugins.outputs.#{item['id']}.events.in"] = item['events']['in'].to_i || 0
138
138
  metrics["pipeline.plugins.outputs.#{item['id']}.events.out"] = item['events']['out'].to_i || 0
139
+ metrics["pipeline.plugins.outputs.#{item['id']}.events.duration_in_millis"] = item['events']['duration_in_millis'].to_i || 0
139
140
  end
140
141
 
141
142
  metrics.each do |k, v|
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsLogstash
2
2
  module Version
3
3
  MAJOR = 1
4
- MINOR = 2
4
+ MINOR = 3
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-logstash
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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: 2017-10-31 00:00:00.000000000 Z
11
+ date: 2017-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -250,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
250
250
  version: '0'
251
251
  requirements: []
252
252
  rubyforge_project:
253
- rubygems_version: 2.6.14
253
+ rubygems_version: 2.7.1
254
254
  signing_key:
255
255
  specification_version: 4
256
256
  summary: Sensu plugins for working with logstash