uptrends 0.4.0 → 0.5.0

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
  SHA1:
3
- metadata.gz: 746c1068cf00e9f2f419d3188c0a16f71834ff4e
4
- data.tar.gz: eb43107d3d62e94e7489c0e976943cbd4293c367
3
+ metadata.gz: 78fa8b9b3cc7b45b11bacd36e2c011c66e272830
4
+ data.tar.gz: 94ced9671b00a46aa74dbb7d32e94bee4eb0b6f1
5
5
  SHA512:
6
- metadata.gz: 3bbf3f9381879d87824d8f23db448193fa622bc313c4989e9cc70c24881a760aa0448c63df0413203ebb4868195a4327100fbf3296b0ecfa554086072d638d98
7
- data.tar.gz: bd898163b685d2f0b6422d42e96540aa56371839a48c146c63fd950d4aa5b815c948b3089c080f8c70cda1d77bfad760aa08bad5d417ae459a5e309d406ae0b6
6
+ metadata.gz: f6a1536e1e06ecf5c14ced0ef67ccc6c28cddc6022ced43d874489ec3ee25a68819b524ee99efd24729827b667976322325fa68909710192836cee034bc77eb6
7
+ data.tar.gz: 0af5cd18bef97137322ec8c2583389ae698db370b09ae55ca5eb397b479dea89a55ccc8692ad71ac1f20b9b236ce0c34710161ab46c27cba0b515caf94b8191f
@@ -0,0 +1,6 @@
1
+ # Uptrends Gem Changelog
2
+
3
+ ## 0.5.0
4
+ - Added Uptrends::Monitor class.
5
+ - Added Uptrends::Client#monitors methods to fetch all monitors.
6
+
@@ -0,0 +1,20 @@
1
+ require 'json'
2
+ require 'uptrends/utils'
3
+
4
+ module Uptrends
5
+ class Base
6
+
7
+ attr_reader :original_hash, :attributes
8
+
9
+ def initialize(probe_hash = {})
10
+ @original_hash = probe_hash
11
+
12
+ Uptrends::Utils.gen_and_set_accessors(self)
13
+ end
14
+
15
+ def to_s
16
+ Uptrends::Utils.to_s(self)
17
+ end
18
+
19
+ end
20
+ end
@@ -0,0 +1,8 @@
1
+ require 'json'
2
+ require 'uptrends/utils'
3
+ require 'uptrends/base'
4
+
5
+ module Uptrends
6
+ class Checkpoint < Base
7
+ end
8
+ end
@@ -1,6 +1,7 @@
1
1
  require "httparty"
2
2
  require "uptrends/probe"
3
3
  require "uptrends/probe_group"
4
+ require "uptrends/checkpoint"
4
5
  require "uptrends/utils"
5
6
  require "uptrends/api_error"
6
7
 
@@ -32,6 +33,14 @@ module Uptrends
32
33
  end
33
34
  end
34
35
 
36
+ def checkpoints(opts = {})
37
+ if opts[:refresh]
38
+ @checkpoints = get_checkpoints
39
+ else
40
+ @checkpoints ||= get_checkpoints
41
+ end
42
+ end
43
+
35
44
  def probe_groups
36
45
  @probe_groups ||= get_probe_groups
37
46
  end
@@ -108,6 +117,10 @@ module Uptrends
108
117
  get_all(Uptrends::Probe)
109
118
  end
110
119
 
120
+ def get_checkpoints
121
+ get_all(Uptrends::Checkpoint)
122
+ end
123
+
111
124
  def get_probe_groups
112
125
  get_all(Uptrends::ProbeGroup)
113
126
  end
@@ -118,6 +131,8 @@ module Uptrends
118
131
  uri = '/probegroups'
119
132
  when Uptrends::Probe
120
133
  uri = '/probes'
134
+ when Uptrends::Checkpoint
135
+ uri = '/checkpointservers'
121
136
  else
122
137
  fail("You passed an unknown type. Try Uptrends::Probe or Uptrends::ProbeGroup")
123
138
  end
@@ -1,20 +1,8 @@
1
1
  require 'json'
2
2
  require 'uptrends/utils'
3
+ require 'uptrends/base'
3
4
 
4
5
  module Uptrends
5
- class Probe
6
-
7
- attr_reader :original_hash, :attributes
8
-
9
- def initialize(probe_hash = {})
10
- @original_hash = probe_hash
11
-
12
- Uptrends::Utils.gen_and_set_accessors(self)
13
- end
14
-
15
- def to_s
16
- Uptrends::Utils.to_s(self)
17
- end
18
-
6
+ class Probe < Base
19
7
  end
20
8
  end
@@ -1,20 +1,8 @@
1
1
  require 'json'
2
2
  require 'uptrends/utils'
3
+ require 'uptrends/base'
3
4
 
4
5
  module Uptrends
5
- class ProbeGroup
6
-
7
- attr_reader :original_hash, :attributes
8
-
9
- def initialize(probe_group_hash = {})
10
- @original_hash = probe_group_hash
11
-
12
- Uptrends::Utils.gen_and_set_accessors(self)
13
- end
14
-
15
- def to_s
16
- Uptrends::Utils.to_s(self)
17
- end
18
-
6
+ class ProbeGroup < Base
19
7
  end
20
8
  end
@@ -1,3 +1,3 @@
1
1
  module Uptrends
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uptrends
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Barnett
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-21 00:00:00.000000000 Z
11
+ date: 2014-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -49,6 +49,7 @@ extra_rdoc_files: []
49
49
  files:
50
50
  - ".gitignore"
51
51
  - ".travis.yml"
52
+ - CHANGELOG.md
52
53
  - Gemfile
53
54
  - LICENSE.txt
54
55
  - README.md
@@ -58,6 +59,8 @@ files:
58
59
  - examples/update_all_probe_attributes.rb
59
60
  - lib/uptrends.rb
60
61
  - lib/uptrends/api_error.rb
62
+ - lib/uptrends/base.rb
63
+ - lib/uptrends/checkpoint.rb
61
64
  - lib/uptrends/client.rb
62
65
  - lib/uptrends/probe.rb
63
66
  - lib/uptrends/probe_group.rb