riemann-tools 1.7.0 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad07110215b87b2b1128127294c855149bbdd0e96623c8aaaedfc7b34434994c
4
- data.tar.gz: 5957f98f865a20456a063a72e293e1af2a8dfa73d7a898fb319e1485853c5313
3
+ metadata.gz: 9fa44263a952846fc5cc62c61b6ffec769d0be379f28acb4e93b4daf3e0837bb
4
+ data.tar.gz: 1efb518984161d6ffa35d1f73ac54bfa2d4f95096c2b854ea1a7fb32f5e5394c
5
5
  SHA512:
6
- metadata.gz: 51b9c2da5e9cc9e334903c53e086e9df1dac212dc57d5fd02d9dc234a842296eaaf433eb99b787dd618b2fa839969a44b0e2da5ede1a2b4fcc0bfb2251cbf5fb
7
- data.tar.gz: a5904b787d46c07d16a581a37fc3c2561c96c858d475d4e855e3119294464f6a530a5f5e885b3910660b9678a15e085183eaefcef6ae268b2dcc5c253e18fbd0
6
+ metadata.gz: 5dc1d992536ac76647acf1777139b8c793df76e3d7373f3f86f40f2de54d551d0eca5d5703f9a4a0986bedb05af0b0256bd888a518be90eeb75b6a09112c1c1f
7
+ data.tar.gz: 66f578a6b3b39602800345693699a0653e86fd169ff622dcce17e651f1ba8ca945ced131d6b1e65264aa7d6ac13b2c0b94effcacb7820fd39f697b1bd855e1af
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.7.1](https://github.com/riemann/riemann-tools/tree/v1.7.1) (2023-01-12)
4
+
5
+ [Full Changelog](https://github.com/riemann/riemann-tools/compare/v1.7.0...v1.7.1)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Fix uninitialized constant Riemann::Tools::VERSION \(NameError\) [\#259](https://github.com/riemann/riemann-tools/pull/259) ([smortex](https://github.com/smortex))
10
+
3
11
  ## [v1.7.0](https://github.com/riemann/riemann-tools/tree/v1.7.0) (2023-01-11)
4
12
 
5
13
  [Full Changelog](https://github.com/riemann/riemann-tools/compare/v1.6.0...v1.7.0)
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'riemann/tools'
4
+ require 'riemann/tools/version'
4
5
 
5
6
  # Collects Apache metrics and submits them to Riemann
6
7
  # More information can be found at http://httpd.apache.org/docs/2.4/mod/mod_status.html
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'riemann/tools'
4
+ require 'riemann/tools/version'
4
5
 
5
6
  # Gathers load balancer statistics from Cloudant.com (shared cluster) and submits them to Riemann.
6
7
  module Riemann
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'riemann/tools'
4
+ require 'riemann/tools/version'
4
5
  require 'socket'
5
6
  require 'net/http'
6
7
  require 'uri'
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'riemann/tools'
4
+ require 'riemann/tools/version'
4
5
 
5
6
  # Gathers haproxy CSV statistics and submits them to Riemann.
6
7
  module Riemann
@@ -5,6 +5,7 @@ require 'resolv'
5
5
  require 'socket'
6
6
 
7
7
  require 'riemann/tools'
8
+ require 'riemann/tools/version'
8
9
 
9
10
  # Test for HTTP requests
10
11
  module Riemann
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'riemann/tools'
4
+ require 'riemann/tools/version'
4
5
 
5
6
  # Gathers nginx status stub statistics and submits them to Riemann.
6
7
  # See http://wiki.nginx.org/HttpStubStatusModule for configuring Nginx appropriately
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Riemann
4
4
  module Tools # :nodoc:
5
- VERSION = '1.7.0'
5
+ VERSION = '1.7.1'
6
6
  end
7
7
  end
@@ -2,6 +2,7 @@
2
2
 
3
3
  require 'English'
4
4
  require 'riemann/tools'
5
+ require 'riemann/tools/version'
5
6
 
6
7
  # Forwards information on a Riak node to Riemann.
7
8
  module Riemann
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riemann-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kingsbury
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-11 00:00:00.000000000 Z
11
+ date: 2023-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json