sensu-plugins-amqp-checks 0.0.3 → 0.0.4

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: 060172a993e729df01a5ac433534937d8ca531f3
4
- data.tar.gz: ef88c83ceaa07f080360f6d32213f90b476f7e2c
3
+ metadata.gz: 7af0c4048d23bd38e382b9a4d202a293a45a52fd
4
+ data.tar.gz: bbe7aa8edef722362a79f0f2ea756b6241185667
5
5
  SHA512:
6
- metadata.gz: 80f8cd67e55c983bc58449d7835aa612b39ac5cddfab8232d71c0e305f09900047cb4dfecd56083fa277db5ab6d509000e17d5549ee34fcc5869041065a09814
7
- data.tar.gz: 9e7c9f838609f8b76a5ad93a0eb9585d001e26477a03339505fd5260c63e77b02a5a5515e2b84f34a1bc81786d3c4ca05065b8d13463cb760f89ca196e537b62
6
+ metadata.gz: f9dd0bfb531a5ba2c625f733a31cd99e04a922e52d6542e94c4e8c54762ff63afbcdcc64b79becf44b49e08185e84042df6c5210f690e9e1f7f6e5cb4d3cc348
7
+ data.tar.gz: 519d635fc347b0cebb972469157cc81513177d0a2f4688059da27fb272cb5157add66f6de0633146d8e20bfc49fc44361dfeb51f9cb6688a320cfbdbdaacaa12
@@ -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.0.4 - 2016-11-20
9
+ ### Added
10
+ - Updated documentation to provide usage information and context
11
+
8
12
  ## 0.0.3 - 2016-11-18
9
13
  ### Fixed
10
14
  - Fixed password input option. Previously it had the wrong variable name on AQMP connect string.
data/README.md CHANGED
@@ -8,13 +8,17 @@
8
8
 
9
9
  ## Functionality
10
10
 
11
- This plugin is for checking a RabbitMQ queue for a keepalive/status message
11
+ This plugin is for checking a RabbitMQ queue for a keepalive/status message. It was written for an application that publishes keepalive messages every N seconds and this check consumes the queue and checks whether there are messages present to consume.
12
+
13
+ If needed, further functionality could be added to check the message payload for information but right now it merely checks whether the keepalive message is present or not. It is intended for the Sensu check to have an occurrences of at least 2 to account for differences in synchronization between the keepalive interval and when the check runs.
12
14
 
13
15
  ## Files
14
16
  * bin/check-amqp-status.rb
15
17
 
16
18
  ## Usage
17
19
 
20
+ /path_to_sensu/embedded/bin/ruby /path_to_sensu/embedded/bin/check-amqp-status.rb --host rabbitmq_host -u rabbit_user --password rabbit_password --queue queue_to_check --port 5672
21
+
18
22
  ## Installation
19
23
 
20
24
  [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
@@ -2,7 +2,7 @@ module SensuPluginsAMQPChecks
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 3
5
+ PATCH = 4
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-amqp-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Brimhall
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-11-18 00:00:00.000000000 Z
12
+ date: 2016-11-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sensu-plugin