arborist 0.0.1.pre20160128152542 → 0.0.1.pre20160606141735
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +2 -0
- data/ChangeLog +426 -1
- data/Manifest.txt +17 -2
- data/Nodes.md +70 -0
- data/Protocol.md +68 -9
- data/README.md +3 -5
- data/Rakefile +4 -1
- data/TODO.md +52 -20
- data/lib/arborist.rb +19 -6
- data/lib/arborist/cli.rb +39 -25
- data/lib/arborist/client.rb +97 -4
- data/lib/arborist/command/client.rb +2 -1
- data/lib/arborist/command/start.rb +51 -5
- data/lib/arborist/dependency.rb +286 -0
- data/lib/arborist/event.rb +7 -2
- data/lib/arborist/event/{node_matching.rb → node.rb} +11 -5
- data/lib/arborist/event/node_acked.rb +5 -7
- data/lib/arborist/event/node_delta.rb +30 -3
- data/lib/arborist/event/node_disabled.rb +16 -0
- data/lib/arborist/event/node_down.rb +10 -0
- data/lib/arborist/event/node_quieted.rb +11 -0
- data/lib/arborist/event/node_unknown.rb +10 -0
- data/lib/arborist/event/node_up.rb +10 -0
- data/lib/arborist/event/node_update.rb +2 -11
- data/lib/arborist/event/sys_node_added.rb +10 -0
- data/lib/arborist/event/sys_node_removed.rb +10 -0
- data/lib/arborist/exceptions.rb +4 -0
- data/lib/arborist/manager.rb +188 -18
- data/lib/arborist/manager/event_publisher.rb +1 -1
- data/lib/arborist/manager/tree_api.rb +92 -13
- data/lib/arborist/mixins.rb +17 -0
- data/lib/arborist/monitor.rb +10 -1
- data/lib/arborist/monitor/socket.rb +123 -2
- data/lib/arborist/monitor_runner.rb +6 -5
- data/lib/arborist/node.rb +420 -94
- data/lib/arborist/node/ack.rb +72 -0
- data/lib/arborist/node/host.rb +43 -8
- data/lib/arborist/node/resource.rb +73 -0
- data/lib/arborist/node/root.rb +6 -0
- data/lib/arborist/node/service.rb +89 -22
- data/lib/arborist/observer.rb +1 -1
- data/lib/arborist/subscription.rb +11 -6
- data/spec/arborist/client_spec.rb +93 -5
- data/spec/arborist/dependency_spec.rb +375 -0
- data/spec/arborist/event/node_delta_spec.rb +66 -0
- data/spec/arborist/event/node_down_spec.rb +84 -0
- data/spec/arborist/event/node_spec.rb +59 -0
- data/spec/arborist/event/node_update_spec.rb +14 -3
- data/spec/arborist/event_spec.rb +3 -3
- data/spec/arborist/manager/tree_api_spec.rb +295 -3
- data/spec/arborist/manager_spec.rb +240 -57
- data/spec/arborist/monitor_spec.rb +26 -3
- data/spec/arborist/node/ack_spec.rb +74 -0
- data/spec/arborist/node/host_spec.rb +79 -0
- data/spec/arborist/node/resource_spec.rb +56 -0
- data/spec/arborist/node/service_spec.rb +68 -2
- data/spec/arborist/node_spec.rb +288 -11
- data/spec/arborist/subscription_spec.rb +23 -14
- data/spec/arborist_spec.rb +0 -4
- data/spec/data/observers/webservices.rb +10 -2
- data/spec/spec_helper.rb +8 -0
- metadata +58 -15
- metadata.gz.sig +0 -0
- data/LICENSE +0 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a9424679d95a6df37569e5020831d81643fb54d
|
4
|
+
data.tar.gz: c5c116c695eab33c5a81f79acfebaebcf9a8396a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cab6cbc4c4ed3d7a194ba614cd808155c2f3563bbe1b10b90ac33fc2513ce9d8abed321fd8ea901abd361544eeaa8a564faf904a9c46e932ef1034529fea0164
|
7
|
+
data.tar.gz: ce941a82bacba31cfee78ce458df86abc9579e6763b0af249de2442fc2eea3a85f298cb2bf4828855cb5272b62648e153942b26c2c94b7513cfbc1efef960564
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
data/ChangeLog
CHANGED
@@ -1,3 +1,428 @@
|
|
1
|
+
2016-05-19 Mahlon E. Smith <mahlon@martini.nu>
|
2
|
+
|
3
|
+
* lib/arborist/node/resource.rb, spec/arborist/node/resource_spec.rb:
|
4
|
+
Resource nodes should also inherit addressing from their parent
|
5
|
+
hosts (as service nodes do).
|
6
|
+
|
7
|
+
This gives resource monitors a path to gathering information -- an
|
8
|
+
obvious example being load or disk checks over SNMP. Something that
|
9
|
+
isn't a service with a protocol and port, but a necessary piece of
|
10
|
+
information for overall host and service health, that should be
|
11
|
+
monitored (and potentially ack'ed/disabled) independently.
|
12
|
+
[b4324ab8853e] [tip]
|
13
|
+
|
14
|
+
2016-05-18 Mahlon E. Smith <mahlon@laika.com>
|
15
|
+
|
16
|
+
* lib/arborist/cli.rb:
|
17
|
+
Remove the default log level from the arborist command line client.
|
18
|
+
[39338420aaa0]
|
19
|
+
|
20
|
+
2016-05-04 Michael Granger <ged@FaerieMUD.org>
|
21
|
+
|
22
|
+
* Protocol.md, README.md, lib/arborist/dependency.rb,
|
23
|
+
lib/arborist/node.rb, spec/arborist/dependency_spec.rb,
|
24
|
+
spec/arborist/node_spec.rb:
|
25
|
+
Fix the way nodes' dependency state is restored
|
26
|
+
[325443abe6df] [github/master]
|
27
|
+
|
28
|
+
2016-04-27 Michael Granger <ged@FaerieMUD.org>
|
29
|
+
|
30
|
+
* README.md:
|
31
|
+
Remove the link to the "tutorial" until there is one
|
32
|
+
[650c1e0a0628]
|
33
|
+
|
34
|
+
* lib/arborist/client.rb, spec/arborist/client_spec.rb:
|
35
|
+
Add fetch with depth to the client
|
36
|
+
[96b36155fad0]
|
37
|
+
|
38
|
+
2016-04-20 Michael Granger <ged@FaerieMUD.org>
|
39
|
+
|
40
|
+
* arborist.gemspec:
|
41
|
+
Update the gemspec
|
42
|
+
[1cd5199203f9]
|
43
|
+
|
44
|
+
* lib/arborist/command/start.rb:
|
45
|
+
Don't default to profiling the start command
|
46
|
+
[8f480f46c441]
|
47
|
+
|
48
|
+
* Manifest.txt, lib/arborist/node/resource.rb,
|
49
|
+
spec/arborist/node/resource_spec.rb,
|
50
|
+
spec/arborist/node/service_spec.rb:
|
51
|
+
Add a `resource` host subnode type.
|
52
|
+
[880c4d370508]
|
53
|
+
|
54
|
+
* Protocol.md, TODO.md, lib/arborist/manager.rb,
|
55
|
+
lib/arborist/manager/tree_api.rb,
|
56
|
+
spec/arborist/manager/tree_api_spec.rb,
|
57
|
+
spec/arborist/manager_spec.rb:
|
58
|
+
Add a depth argument to the tree API "list" command.
|
59
|
+
[e319210e26cb]
|
60
|
+
|
61
|
+
* lib/arborist/monitor/socket.rb:
|
62
|
+
Use an empty string for the send in the UDP socket monitor
|
63
|
+
[4a43736bba05]
|
64
|
+
|
65
|
+
* Manifest.txt:
|
66
|
+
Update the manifest
|
67
|
+
[15f5c789b17c]
|
68
|
+
|
69
|
+
* spec/arborist/event/node_spec.rb:
|
70
|
+
Add specs for the node event base class
|
71
|
+
[d9b8715427c3]
|
72
|
+
|
73
|
+
* spec/data/observers/webservices.rb:
|
74
|
+
Fix the observer setup in spec data
|
75
|
+
[a990ba28f0a8]
|
76
|
+
|
77
|
+
* lib/arborist/monitor/socket.rb:
|
78
|
+
Add a to-do comment for a race condition
|
79
|
+
[7aab38ffd06a]
|
80
|
+
|
81
|
+
2016-04-18 Michael Granger <ged@FaerieMUD.org>
|
82
|
+
|
83
|
+
* lib/arborist/cli.rb, lib/arborist/command/start.rb:
|
84
|
+
Add profiling to the `start` command, clean up cli code a bit
|
85
|
+
[7117040136c4]
|
86
|
+
|
87
|
+
2016-04-18 Mahlon E. Smith <mahlon@martini.nu>
|
88
|
+
|
89
|
+
* TODO.md:
|
90
|
+
Update TODO with some additional ideas.
|
91
|
+
[f81ee9253773]
|
92
|
+
|
93
|
+
2016-04-14 Mahlon E. Smith <mahlon@martini.nu>
|
94
|
+
|
95
|
+
* lib/arborist/monitor/socket.rb, lib/arborist/node.rb:
|
96
|
+
Checkpoint commit.
|
97
|
+
|
98
|
+
- Add UDP checking, based on the TCP checker.
|
99
|
+
- Fix logging for quieted nodes.
|
100
|
+
- Start updating the status_changed node attribute on status
|
101
|
+
transitions.
|
102
|
+
[527fafd7c668]
|
103
|
+
|
104
|
+
* TODO.md:
|
105
|
+
Add a quick blurb to the TODO.
|
106
|
+
[6f93cc30a5e1]
|
107
|
+
|
108
|
+
2016-04-14 Michael Granger <ged@FaerieMUD.org>
|
109
|
+
|
110
|
+
* .hgignore, .hoerc, lib/arborist/monitor_runner.rb,
|
111
|
+
spec/arborist/manager_spec.rb:
|
112
|
+
Fix the monitor running after adding negative criteria.
|
113
|
+
[46d6c436174c]
|
114
|
+
|
115
|
+
2016-04-13 Michael Granger <ged@FaerieMUD.org>
|
116
|
+
|
117
|
+
* lib/arborist/client.rb, lib/arborist/event/node.rb,
|
118
|
+
lib/arborist/manager.rb, lib/arborist/manager/tree_api.rb,
|
119
|
+
lib/arborist/monitor_runner.rb, spec/arborist/client_spec.rb,
|
120
|
+
spec/arborist/manager/tree_api_spec.rb,
|
121
|
+
spec/arborist/manager_spec.rb:
|
122
|
+
Implement exclude for node matching/monitors
|
123
|
+
[99d5e31791a3]
|
124
|
+
|
125
|
+
* lib/arborist/monitor.rb, spec/arborist/monitor_spec.rb:
|
126
|
+
Handle system call errors while running the monitor command
|
127
|
+
[b4ca615e0b32]
|
128
|
+
|
129
|
+
* lib/arborist/node.rb, lib/arborist/node/ack.rb,
|
130
|
+
spec/arborist/node/ack_spec.rb:
|
131
|
+
Fix the status description during state changes with ack set.
|
132
|
+
[40c91d7c3131]
|
133
|
+
|
134
|
+
* Manifest.txt, TODO.md, arborist.gemspec, lib/arborist/node.rb,
|
135
|
+
lib/arborist/node/ack.rb, spec/arborist/node/ack_spec.rb:
|
136
|
+
Break node acks out into a class, fix serialization issues
|
137
|
+
[d9d01450a189]
|
138
|
+
|
139
|
+
* lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
140
|
+
Fix node ack-clearing
|
141
|
+
[b6694a5b8368]
|
142
|
+
|
143
|
+
2016-04-12 Mahlon E. Smith <mahlon@martini.nu>
|
144
|
+
|
145
|
+
* lib/arborist/client.rb:
|
146
|
+
Add acknowledgement helpers for Arborist::Client.
|
147
|
+
[98dae44fa322]
|
148
|
+
|
149
|
+
2016-04-11 Michael Granger <ged@FaerieMUD.org>
|
150
|
+
|
151
|
+
* Manifest.txt, lib/arborist/event/node_delta.rb,
|
152
|
+
lib/arborist/node/host.rb, spec/arborist/node_spec.rb:
|
153
|
+
Add an override to node.delta events
|
154
|
+
|
155
|
+
The change to include node attributes in all `node.*` events broke
|
156
|
+
the delta event, and changed what the `node.ack` events look like.
|
157
|
+
|
158
|
+
This fixes `node.delta` events to look like they did before (only
|
159
|
+
including the diff in their payload), and updates the specs for the
|
160
|
+
`node.ack` event to expect the new-style payload.
|
161
|
+
[af21efce26e3]
|
162
|
+
|
163
|
+
* .tm_properties, lib/arborist/event/node.rb,
|
164
|
+
lib/arborist/event/node_update.rb,
|
165
|
+
spec/arborist/event/node_down_spec.rb,
|
166
|
+
spec/arborist/event/node_update_spec.rb:
|
167
|
+
Include node payload in all node events
|
168
|
+
[8257c7337a2b]
|
169
|
+
|
170
|
+
* TODO.md:
|
171
|
+
Update TODO
|
172
|
+
[fca1215eee50]
|
173
|
+
|
174
|
+
* lib/arborist/manager/tree_api.rb:
|
175
|
+
Log client api commands at debug instead of info
|
176
|
+
[a497308b8723]
|
177
|
+
|
178
|
+
2016-04-06 Michael Granger <ged@FaerieMUD.org>
|
179
|
+
|
180
|
+
* TODO.md, lib/arborist/manager.rb, lib/arborist/node.rb,
|
181
|
+
spec/arborist/manager_spec.rb:
|
182
|
+
Don't cross quieted nodes in default traversal
|
183
|
+
[92756b2da807]
|
184
|
+
|
185
|
+
* TODO.md:
|
186
|
+
Update TO DO list
|
187
|
+
[7a24db395228]
|
188
|
+
|
189
|
+
* lib/arborist/node.rb:
|
190
|
+
Don't log dependency state on every node.up event
|
191
|
+
[8585c6dd3240]
|
192
|
+
|
193
|
+
* lib/arborist/node/service.rb:
|
194
|
+
Don't restore addresses for marshalled services
|
195
|
+
[1665d36ffadd]
|
196
|
+
|
197
|
+
* lib/arborist/cli.rb:
|
198
|
+
Fix logging in the cli
|
199
|
+
[25e09c2f43a9]
|
200
|
+
|
201
|
+
* Manifest.txt, Nodes.md, TODO.md, arborist.gemspec, lib/arborist.rb,
|
202
|
+
lib/arborist/cli.rb, lib/arborist/command/client.rb,
|
203
|
+
lib/arborist/command/start.rb, lib/arborist/dependency.rb,
|
204
|
+
lib/arborist/event.rb, lib/arborist/event/node.rb,
|
205
|
+
lib/arborist/event/node_acked.rb, lib/arborist/event/node_delta.rb,
|
206
|
+
lib/arborist/event/node_disabled.rb,
|
207
|
+
lib/arborist/event/node_down.rb,
|
208
|
+
lib/arborist/event/node_matching.rb,
|
209
|
+
lib/arborist/event/node_quieted.rb,
|
210
|
+
lib/arborist/event/node_unknown.rb, lib/arborist/event/node_up.rb,
|
211
|
+
lib/arborist/event/node_update.rb,
|
212
|
+
lib/arborist/event/sys_node_added.rb,
|
213
|
+
lib/arborist/event/sys_node_removed.rb, lib/arborist/exceptions.rb,
|
214
|
+
lib/arborist/manager.rb, lib/arborist/manager/event_publisher.rb,
|
215
|
+
lib/arborist/manager/tree_api.rb, lib/arborist/node.rb,
|
216
|
+
lib/arborist/node/host.rb, lib/arborist/node/service.rb,
|
217
|
+
lib/arborist/subscription.rb, spec/arborist/dependency_spec.rb,
|
218
|
+
spec/arborist/event/node_delta_spec.rb,
|
219
|
+
spec/arborist/event/node_update_spec.rb,
|
220
|
+
spec/arborist/event_spec.rb, spec/arborist/manager_spec.rb,
|
221
|
+
spec/arborist/monitor_spec.rb, spec/arborist/node/host_spec.rb,
|
222
|
+
spec/arborist/node/service_spec.rb, spec/arborist/node_spec.rb,
|
223
|
+
spec/arborist/subscription_spec.rb:
|
224
|
+
Add ability to express secondary dependencies
|
225
|
+
* * * Experimental sexps using a Struct
|
226
|
+
[ed4f0655b4b6]
|
227
|
+
|
228
|
+
2016-03-02 Michael Granger <ged@FaerieMUD.org>
|
229
|
+
|
230
|
+
* TODO.md:
|
231
|
+
Update the to-do list
|
232
|
+
[5ff19d1aefbd]
|
233
|
+
|
234
|
+
* arborist.gemspec, lib/arborist/cli.rb, lib/arborist/event.rb,
|
235
|
+
lib/arborist/event/node_delta.rb, lib/arborist/mixins.rb,
|
236
|
+
lib/arborist/node.rb, spec/arborist/event/node_delta_spec.rb:
|
237
|
+
Fix matching for node delta events
|
238
|
+
[c3ad32bd54a2]
|
239
|
+
|
240
|
+
* lib/arborist/manager.rb:
|
241
|
+
Remove unused Manager constant
|
242
|
+
[8079f5cdaecb]
|
243
|
+
|
244
|
+
* .hoerc:
|
245
|
+
Don't include state files in the manifest
|
246
|
+
[72aa5a4204b5]
|
247
|
+
|
248
|
+
* .hgignore, lib/arborist.rb, lib/arborist/manager.rb,
|
249
|
+
lib/arborist/node.rb, lib/arborist/node/root.rb,
|
250
|
+
spec/arborist/manager_spec.rb, spec/arborist/node_spec.rb:
|
251
|
+
Save and restore tree state across restarts
|
252
|
+
* * * fold this
|
253
|
+
[f002d3b7cb8b]
|
254
|
+
|
255
|
+
2016-02-24 Michael Granger <ged@FaerieMUD.org>
|
256
|
+
|
257
|
+
* TODO.md:
|
258
|
+
Update the TODO list
|
259
|
+
[47ef6bc4fe24]
|
260
|
+
|
261
|
+
2016-02-22 Michael Granger <ged@FaerieMUD.org>
|
262
|
+
|
263
|
+
* TODO.md, lib/arborist/client.rb, lib/arborist/manager/tree_api.rb,
|
264
|
+
spec/arborist/client_spec.rb,
|
265
|
+
spec/arborist/manager/tree_api_spec.rb:
|
266
|
+
Add MODIFY to the tree api/client.
|
267
|
+
[6cfcaabc4a68]
|
268
|
+
|
269
|
+
* lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
270
|
+
Fix Node tags modification
|
271
|
+
[7ede931a8214]
|
272
|
+
|
273
|
+
2016-02-10 Michael Granger <ged@FaerieMUD.org>
|
274
|
+
|
275
|
+
* TODO.md, lib/arborist/client.rb, lib/arborist/exceptions.rb,
|
276
|
+
lib/arborist/manager.rb, lib/arborist/manager/tree_api.rb,
|
277
|
+
lib/arborist/node.rb, lib/arborist/node/host.rb,
|
278
|
+
lib/arborist/node/service.rb, spec/arborist/client_spec.rb,
|
279
|
+
spec/arborist/manager/tree_api_spec.rb,
|
280
|
+
spec/arborist/manager_spec.rb, spec/arborist/node/service_spec.rb,
|
281
|
+
spec/arborist_spec.rb, spec/spec_helper.rb:
|
282
|
+
Added GRAFT to the tree API
|
283
|
+
[9c41353696cb]
|
284
|
+
|
285
|
+
* Protocol.md, TODO.md, lib/arborist/client.rb,
|
286
|
+
lib/arborist/manager/tree_api.rb, spec/arborist/client_spec.rb,
|
287
|
+
spec/arborist/manager/tree_api_spec.rb:
|
288
|
+
Added PRUNE to the tree API.
|
289
|
+
[43af5daf67a7]
|
290
|
+
|
291
|
+
* TODO.md:
|
292
|
+
Updated the TODO list
|
293
|
+
[b30a77db11dd]
|
294
|
+
|
295
|
+
* LICENSE, Manifest.txt, Rakefile, arborist.gemspec:
|
296
|
+
Build system cleanup
|
297
|
+
[5fe75989da8e]
|
298
|
+
|
299
|
+
2016-02-08 Michael Granger <ged@FaerieMUD.org>
|
300
|
+
|
301
|
+
* lib/arborist.rb, lib/arborist/monitor.rb, lib/arborist/node.rb,
|
302
|
+
lib/arborist/node/host.rb, lib/arborist/node/service.rb,
|
303
|
+
lib/arborist/observer.rb, spec/arborist/node/host_spec.rb,
|
304
|
+
spec/arborist/node_spec.rb, spec/spec_helper.rb:
|
305
|
+
Add subnode declarations and add the infrastructure for graft/modify
|
306
|
+
[bfcbe35fc82f]
|
307
|
+
|
308
|
+
2016-02-03 Michael Granger <ged@FaerieMUD.org>
|
309
|
+
|
310
|
+
* TODO.md:
|
311
|
+
Add some more stuff to the TODO doc
|
312
|
+
[593114f4d409]
|
313
|
+
|
314
|
+
* Protocol.md:
|
315
|
+
Add the node operations to the Protocol doc
|
316
|
+
[250d32bc3eb6]
|
317
|
+
|
318
|
+
* Merge with 84af7642624c
|
319
|
+
[d795d8884afa]
|
320
|
+
|
321
|
+
2016-02-02 Mahlon E. Smith <mahlon@martini.nu>
|
322
|
+
|
323
|
+
* .gems, Rakefile, arborist.gemspec:
|
324
|
+
oop, highline also needs to be a dependency.
|
325
|
+
[84af7642624c]
|
326
|
+
|
327
|
+
* .gems, Rakefile:
|
328
|
+
Add GLI dependency.
|
329
|
+
[d73277230ec2]
|
330
|
+
|
331
|
+
2016-02-03 Michael Granger <ged@FaerieMUD.org>
|
332
|
+
|
333
|
+
* lib/arborist/node.rb:
|
334
|
+
Add API docs for the state_machines generated methods
|
335
|
+
[00d6b23ff90a]
|
336
|
+
|
337
|
+
2016-01-28 Michael Granger <ged@FaerieMUD.org>
|
338
|
+
|
339
|
+
* README.md, Rakefile, arborist.gemspec:
|
340
|
+
Fix the link list in the README, 'docs' rake target.
|
341
|
+
[6479be826ccc]
|
342
|
+
|
343
|
+
* Manifest.txt, README.md, Tutorial.md:
|
344
|
+
Update the README and add a stub for the Tutorial mentioned in it.
|
345
|
+
[f020438be6d9]
|
346
|
+
|
347
|
+
* spec/arborist/client_spec.rb, spec/spec_helper.rb:
|
348
|
+
Skip the spec that requires the ZMQ workaround under CI
|
349
|
+
|
350
|
+
- The ZMQ registration bug workaround never works in Semaphore's
|
351
|
+
environment, so just skip that spec there.
|
352
|
+
[3ec418f69498]
|
353
|
+
|
354
|
+
* Manifest.txt, lib/arborist/cli.rb, spec/arborist_spec.rb:
|
355
|
+
Fix leaking the root node singleton between specs.
|
356
|
+
|
357
|
+
- Also silences some noisy logging from the config specs.
|
358
|
+
[570a00a9311d]
|
359
|
+
|
360
|
+
* lib/arborist.rb, lib/arborist/node.rb,
|
361
|
+
spec/arborist/manager/tree_api_spec.rb,
|
362
|
+
spec/arborist/monitor_spec.rb, spec/arborist_spec.rb,
|
363
|
+
spec/spec_helper.rb:
|
364
|
+
Fix some specs; still an order-dependent failure for seed 46570
|
365
|
+
[e23d2b9f8f31]
|
366
|
+
|
367
|
+
* bin/amanagerd, bin/amonitord, bin/aobserverd, bin/arborist,
|
368
|
+
lib/arborist/cli.rb, lib/arborist/client.rb,
|
369
|
+
lib/arborist/command/client.rb, lib/arborist/command/config.rb,
|
370
|
+
lib/arborist/command/start.rb, lib/arborist/command/watch.rb,
|
371
|
+
lib/arborist/event/node_matching.rb, lib/arborist/observer.rb,
|
372
|
+
spec/data/monitors/pings.rb:
|
373
|
+
Add a CLI and consolidate daemons into a "start" command
|
374
|
+
[8180949a5e2c]
|
375
|
+
|
376
|
+
* lib/arborist.rb, lib/arborist/loader.rb,
|
377
|
+
lib/arborist/loader/file.rb, lib/arborist/manager.rb,
|
378
|
+
lib/arborist/monitor.rb, lib/arborist/node.rb,
|
379
|
+
lib/arborist/observer.rb:
|
380
|
+
Add a loader-plugin system instead of assuming files
|
381
|
+
[6871a50affeb]
|
382
|
+
|
383
|
+
2016-01-20 Michael Granger <ged@FaerieMUD.org>
|
384
|
+
|
385
|
+
* lib/arborist/node.rb:
|
386
|
+
Whitespace fix
|
387
|
+
[4ad9a2f6dd09]
|
388
|
+
|
389
|
+
* spec/arborist/node_spec.rb, spec/data/monitors/port_checks.rb:
|
390
|
+
Remove a note from the port checks example after discussion
|
391
|
+
[e41ae3591da2]
|
392
|
+
|
393
|
+
* TODO.md:
|
394
|
+
Add some more TODO stuff
|
395
|
+
[cf1ef68d637d]
|
396
|
+
|
397
|
+
* Rakefile:
|
398
|
+
Fix license copypasta in the Rakefile
|
399
|
+
[83ab92cd92b1]
|
400
|
+
|
401
|
+
* TODO.md, arborist.gemspec, lib/arborist/manager.rb,
|
402
|
+
lib/arborist/node.rb, spec/arborist/manager_spec.rb,
|
403
|
+
spec/arborist/node_spec.rb:
|
404
|
+
Add 'disabled' node state.
|
405
|
+
[747e81edf7e4]
|
406
|
+
|
407
|
+
* .hgignore, Rakefile, arborist.gemspec, lib/arborist/node/service.rb:
|
408
|
+
Updates for the gem build.
|
409
|
+
[de06b562b8bd]
|
410
|
+
|
411
|
+
2015-12-31 Michael Granger <ged@FaerieMUD.org>
|
412
|
+
|
413
|
+
* alerts/host_down.rb, images/Leaf.sketch, monitoring_featureset.txt:
|
414
|
+
Removing some miscellanous files
|
415
|
+
[a2f8b47a4b2a]
|
416
|
+
|
417
|
+
2015-12-30 Michael Granger <ged@FaerieMUD.org>
|
418
|
+
|
419
|
+
* .gems, .hoerc, Manifest.txt, Observers.md, Rakefile,
|
420
|
+
arborist.gemspec, lib/arborist/observer/action.rb,
|
421
|
+
lib/arborist/observer/summarize.rb,
|
422
|
+
spec/arborist/observer/summarize_spec.rb:
|
423
|
+
Add scheduling to observers.
|
424
|
+
[55599200bf56]
|
425
|
+
|
1
426
|
2015-12-16 Michael Granger <ged@FaerieMUD.org>
|
2
427
|
|
3
428
|
* Observers.md, bin/amonitord, bin/aobserverd,
|
@@ -8,7 +433,7 @@
|
|
8
433
|
spec/arborist/observer_spec.rb, spec/data/observers/auditor.rb:
|
9
434
|
Add Observer#summarize actions
|
10
435
|
* * * Hook Action and Summary into Observers
|
11
|
-
[335823f98550]
|
436
|
+
[335823f98550]
|
12
437
|
|
13
438
|
2015-12-14 Michael Granger <ged@FaerieMUD.org>
|
14
439
|
|