sensu-plugins-elasticsearch 0.4.1 → 0.4.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
  SHA1:
3
- metadata.gz: 9fd8010eda690389a21ef9f1b9704b8803bbfd8b
4
- data.tar.gz: 9272fcbaa1ed975af17b3639aaee86a396d181f0
3
+ metadata.gz: e6d0d62bd018ce2c2d38de733a27d8134185ae02
4
+ data.tar.gz: b4e7691a1720b2e4e8b3c95d1930b1e1515bb417
5
5
  SHA512:
6
- metadata.gz: 9e2580830a11b829a518cfa81e8e51c208bd64d6b747e0ebd3692b31ab71f0fb7cd36e2f4692bcbf2a9d6771f41ee09df802537a5981a4f86363e532c3f174ce
7
- data.tar.gz: e760023498bf149017232302fa6b54e9409bdbceb1516ea2e4c9da7e048db1725e8b22789c0f5450b604a0b45b50171e47474ae24e460ff6e26389ac12ffc8f3
6
+ metadata.gz: 21f93832491adba01b1ea8d8c7e690c8d30161c7537a9469ac859a7ab5ba99a77de0c73ca56296febb5a2e1ea76242c3d01e2000b2783188e662e49819e4211b
7
+ data.tar.gz: 22caa5a38c61e5a23007810d668678e43d2f5804bba3b6ed317a639b6ff1b9fd7825a9796c2895af95ea1470b332ce670661df90f66606a66b1490d2318cf598
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## Unreleased
7
7
 
8
+ ## [0.4.2] - 2016-01-27
9
+ ### Added
10
+ - metrics-es-cluster.rb: Added i/o cluster stats
11
+
8
12
  ## [0.4.1] - 2016-01-26
9
13
  ### Fixed
10
14
  - metrics-es-cluster.rb: Allow metrics to be gathered even if the cluster has zero documents. Also updated cache name for Elasticsearch 2.0+
@@ -136,6 +136,10 @@ class ESClusterMetrics < Sensu::Plugin::Metric::CLI::Graphite
136
136
  cluster_metrics['fs']['total_in_bytes'] = cluster_stats['nodes']['fs']['total_in_bytes']
137
137
  cluster_metrics['fs']['free_in_bytes'] = cluster_stats['nodes']['fs']['free_in_bytes']
138
138
  cluster_metrics['fs']['store_in_bytes'] = cluster_stats['indices']['store']['size_in_bytes']
139
+ cluster_metrics['fs']['disk_reads'] = cluster_stats['nodes']['fs']['disk_reads']
140
+ cluster_metrics['fs']['disk_writes'] = cluster_stats['nodes']['fs']['disk_writes']
141
+ cluster_metrics['fs']['disk_read_size_in_bytes'] = cluster_stats['nodes']['fs']['disk_read_size_in_bytes']
142
+ cluster_metrics['fs']['disk_write_size_in_bytes'] = cluster_stats['nodes']['fs']['disk_write_size_in_bytes']
139
143
  cluster_metrics['fielddata']['memory_size_in_bytes'] = cluster_stats['indices']['fielddata']['memory_size_in_bytes']
140
144
  cluster_metrics['fielddata']['evictions'] = cluster_stats['indices']['fielddata']['evictions']
141
145
 
@@ -2,7 +2,7 @@ module SensuPluginsElasticsearch
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- PATCH = 1
5
+ PATCH = 2
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu Plugins and contributors
@@ -30,7 +30,7 @@ cert_chain:
30
30
  8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
31
  HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
32
  -----END CERTIFICATE-----
33
- date: 2016-01-26 00:00:00.000000000 Z
33
+ date: 2016-01-28 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: rest-client
metadata.gz.sig CHANGED
Binary file