ostrichpoll 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
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 be run by `monit` or similar tool on a regular basis.
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
@@ -1,3 +1,3 @@
1
1
  module OstrichPoll
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/ostrichPoll.gemspec CHANGED
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/ostrichPoll/version', __FILE__)
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.add_development_dependency 'json'
19
- gem.add_development_dependency 'trollop'
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.1
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-08 00:00:00.000000000Z
12
+ date: 2012-05-31 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json
16
- requirement: &70093421674620 !ruby/object:Gem::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: :development
22
+ type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70093421674620
24
+ version_requirements: *70310402169400
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: trollop
27
- requirement: &70093413683700 !ruby/object:Gem::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: :development
33
+ type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70093413683700
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
File without changes