ostrichpoll 0.0.1 → 0.0.2
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.
- data/README.md +2 -1
- data/lib/ostrichpoll/version.rb +1 -1
- data/ostrichPoll.gemspec +3 -3
- metadata +8 -9
- data/exampleconfigs/firehose.yml +0 -0
data/README.md
CHANGED
@@ -6,7 +6,8 @@ over HTTP.
|
|
6
6
|
|
7
7
|
Features:
|
8
8
|
|
9
|
-
* not a daemon: Ostrichpoll is intended to
|
9
|
+
* not a daemon: Ostrichpoll is intended to used by `monit` or a similar tool
|
10
|
+
as part of a health check for a proper service
|
10
11
|
* validate multiple endpoints in a single execution
|
11
12
|
* specify normal ranges for metrics and gauges through YAML configuration
|
12
13
|
* support for "rate" measurements, specifying acceptable change per second for
|
data/lib/ostrichpoll/version.rb
CHANGED
data/ostrichPoll.gemspec
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
require File.expand_path('../lib/
|
2
|
+
require File.expand_path('../lib/ostrichpoll/version', __FILE__)
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Wiktor Macura"]
|
@@ -15,6 +15,6 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.require_paths = ["lib"]
|
16
16
|
gem.version = OstrichPoll::VERSION
|
17
17
|
|
18
|
-
gem.
|
19
|
-
gem.
|
18
|
+
gem.add_dependency 'json'
|
19
|
+
gem.add_dependency 'trollop'
|
20
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ostrichpoll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,30 +9,30 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-05-
|
12
|
+
date: 2012-05-31 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
16
|
-
requirement: &
|
16
|
+
requirement: &70310402169400 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
21
|
version: '0'
|
22
|
-
type: :
|
22
|
+
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70310402169400
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: trollop
|
27
|
-
requirement: &
|
27
|
+
requirement: &70310402168560 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '0'
|
33
|
-
type: :
|
33
|
+
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70310402168560
|
36
36
|
description: Ostrichpoll is a tiny utility for monitoring Twitter Ostrich services.
|
37
37
|
Effectively it can monitor any service which exposes internal metrics in JSON over
|
38
38
|
HTTP.
|
@@ -50,7 +50,6 @@ files:
|
|
50
50
|
- README.md
|
51
51
|
- Rakefile
|
52
52
|
- bin/ostrichpoll
|
53
|
-
- exampleconfigs/firehose.yml
|
54
53
|
- lib/ostrichpoll.rb
|
55
54
|
- lib/ostrichpoll/config_parser.rb
|
56
55
|
- lib/ostrichpoll/exit_codes.rb
|
data/exampleconfigs/firehose.yml
DELETED
File without changes
|