sensu-plugins-elasticsearch 3.0.0 → 4.0.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
2
  SHA256:
3
- metadata.gz: 312325d018cb4a3a75cb0ac3ea1eb59f7dc2eaa58cae85cff7538825f95a944a
4
- data.tar.gz: 85c8e59ab0fff20f0829d69afbf2ce6dcf9d9dd8f68a15a500c96ece9d08b747
3
+ metadata.gz: 970b09f048442fb272daf3b4a366ba6f1fe19707aa98149140e6e34c40be6ecf
4
+ data.tar.gz: c430607238dd32f68da4c3bd46ba5a460aba0fae7a4eb33fab99c5934572c4f1
5
5
  SHA512:
6
- metadata.gz: b1ffb3162d9583f5ccafedf854a708bbf8b5b6052efd7bc71f81e4b0c0f549982b45a70f9523a4d117c1f36008d284e421883bdfbec41beff44be65d750e4c91
7
- data.tar.gz: 8bf5b7e09b30aae879cbaf9f3693e5d7ccda23c2bd79609a5be0a25531f92552b721078d144aec0e71f7647a9f7b6641dac82f8a5f1633d1dca99b5c1d8bfa82
6
+ metadata.gz: a50e5822fbef739bd51c7b8c9c1edb422af847a04c9727c6d730e4eefab09eb3a6c358da8d54c248a68e39c29abf46ba9de04601534c952f213665bb3f50a814
7
+ data.tar.gz: 44d00a15f7ab98b4863ccdaa8d4441d8d1b2dc65e178b19d92c80f31d4e63ec99cc7da9301e4c175dd5b986385917992b688d4286797cfb947fe7ec1027e3b49
@@ -5,6 +5,14 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [4.0.0] - 2019-05-07
9
+ ### Breaking Changes
10
+ - Bump `sensu-plugin` dependency from `~> 3.0` to `~> 4.0` you can read the changelog entries for [4.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#400---2018-02-17), [3.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#300---2018-12-04), and [2.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29)
11
+
12
+ ### Added
13
+ - Travis build automation to generate Sensu Asset tarballs that can be used n conjunction with Sensu provided ruby runtime assets and the Bonsai Asset Index
14
+ - Require latest sensu-plugin for [Sensu Go support](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement)
15
+
8
16
  ## [3.0.0] - 2018-12-17
9
17
  ### Breaking Changes
10
18
  - removed ruby support for versions `< 2.3` (@majormoses)
@@ -259,7 +267,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
259
267
  - initial release
260
268
 
261
269
 
262
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/3.0.0...HEAD
270
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/4.0.0...HEAD
271
+ [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/3.0.0...4.0.0
263
272
  [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/2.1.0...3.0.0
264
273
  [2.1.0]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/2.0.1...2.1.0
265
274
  [2.0.1]: https://github.com/sensu-plugins/sensu-plugins-elasticsearch/compare/2.0.0...2.0.1
data/README.md CHANGED
@@ -5,6 +5,10 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-elasticsearch.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-elasticsearch)
8
+ [![Sensu Bonsai Asset](https://img.shields.io/badge/Bonsai-Download%20Me-brightgreen.svg?colorB=89C967&logo=sensu)](https://bonsai.sensu.io/assets/sensu-plugins/sensu-plugins-elasticsearch)
9
+
10
+ ## Sensu Asset
11
+ The Sensu assets packaged from this repository are built against the Sensu ruby runtime environment. When using these assets as part of a Sensu Go resource (check, mutator or handler), make sure you include the corresponding Sensu ruby runtime asset in the list of assets needed by the resource. The current ruby-runtime assets can be found [here](https://bonsai.sensu.io/assets/sensu/sensu-ruby-runtime) in the [Bonsai Asset Index](bonsai.sensu.io).
8
12
 
9
13
  ## Functionality
10
14
 
@@ -34,6 +38,7 @@
34
38
  [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
35
39
 
36
40
  ## Notes
41
+ When using `handler-es-delete-indices.rb` with Sensu Go, you will need to use the event mapping commandline option, see `handler-es-delete-indices.rb --help` for details. And please read [the sensu-plugin README](https://github.com/sensu-plugins/sensu-plugin#sensu-go-enablement) for more information on the event mapping functionality.
37
42
 
38
43
  ## Testing
39
44
 
@@ -1,6 +1,6 @@
1
1
  module SensuPluginsElasticsearch
2
2
  module Version
3
- MAJOR = 3
3
+ MAJOR = 4
4
4
  MINOR = 0
5
5
  PATCH = 0
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 4.0.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-12-18 00:00:00.000000000 Z
11
+ date: 2019-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-es-transport
@@ -84,14 +84,14 @@ dependencies:
84
84
  requirements:
85
85
  - - "~>"
86
86
  - !ruby/object:Gem::Version
87
- version: '1.2'
87
+ version: '4.0'
88
88
  type: :runtime
89
89
  prerelease: false
90
90
  version_requirements: !ruby/object:Gem::Requirement
91
91
  requirements:
92
92
  - - "~>"
93
93
  - !ruby/object:Gem::Version
94
- version: '1.2'
94
+ version: '4.0'
95
95
  - !ruby/object:Gem::Dependency
96
96
  name: bundler
97
97
  requirement: !ruby/object:Gem::Requirement
@@ -343,8 +343,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
343
343
  - !ruby/object:Gem::Version
344
344
  version: '0'
345
345
  requirements: []
346
- rubyforge_project:
347
- rubygems_version: 2.7.8
346
+ rubygems_version: 3.0.3
348
347
  signing_key:
349
348
  specification_version: 4
350
349
  summary: Sensu plugins for elasticsearch