pingdom-to-graphite 0.0.3 → 0.0.4
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 +1 -1
- data/lib/pingdom-to-graphite/version.rb +1 -1
- data/pingdom-to-graphite.gemspec +1 -0
- metadata +17 -1
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A tool for copying metrics from Pingdom to graphite. Pingdom, although allowing
|
|
4
4
|
access to effectively all your metrics through the API, does have some limits in
|
|
5
|
-
place to prevent abuse. This
|
|
5
|
+
place to prevent abuse. This tool tries to be mindful of that, although does
|
|
6
6
|
provide a "backfill" option if you care to burn up your daily api limit in one
|
|
7
7
|
fell swoop.
|
|
8
8
|
|
data/pingdom-to-graphite.gemspec
CHANGED
|
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
20
|
s.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
+
s.add_runtime_dependency "bundler", "~> 1.1.5"
|
|
22
23
|
s.add_runtime_dependency "thor", "~> 0.15.4"
|
|
23
24
|
s.add_runtime_dependency "pingdom-client", "~> 0.0.6.alpha"
|
|
24
25
|
s.add_runtime_dependency "json", "~> 1.7.4"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pingdom-to-graphite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,6 +11,22 @@ bindir: bin
|
|
|
11
11
|
cert_chain: []
|
|
12
12
|
date: 2012-08-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: bundler
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ~>
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 1.1.5
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ~>
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 1.1.5
|
|
14
30
|
- !ruby/object:Gem::Dependency
|
|
15
31
|
name: thor
|
|
16
32
|
requirement: !ruby/object:Gem::Requirement
|