arborist 0.3.0 → 0.4.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/ChangeLog +1646 -1569
- data/History.md +14 -0
- data/Rakefile +1 -1
- data/lib/arborist.rb +2 -2
- data/lib/arborist/client.rb +3 -3
- data/lib/arborist/command/summary.rb +1 -1
- data/lib/arborist/event.rb +8 -0
- data/lib/arborist/event/node.rb +4 -3
- data/lib/arborist/event/node_delta.rb +7 -0
- data/lib/arborist/event/node_update.rb +7 -0
- data/lib/arborist/monitor/socket.rb +1 -1
- data/lib/arborist/monitor_runner.rb +2 -4
- data/lib/arborist/node.rb +124 -28
- data/lib/arborist/node/root.rb +1 -1
- data/lib/arborist/observer/action.rb +15 -2
- data/spec/arborist/event/node_spec.rb +3 -1
- data/spec/arborist/event_spec.rb +10 -0
- data/spec/arborist/manager_spec.rb +20 -22
- data/spec/arborist/mixins_spec.rb +3 -1
- data/spec/arborist/node_spec.rb +76 -16
- data/spec/arborist/observer/action_spec.rb +25 -0
- metadata +27 -32
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a53ef05adb439a2d8713265a47b3a5badf3aa659bda01fcd07f4c1aa0afc38a8
|
4
|
+
data.tar.gz: d6dee0a2a5f162a36eab79cdee6efcbf24738351eef0a71bc9d94a73baf1524c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00aca3d516b8f183d6b046c735c863636264c2c51a6a79a444207e06aaab7e7f829b6d2bd23cc88125f4ac77f5ec1aa7ee2cdd7551be4ea209468281ac53d79f
|
7
|
+
data.tar.gz: e65027a29c89e9c74cece233fd7cea267a3d2f6a4b67f56d0d14a222b381062da586774ca4e403629288790930e2de7205f45cca6572e177d9cb4c92b89e2047
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,1855 +1,1932 @@
|
|
1
|
+
2018-11-21 Mahlon E. Smith <mahlon@martini.nu>
|
2
|
+
|
3
|
+
@ * .hgsigs:
|
4
|
+
| Added signature for changeset b4227ca091d2
|
5
|
+
| [5f37211d2302] [tip]
|
6
|
+
|
|
7
|
+
o * .hgtags:
|
8
|
+
| Added tag v0.4.0 for changeset cfafc1efb759
|
9
|
+
| [b4227ca091d2]
|
10
|
+
|
|
11
|
+
o * History.md, lib/arborist.rb:
|
12
|
+
| Update history for 0.4.0 release.
|
13
|
+
| [cfafc1efb759] [v0.4.0]
|
14
|
+
|
|
15
|
+
2018-10-19 Michael Granger <ged@FaerieMUD.org>
|
16
|
+
|
17
|
+
o * Rakefile, arborist.gemspec, lib/arborist/client.rb,
|
18
|
+
| lib/arborist/monitor/socket.rb, lib/arborist/monitor_runner.rb,
|
19
|
+
| lib/arborist/node.rb, lib/arborist/node/root.rb,
|
20
|
+
| spec/arborist/manager_spec.rb, spec/arborist/mixins_spec.rb,
|
21
|
+
| spec/arborist/node_spec.rb:
|
22
|
+
| Clean up a bunch of warnings
|
23
|
+
| [e726bd75bd8d]
|
24
|
+
|
|
25
|
+
2018-11-07 Michael Granger <ged@FaerieMUD.org>
|
26
|
+
|
27
|
+
o * lib/arborist/event.rb, lib/arborist/event/node_delta.rb,
|
28
|
+
| lib/arborist/event/node_update.rb, lib/arborist/node.rb,
|
29
|
+
| spec/arborist/event_spec.rb, spec/arborist/node_spec.rb:
|
30
|
+
| Add informational node predicate to node
|
31
|
+
| [2444837aae2a]
|
32
|
+
|
|
33
|
+
| o * .hgignore, lib/arborist/event/node.rb, lib/arborist/node.rb:
|
34
|
+
|/ Add more event instrumentation
|
35
|
+
| [ab5b16539fdf]
|
36
|
+
|
|
37
|
+
2018-10-19 Michael Granger <ged@FaerieMUD.org>
|
38
|
+
|
39
|
+
| o * spec/arborist/node_spec.rb:
|
40
|
+
|/ Add better coverage for node operational attribute method
|
41
|
+
| [cd09eab560b7]
|
42
|
+
|
|
43
|
+
2018-10-17 Mahlon E. Smith <mahlon@martini.nu>
|
44
|
+
|
45
|
+
o * lib/arborist/event/node.rb, lib/arborist/node.rb,
|
46
|
+
| lib/arborist/observer/action.rb, spec/arborist/event/node_spec.rb,
|
47
|
+
| spec/arborist/node_spec.rb, spec/arborist/observer/action_spec.rb:
|
48
|
+
| Provide a rudamentary node flap detection, that is part of event
|
49
|
+
| metadata for observers to act on.
|
50
|
+
| [f7b7f7dede40]
|
51
|
+
|
|
52
|
+
2018-09-10 Will Fife <wfife@laika.com>
|
53
|
+
|
54
|
+
o * lib/arborist/command/summary.rb:
|
55
|
+
| Add an alias for the 'summary' CLI command as 'status'.
|
56
|
+
| [65ad40fe78bd]
|
57
|
+
|
|
58
|
+
2018-09-13 Mahlon E. Smith <mahlon@martini.nu>
|
59
|
+
|
60
|
+
o * lib/arborist/node.rb:
|
61
|
+
| Add 'warnings' to the operational attributes.
|
62
|
+
| [c22daed2c244]
|
63
|
+
|
|
1
64
|
2018-08-29 Michael Granger <ged@FaerieMUD.org>
|
2
65
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
66
|
+
o * .hgtags:
|
67
|
+
| Added tag v0.3.0 for changeset 85964c7fbbd1
|
68
|
+
| [cdab66466740]
|
69
|
+
|
|
70
|
+
o * .hgsigs:
|
71
|
+
| Added signature for changeset db70f921e653
|
72
|
+
| [85964c7fbbd1] [v0.3.0]
|
73
|
+
|
|
74
|
+
o * History.md, lib/arborist.rb:
|
75
|
+
| Bunp the minor version, update history.
|
76
|
+
| [db70f921e653]
|
77
|
+
|
|
78
|
+
o * Merge with 141000d6bec3
|
79
|
+
|\ [2a086894960c]
|
80
|
+
| |
|
81
|
+
| o * Manifest.txt, arborist.gemspec, spec/arborist/client_spec.rb,
|
82
|
+
| | spec/arborist/observer_runner_spec.rb:
|
83
|
+
| | Update the manifest, fix some uninitialized warnings from specs.
|
84
|
+
| | [f3e8b0c913ef]
|
85
|
+
| |
|
86
|
+
| o * lib/arborist/command/run_once.rb:
|
87
|
+
| | Add a `run` command for testing monitors
|
88
|
+
| | [1bc6155c5e9c]
|
89
|
+
| |
|
90
|
+
| o * lib/arborist/node/host.rb:
|
91
|
+
| | Shut up warnings about uninitialized instance vars
|
92
|
+
| | [4329c98ea325]
|
93
|
+
| |
|
17
94
|
2018-08-28 Michael Granger <ged@FaerieMUD.org>
|
18
95
|
|
19
|
-
|
20
|
-
|
21
|
-
|
96
|
+
| o * spec/spec_helper.rb:
|
97
|
+
| | Enabled RSpec warnings, example profiles
|
98
|
+
| | [404f8d609524]
|
99
|
+
| |
|
100
|
+
2018-08-29 Mahlon E. Smith <mahlon@martini.nu>
|
22
101
|
|
102
|
+
o | * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
103
|
+
|/ Acking an already acked node transitions the node to disabled.
|
104
|
+
| [141000d6bec3]
|
105
|
+
|
|
23
106
|
2018-08-24 Mahlon E. Smith <mahlon@martini.nu>
|
24
107
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
108
|
+
o * lib/arborist/client.rb:
|
109
|
+
| Use the proper exception when raising errors from the client,
|
110
|
+
| instead of RuntimeError.
|
111
|
+
| [ff0b0fea9a9f]
|
112
|
+
|
|
30
113
|
2018-08-15 Mahlon E. Smith <mahlon@martini.nu>
|
31
114
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
115
|
+
o * lib/arborist/command/tree.rb:
|
116
|
+
| Add raw formatting for YAML and JSON to the tree command.
|
117
|
+
| [f0b978d49569]
|
118
|
+
|
|
119
|
+
o * Rakefile, lib/arborist/command/ack.rb:
|
120
|
+
| Optionally continue attempting to ack/clear nodes if some are
|
121
|
+
| invalid.
|
122
|
+
| [d379568d92cc]
|
123
|
+
|
|
124
|
+
o * lib/arborist/monitor/socket.rb:
|
125
|
+
| Expose socket batch size to configurability.
|
126
|
+
| [17866a8a66d6]
|
127
|
+
|
|
45
128
|
2018-08-08 Michael Granger <ged@FaerieMUD.org>
|
46
129
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
130
|
+
o * .hgtags:
|
131
|
+
| Added tag v0.2.0 for changeset b5d07bcc4762
|
132
|
+
| [0a39e734c94d]
|
133
|
+
|
|
134
|
+
o * .hgsigs:
|
135
|
+
| Added signature for changeset b7725c5136bc
|
136
|
+
| [b5d07bcc4762] [v0.2.0]
|
137
|
+
|
|
138
|
+
o * History.md, README.md, TODO.md, arborist.gemspec, lib/arborist.rb:
|
139
|
+
| Bump the minor version, update history and the to-do file.
|
140
|
+
| [b7725c5136bc]
|
141
|
+
|
|
59
142
|
2018-08-01 Mahlon E. Smith <mahlon@martini.nu>
|
60
143
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
144
|
+
o * lib/arborist/manager.rb:
|
145
|
+
| Add debug log for checkpoint timing.
|
146
|
+
| [734e01730be6]
|
147
|
+
|
|
65
148
|
2018-07-27 Mahlon E. Smith <mahlon@martini.nu>
|
66
149
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
150
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
151
|
+
| Fix behavior for child nodes whose parent transitions from 'down' to
|
152
|
+
| 'warn'.
|
153
|
+
| [b882060af0b3]
|
154
|
+
|
|
72
155
|
2018-07-17 Mahlon E. Smith <mahlon@martini.nu>
|
73
156
|
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
157
|
+
o * lib/arborist/cli.rb, lib/arborist/command/summary.rb:
|
158
|
+
| Explicitly require tty* packages.
|
159
|
+
|
|
160
|
+
| (Avoid this garbage: https://github.com/piotrmurach/tty/issues/44)
|
161
|
+
| [a2d9e1f2152b]
|
162
|
+
|
|
80
163
|
2018-06-13 Mahlon E. Smith <mahlon@martini.nu>
|
81
164
|
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
165
|
+
o * lib/arborist/command/tree.rb:
|
166
|
+
| Implicitly return the path array.
|
167
|
+
| [fbcb8bf9ddfe]
|
168
|
+
|
|
86
169
|
2018-06-27 Michael Granger <ged@FaerieMUD.org>
|
87
170
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
171
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
172
|
+
| Add acknowledgement changes to delta events.
|
173
|
+
| [f6b57c73929e]
|
174
|
+
|
|
175
|
+
o * Manifest.txt, lib/arborist/monitor/connection_batching.rb,
|
176
|
+
| lib/arborist/monitor/socket.rb:
|
177
|
+
| Add batching to the socket monitor
|
178
|
+
| [1f4e91e437b5]
|
179
|
+
|
|
97
180
|
2018-06-13 Mahlon E. Smith <mahlon@martini.nu>
|
98
181
|
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
182
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
183
|
+
| Allow the user config hash to be altered from the modify API call.
|
184
|
+
| [035793721d25]
|
185
|
+
|
|
103
186
|
2018-06-12 Mahlon E. Smith <mahlon@martini.nu>
|
104
187
|
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
188
|
+
o * lib/arborist/command/tree.rb:
|
189
|
+
| Add a --path argument to the 'tree' command, that displays parents
|
190
|
+
| to the root when specified.
|
191
|
+
| [f671d5b77b8f]
|
192
|
+
|
|
110
193
|
2018-06-04 Mahlon E. Smith <mahlon@martini.nu>
|
111
194
|
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
195
|
+
o * .gems, lib/arborist/node/root.rb:
|
196
|
+
| Match the #update prototype with the parent class.
|
197
|
+
| [4113973f3fac]
|
198
|
+
|
|
116
199
|
2018-05-23 Mahlon E. Smith <mahlon@martini.nu>
|
117
200
|
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
201
|
+
o * lib/arborist/client.rb, lib/arborist/observer.rb,
|
202
|
+
| spec/arborist/client_spec.rb:
|
203
|
+
| Add a DSL method for returning a Client singleton.
|
204
|
+
| [e3e41bef9b6b]
|
205
|
+
|
|
206
|
+
o * TODO.md, lib/arborist/manager.rb, spec/arborist/manager_spec.rb:
|
207
|
+
| Don't let #add_node automatically replace nodes with the same
|
208
|
+
| identifier, instead leaving the remove step to the caller.
|
209
|
+
|
|
210
|
+
| Clean up the TODO a little.
|
211
|
+
| [91ca8e3d3b42]
|
212
|
+
|
|
130
213
|
2018-05-16 Mahlon E. Smith <mahlon@martini.nu>
|
131
214
|
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
215
|
+
o * lib/arborist/cli.rb:
|
216
|
+
| Provide a way to disable colors for misbehaving terms.
|
217
|
+
| [a7c0524d382f]
|
218
|
+
|
|
219
|
+
o * lib/arborist/node/resource.rb, lib/arborist/node/service.rb:
|
220
|
+
| Add 'category' to operation properties, so it can be returned in a
|
221
|
+
| 'properties' search.
|
222
|
+
| [a1358c86cfc4]
|
223
|
+
|
|
141
224
|
2018-05-02 Mahlon E. Smith <mahlon@martini.nu>
|
142
225
|
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
226
|
+
o * Manifest.txt:
|
227
|
+
| Fix manifest. My bad.
|
228
|
+
| [e863ec889801]
|
229
|
+
|
|
230
|
+
o * TODO.md, lib/arborist/node.rb, lib/arborist/node/resource.rb,
|
231
|
+
| lib/arborist/node/service.rb, spec/arborist/node/resource_spec.rb,
|
232
|
+
| spec/arborist/node/service_spec.rb, spec/arborist/node_spec.rb:
|
233
|
+
| Add 'OR' matching to additional host/service/resource attributes.
|
234
|
+
| [402decc461f2]
|
235
|
+
|
|
153
236
|
2018-04-30 Mahlon E. Smith <mahlon@martini.nu>
|
154
237
|
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
238
|
+
o * lib/arborist/client.rb:
|
239
|
+
| Remove what seems like copy pasta, these instance vars are unused.
|
240
|
+
| [63c59b1c9f79]
|
241
|
+
|
|
242
|
+
o * lib/arborist/manager.rb, spec/arborist/client_spec.rb,
|
243
|
+
| spec/arborist/manager_spec.rb,
|
244
|
+
| spec/arborist/observer_runner_spec.rb, spec/data/nodes/sidonie.rb,
|
245
|
+
| spec/data/nodes/vhosts.rb:
|
246
|
+
| Recurse into secondary dependencies for `deps`
|
247
|
+
| [77e9deb4ec42]
|
248
|
+
|
|
249
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
250
|
+
| Emit delta events when setting or clearing acknowledgements.
|
251
|
+
| [d05610bec8dd]
|
252
|
+
|
|
253
|
+
o * lib/arborist/cli.rb:
|
254
|
+
| Don't make loading config conditional, so loading config path from
|
255
|
+
| ENV works as intended.
|
256
|
+
| [b0531987a8b2]
|
257
|
+
|
|
258
|
+
o * Events.md:
|
259
|
+
| The Events.md file should have been removed along with others in
|
260
|
+
| changeset 2413f751677b.
|
261
|
+
| [36d0911fc157]
|
262
|
+
|
|
263
|
+
o * lib/arborist/node.rb:
|
264
|
+
| Remove extra 'is' in logging output.
|
265
|
+
| [ade846808c0b]
|
266
|
+
|
|
184
267
|
2018-04-27 Mahlon E. Smith <mahlon@martini.nu>
|
185
268
|
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
269
|
+
o * lib/arborist/node.rb:
|
270
|
+
| Call out the 'unknown' state explcitly.
|
271
|
+
| [41a443946194]
|
272
|
+
|
|
190
273
|
2018-04-25 Mahlon E. Smith <mahlon@martini.nu>
|
191
274
|
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
275
|
+
o * lib/arborist/client.rb, spec/arborist/client_spec.rb:
|
276
|
+
| Provide some helper methods on the client for performing some common
|
277
|
+
| Tree API tasks.
|
278
|
+
| [607e37bab20d]
|
279
|
+
|
|
197
280
|
2018-04-25 Mahlon E. Smith <mahlon@laika.com>
|
198
281
|
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
282
|
+
o * lib/arborist/manager.rb, spec/arborist/manager_spec.rb:
|
283
|
+
| Include explicit children nodes in the list returned by the 'deps'
|
284
|
+
| API call.
|
285
|
+
| [506ff511c368]
|
286
|
+
|
|
204
287
|
2018-04-25 Mahlon E. Smith <mahlon@martini.nu>
|
205
288
|
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
289
|
+
o * lib/arborist/node.rb:
|
290
|
+
| Add a specific log formatter for the 'warn' state, change
|
291
|
+
| nomenclature from 'unknown' to avoid confusion.
|
292
|
+
| [c4769cf739cb]
|
293
|
+
|
|
211
294
|
2018-04-18 Mahlon E. Smith <mahlon@martini.nu>
|
212
295
|
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
296
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
297
|
+
| Add a transition from down -> warn.
|
298
|
+
| [a76b7e2c35b0]
|
299
|
+
|
|
217
300
|
2018-04-18 Michael Granger <ged@FaerieMUD.org>
|
218
301
|
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
302
|
+
o * lib/arborist/client.rb, lib/arborist/manager.rb,
|
303
|
+
| lib/arborist/monitor_runner.rb, lib/arborist/node.rb,
|
304
|
+
| spec/arborist/client_spec.rb, spec/arborist/monitor_runner_spec.rb,
|
305
|
+
| spec/arborist/node_spec.rb:
|
306
|
+
| Set the monitor key via a header on update
|
307
|
+
| [5224888b1079]
|
308
|
+
|
|
226
309
|
2018-04-18 Mahlon E. Smith <mahlon@martini.nu>
|
227
310
|
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
311
|
+
o * lib/arborist/node/root.rb, spec/arborist/node/root_spec.rb:
|
312
|
+
| Allow ack/unack on the root node to quiet and re-enable the tree.
|
313
|
+
| [81cc274e239b]
|
314
|
+
|
|
315
|
+
o * lib/arborist/manager.rb, spec/arborist/manager_spec.rb:
|
316
|
+
| Propagate ack and unack events to parent nodes.
|
317
|
+
| [e0e8af8deb94]
|
318
|
+
|
|
319
|
+
o * lib/arborist/monitor_runner.rb,
|
320
|
+
| spec/arborist/monitor_runner_spec.rb:
|
321
|
+
| The _monitor_key attribute is only necessary for error/warn
|
322
|
+
| tracking, not as part of the node properties.
|
323
|
+
| [2b28f8aaf7f0]
|
324
|
+
|
|
325
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
326
|
+
| Retain the previous time a node's status changed, for easy time
|
327
|
+
| deltas between state transitions.
|
328
|
+
| [7427b0e720da]
|
329
|
+
|
|
247
330
|
2018-04-17 Mahlon E. Smith <mahlon@laika.com>
|
248
331
|
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
332
|
+
o * lib/arborist/observer/action.rb,
|
333
|
+
| spec/arborist/observer/action_spec.rb:
|
334
|
+
| Keep the observer daemon running if observer action blocks raise
|
335
|
+
| exceptions.
|
336
|
+
| [602afebedef0]
|
337
|
+
|
|
255
338
|
2018-04-12 Mahlon E. Smith <mahlon@martini.nu>
|
256
339
|
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
340
|
+
o * Rakefile:
|
341
|
+
| Add pry as a dependency for the arborist client.
|
342
|
+
| [01b83470cd9c]
|
343
|
+
|
|
261
344
|
2018-04-11 Mahlon E. Smith <mahlon@martini.nu>
|
262
345
|
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
346
|
+
o * lib/arborist/event/node.rb, spec/arborist/event/node_spec.rb:
|
347
|
+
| Add the node type as additional metadata to node events.
|
348
|
+
| [60a05edcfa1f]
|
349
|
+
|
|
350
|
+
o * lib/arborist/monitor/socket.rb,
|
351
|
+
| spec/arborist/monitor/socket_spec.rb:
|
352
|
+
| Remove redundant time attribute for socket monitoring.
|
353
|
+
| [9f8556ccf9aa]
|
354
|
+
|
|
355
|
+
o * lib/arborist/event.rb, lib/arborist/event/node.rb,
|
356
|
+
| spec/arborist/event/node_spec.rb, spec/arborist/event_spec.rb:
|
357
|
+
| Add node parent to the default node event class, stick to symbols
|
358
|
+
| for hash keys.
|
359
|
+
| [983042e447ab]
|
360
|
+
|
|
361
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
362
|
+
| Allow "OR-ing" of statuses/identifiers/types when matching.
|
363
|
+
| [fc9d607c2a07]
|
364
|
+
|
|
282
365
|
2018-04-09 Mahlon E. Smith <mahlon@martini.nu>
|
283
366
|
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
367
|
+
o * lib/arborist/monitor.rb, spec/arborist/monitor_spec.rb:
|
368
|
+
| Bugfix: Logic inversion for the monitor matching with exclude_down.
|
369
|
+
| [69b6f08a561e]
|
370
|
+
|
|
288
371
|
2018-04-07 Mahlon E. Smith <mahlon@martini.nu>
|
289
372
|
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
373
|
+
o * lib/arborist/monitor_runner.rb:
|
374
|
+
| Include the backtrace in logging if a monitor run fails.
|
375
|
+
| [bff4c7373561]
|
376
|
+
|
|
377
|
+
o * Manifest.txt:
|
378
|
+
| Fix manifest.
|
379
|
+
| [bc513d98d005]
|
380
|
+
|
|
298
381
|
2018-04-04 Mahlon E. Smith <mahlon@martini.nu>
|
299
382
|
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
383
|
+
o * experiments/arborist.schema:
|
384
|
+
| Add an identifier override attribute to the Arborist LDAP schema.
|
385
|
+
| [f3644c8d9b0d]
|
386
|
+
|
|
387
|
+
o * Monitors.md, Nodes.md, Observers.md, Protocol.md, Tutorial.md,
|
388
|
+
| experiments/manager-sockets.rb:
|
389
|
+
| Remove some docs that have moved to arbori.st.
|
390
|
+
| [2413f751677b]
|
391
|
+
|
|
392
|
+
o * lib/arborist/dependency.rb, spec/arborist/dependency_spec.rb:
|
393
|
+
| Fix the description for subdependencies which are down
|
394
|
+
| [6ba7c94e9c1b]
|
395
|
+
|
|
396
|
+
o * lib/arborist/monitor.rb, spec/arborist/monitor_spec.rb:
|
397
|
+
| Make a best-effort attempt to serialize Arrays for the default
|
398
|
+
| monitor exec behavior.
|
399
|
+
| [d81c6f31ec25]
|
400
|
+
|
|
401
|
+
o * lib/arborist/cli.rb, lib/arborist/command/summary.rb,
|
402
|
+
| lib/arborist/command/tree.rb:
|
403
|
+
| Add the 'warn' state to the command line tools.
|
404
|
+
| [edecbb537d4f]
|
405
|
+
|
|
406
|
+
o * lib/arborist/monitor.rb:
|
407
|
+
| Explicitly cast exec() arguments to strings if the first argument
|
408
|
+
| doesn't respond to #run.
|
409
|
+
|
|
410
|
+
| This falls through to attempt to spawn the argument, instead of
|
411
|
+
| bailing with the more cryptic "no implcit conversion of X into
|
412
|
+
| string" exception.
|
413
|
+
| [7f30507eb90b]
|
414
|
+
|
|
332
415
|
2018-03-21 Michael Granger <ged@FaerieMUD.org>
|
333
416
|
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
417
|
+
o * lib/arborist/manager.rb:
|
418
|
+
| Add Manager#inspect
|
419
|
+
| [3bd59ed3254e]
|
420
|
+
|
|
421
|
+
o * lib/arborist/cli.rb, lib/arborist/command/ack.rb,
|
422
|
+
| lib/arborist/command/reset.rb, lib/arborist/command/start.rb:
|
423
|
+
| Restore dry-run mode for the CLI
|
424
|
+
| [0c2126a1f09e]
|
425
|
+
|
|
426
|
+
o * experiments/run_monitors.rb, lib/arborist/client.rb,
|
427
|
+
| lib/arborist/manager.rb, lib/arborist/monitor.rb,
|
428
|
+
| lib/arborist/monitor_runner.rb, spec/arborist/client_spec.rb,
|
429
|
+
| spec/arborist/manager_spec.rb, spec/arborist/monitor_spec.rb,
|
430
|
+
| spec/data/monitors/pings.rb, spec/data/monitors/port_checks.rb:
|
431
|
+
| Make the default node search return all nodes
|
432
|
+
|
|
433
|
+
| All nodes in the tree are returned by default now. You can omit
|
434
|
+
| unreachable nodes with the `exclude_down` option/method.
|
435
|
+
| [7ba6fa72b1a3]
|
436
|
+
|
|
354
437
|
2018-03-12 Michael Granger <ged@FaerieMUD.org>
|
355
438
|
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
439
|
+
o * README.md:
|
440
|
+
| Remove the broken CI build link.
|
441
|
+
| [07918fd4129a]
|
442
|
+
|
|
360
443
|
2018-03-07 Michael Granger <ged@FaerieMUD.org>
|
361
444
|
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
445
|
+
o * Manifest.txt:
|
446
|
+
| Update the manifest.
|
447
|
+
| [d71a4cbde9a0]
|
448
|
+
|
|
449
|
+
o * spec/arborist/node_spec.rb:
|
450
|
+
| Add a spec for updates with both error and warning
|
451
|
+
| [4b68d786e868]
|
452
|
+
|
|
370
453
|
2018-03-03 Michael Granger <ged@FaerieMUD.org>
|
371
454
|
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
455
|
+
o * experiments/yajl-vs-oj.rb:
|
456
|
+
| Add experimental json library benchmarks
|
457
|
+
| [df81401947b6]
|
458
|
+
|
|
459
|
+
o * .gems, Rakefile, arborist.gemspec, lib/arborist/client.rb,
|
460
|
+
| lib/arborist/event/node_warn.rb, lib/arborist/manager.rb,
|
461
|
+
| lib/arborist/node.rb, lib/arborist/tree_api.rb,
|
462
|
+
| spec/arborist/client_spec.rb, spec/arborist/manager_spec.rb,
|
463
|
+
| spec/arborist/node_spec.rb:
|
464
|
+
| Add a warning state to nodes
|
465
|
+
| [0ec9b57f875d]
|
466
|
+
|
|
384
467
|
2018-02-21 Mahlon E. Smith <mahlon@martini.nu>
|
385
468
|
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
469
|
+
o * lib/arborist/node/host.rb, lib/arborist/node/resource.rb,
|
470
|
+
| lib/arborist/node/service.rb, spec/arborist/node/host_spec.rb:
|
471
|
+
| Add an optional 'hostname' label to the host node DSL.
|
472
|
+
|
|
473
|
+
| This is a convenience matcher for selecting by host, since
|
474
|
+
| identifiers are designed to be opaque, and description fields are
|
475
|
+
| more human readable.
|
476
|
+
| [ba379d048ec4]
|
477
|
+
|
|
478
|
+
o * lib/arborist/monitor.rb:
|
479
|
+
| Add a configurable default splay for all instantiated Monitors.
|
480
|
+
| [2e1e76442694]
|
481
|
+
|
|
482
|
+
o * .ruby-version, lib/arborist/monitor.rb,
|
483
|
+
| lib/arborist/monitor_runner.rb, spec/arborist/manager_spec.rb,
|
484
|
+
| spec/arborist/monitor_runner_spec.rb, spec/arborist/monitor_spec.rb:
|
485
|
+
| Allow separate monitors to run in parallel.
|
486
|
+
| [8a15f6ff2cc6]
|
487
|
+
|
|
405
488
|
2018-02-06 Mahlon E. Smith <mahlon@laika.com>
|
406
489
|
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
490
|
+
o * lib/arborist/node.rb:
|
491
|
+
| Allow the 'config' directive to be called multiple times.
|
492
|
+
| [e19b588e2bed]
|
493
|
+
|
|
411
494
|
2018-02-01 Mahlon E. Smith <mahlon@laika.com>
|
412
495
|
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
496
|
+
o * TODO.md:
|
497
|
+
| Add a few recent discoveries that should be attended to.
|
498
|
+
| [87797bb780d0]
|
499
|
+
|
|
417
500
|
2018-01-10 Mahlon E. Smith <mahlon@laika.com>
|
418
501
|
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
502
|
+
o * lib/arborist/command/start.rb:
|
503
|
+
| Add a hint for the 'start' command if the daemon app is unknown.
|
504
|
+
| [1d535c655f9c]
|
505
|
+
|
|
506
|
+
o * lib/arborist/cli.rb:
|
507
|
+
| Remove the Highline require.
|
508
|
+
| [e1babdcf222a]
|
509
|
+
|
|
427
510
|
2017-12-28 Mahlon E. Smith <mahlon@laika.com>
|
428
511
|
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
512
|
+
o * lib/arborist/command/summary.rb:
|
513
|
+
| Fix newline display in summary mode.
|
514
|
+
| [705ea112140d]
|
515
|
+
|
|
516
|
+
o * lib/arborist/monitor_runner.rb,
|
517
|
+
| spec/arborist/monitor_runner_spec.rb:
|
518
|
+
| Treat monitor runtime exceptions as errors.
|
519
|
+
| [d940a51a54a5]
|
520
|
+
|
|
438
521
|
2017-12-23 Mahlon E. Smith <mahlon@laika.com>
|
439
522
|
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
523
|
+
o * lib/arborist/cli.rb:
|
524
|
+
| Simplify the command loading, remove unused code.
|
525
|
+
| [edb03b628896]
|
526
|
+
|
|
444
527
|
2017-12-11 Michael Granger <ged@FaerieMUD.org>
|
445
528
|
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
529
|
+
o * lib/arborist/cli.rb:
|
530
|
+
| Fix the #success_string CLI DSL method
|
531
|
+
| [731cdb4916f7]
|
532
|
+
|
|
450
533
|
2017-11-23 Mahlon E. Smith <mahlon@laika.com>
|
451
534
|
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
535
|
+
o * Manifest.txt:
|
536
|
+
| Update manifest.
|
537
|
+
| [bbfee3ed7fa3]
|
538
|
+
|
|
456
539
|
2017-11-22 Michael Granger <ged@FaerieMUD.org>
|
457
540
|
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
541
|
+
o * lib/arborist/command/watch.rb:
|
542
|
+
| Make Enterprise[tm]
|
543
|
+
| [2ea4f0cb5d7f]
|
544
|
+
|
|
462
545
|
2017-11-22 Mahlon E. Smith <mahlon@laika.com>
|
463
546
|
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
547
|
+
o * Rakefile, arborist.gemspec, lib/arborist/manager.rb,
|
548
|
+
| lib/arborist/node.rb, spec/arborist/manager_spec.rb,
|
549
|
+
| spec/arborist/node_spec.rb:
|
550
|
+
| Modifying a node's parent should reparent for a running manager.
|
551
|
+
| [80f24df26c58]
|
552
|
+
|
|
553
|
+
o * lib/arborist/cli.rb, lib/arborist/command/ack.rb:
|
554
|
+
| Make ack friendlier for batch updates, prompt for missing values.
|
555
|
+
| [abee1c3cd29a]
|
556
|
+
|
|
557
|
+
o * .gems, Rakefile, arborist.gemspec, lib/arborist/cli.rb,
|
558
|
+
| lib/arborist/command/summary.rb, lib/arborist/command/tree.rb,
|
559
|
+
| lib/arborist/command/watch.rb:
|
560
|
+
| Convert from highline to tty for the command line tools.
|
561
|
+
| [97be02393284]
|
562
|
+
|
|
563
|
+
o * lib/arborist/command/summary.rb:
|
564
|
+
| Add a 'summary' command, for quick display of existing problems.
|
565
|
+
| [835dbd57e243]
|
566
|
+
|
|
484
567
|
2017-11-20 Mahlon E. Smith <mahlon@laika.com>
|
485
568
|
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
569
|
+
o * lib/arborist/command/ack.rb:
|
570
|
+
| Use the uid instead of gecos for default ack sender.
|
571
|
+
| [6cdfa1e00068]
|
572
|
+
|
|
490
573
|
2017-11-18 Mahlon E. Smith <mahlon@laika.com>
|
491
574
|
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
575
|
+
o * lib/arborist/command/ack.rb, lib/arborist/command/tree.rb:
|
576
|
+
| Fixes for recent changes in the client API.
|
577
|
+
| [1f3a100a456a]
|
578
|
+
|
|
496
579
|
2017-11-16 Michael Granger <ged@FaerieMUD.org>
|
497
580
|
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
581
|
+
o * lib/arborist/client.rb:
|
582
|
+
| Fix some Client API docs
|
583
|
+
| [a94db37dc8ef]
|
584
|
+
|
|
502
585
|
2017-11-16 Mahlon E. Smith <mahlon@martini.nu>
|
503
586
|
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
587
|
+
o * Events.md, lib/arborist/manager.rb, lib/arborist/node.rb,
|
588
|
+
| lib/arborist/tree_api.rb:
|
589
|
+
| Refactor event flow to fix publishing.
|
590
|
+
| [aeae43332bd0]
|
591
|
+
|
|
592
|
+
o * lib/arborist/command/reset.rb:
|
593
|
+
| Add a "reset" command to the client.
|
594
|
+
| [eed312fb6526]
|
595
|
+
|
|
513
596
|
2017-11-01 Michael Granger <ged@FaerieMUD.org>
|
514
597
|
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
598
|
+
o * lib/arborist/event.rb:
|
599
|
+
| Add a simplified #inspect for node objects
|
600
|
+
| [3a5fdc6ee738]
|
601
|
+
|
|
602
|
+
o * Merged with 78f913c7bd4e
|
603
|
+
|\ [8da021024c05]
|
604
|
+
| |
|
605
|
+
| o * lib/arborist/manager.rb, spec/arborist/manager_spec.rb:
|
606
|
+
| | Collapse startup event into the heartbeat
|
607
|
+
| |
|
608
|
+
| | The startup event wasn't reliable because there was a race between
|
609
|
+
| | sending it and clients who might be interested in it (re)connecting
|
610
|
+
| | to the manager. We moved all the data from the startup event into
|
611
|
+
| | the heartbeat event.
|
612
|
+
| | [f1e034ac03bf]
|
613
|
+
| |
|
522
614
|
2017-11-01 Mahlon E. Smith <mahlon@martini.nu>
|
523
615
|
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
2017-11-01 Michael Granger <ged@FaerieMUD.org>
|
534
|
-
|
535
|
-
* lib/arborist/manager.rb, spec/arborist/manager_spec.rb:
|
536
|
-
Collapse startup event into the heartbeat
|
537
|
-
|
538
|
-
The startup event wasn't reliable because there was a race between
|
539
|
-
sending it and clients who might be interested in it (re)connecting
|
540
|
-
to the manager. We moved all the data from the startup event into
|
541
|
-
the heartbeat event.
|
542
|
-
[f1e034ac03bf]
|
543
|
-
|
616
|
+
o | * lib/arborist/event.rb, spec/arborist/event_spec.rb:
|
617
|
+
|/ Backed out changeset ac8e70b46bf4.
|
618
|
+
|
|
619
|
+
| Upon further reflection: subscription calls ONLY match node events,
|
620
|
+
| not sys.* events. So if you want all node events, it has always been
|
621
|
+
| that you can simply omit your event type. Since sys events are
|
622
|
+
| unaffected, this is unnecessarily redundant. Revert.
|
623
|
+
| [78f913c7bd4e]
|
624
|
+
|
|
544
625
|
2017-10-27 Michael Granger <ged@FaerieMUD.org>
|
545
626
|
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
627
|
+
o * certs/ged.pem:
|
628
|
+
| Add my updated gem-signing cert
|
629
|
+
| [2025d127b06d]
|
630
|
+
|
|
550
631
|
2017-10-11 Mahlon E. Smith <mahlon@laika.com>
|
551
632
|
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
633
|
+
o * lib/arborist/event.rb, spec/arborist/event_spec.rb:
|
634
|
+
| Add wildcard matching to node events.
|
635
|
+
| [ac8e70b46bf4]
|
636
|
+
|
|
637
|
+
o * Manifest.txt, lib/arborist/client.rb, lib/arborist/manager.rb,
|
638
|
+
| spec/arborist/client_spec.rb, spec/arborist/manager_spec.rb:
|
639
|
+
| Normalize and emit better error messages from client commands, at
|
640
|
+
| the expense of succinct method calls.
|
641
|
+
|
|
642
|
+
| Throw a client error if attempting to graft over a pre-existing
|
643
|
+
| node.
|
644
|
+
| [b683f02b91c1]
|
645
|
+
|
|
565
646
|
2017-09-15 Mahlon E. Smith <mahlon@martini.nu>
|
566
647
|
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
648
|
+
o * lib/arborist/manager.rb, spec/arborist/client_spec.rb,
|
649
|
+
| spec/arborist/manager_spec.rb:
|
650
|
+
| With even more thinking: Specifying a non existent node constitutes
|
651
|
+
| an error.
|
652
|
+
| [74148a9c3770]
|
653
|
+
|
|
573
654
|
2017-09-15 Michael Granger <ged@FaerieMUD.org>
|
574
655
|
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
2017-09-15 Mahlon E. Smith <mahlon@martini.nu>
|
581
|
-
|
582
|
-
* lib/arborist/manager.rb, spec/arborist/client_spec.rb:
|
583
|
-
On second thought, fetch() should always return an array. Add a
|
584
|
-
test.
|
585
|
-
[7fea2fdfbb90]
|
586
|
-
|
587
|
-
* lib/arborist/client.rb, lib/arborist/manager.rb,
|
588
|
-
spec/arborist/client_spec.rb:
|
589
|
-
Make high-level ack set/clear usage match other methods. Bail early
|
590
|
-
on an invalid fetch() starting node.
|
591
|
-
[12658e133803]
|
592
|
-
|
656
|
+
o * lib/arborist/client.rb, lib/arborist/manager.rb,
|
657
|
+
|\ spec/arborist/client_spec.rb:
|
658
|
+
| | merged with 7fea2fdfbb90
|
659
|
+
| | [e4e2e2608c96]
|
660
|
+
| |
|
593
661
|
2017-09-13 Michael Granger <ged@FaerieMUD.org>
|
594
662
|
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
663
|
+
| o * TODO.md, lib/arborist.rb, lib/arborist/client.rb,
|
664
|
+
| | lib/arborist/manager.rb, lib/arborist/node.rb,
|
665
|
+
| | lib/arborist/node_subscription.rb, lib/arborist/subscription.rb,
|
666
|
+
| | spec/arborist/client_spec.rb, spec/arborist/manager_spec.rb,
|
667
|
+
| | spec/arborist/node_spec.rb, spec/arborist/node_subscription_spec.rb,
|
668
|
+
| | spec/arborist/observer_runner_spec.rb, spec/data/nodes/yevaud.rb:
|
669
|
+
| | Add introspection on secondary dependencies
|
670
|
+
| | [dbe5ebcb13a4]
|
671
|
+
| |
|
672
|
+
2017-09-15 Mahlon E. Smith <mahlon@martini.nu>
|
603
673
|
|
674
|
+
o | * lib/arborist/manager.rb, spec/arborist/client_spec.rb:
|
675
|
+
| | On second thought, fetch() should always return an array. Add a
|
676
|
+
| | test.
|
677
|
+
| | [7fea2fdfbb90]
|
678
|
+
| |
|
679
|
+
o | * lib/arborist/client.rb, lib/arborist/manager.rb,
|
680
|
+
|/ spec/arborist/client_spec.rb:
|
681
|
+
| Make high-level ack set/clear usage match other methods. Bail early
|
682
|
+
| on an invalid fetch() starting node.
|
683
|
+
| [12658e133803]
|
684
|
+
|
|
604
685
|
2017-08-30 Michael Granger <ged@FaerieMUD.org>
|
605
686
|
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
2017-08-30 Mahlon E. Smith <mahlon@martini.nu>
|
642
|
-
|
643
|
-
* .ruby-version, README.md:
|
644
|
-
Bump ruby rvm version and copyright year.
|
645
|
-
[569e2d8626fc]
|
646
|
-
|
687
|
+
o * Rakefile, arborist.gemspec:
|
688
|
+
| Specify RDoc 5.1 for development.
|
689
|
+
| [b5ce09164313]
|
690
|
+
|
|
691
|
+
o * lib/arborist/monitor/socket.rb:
|
692
|
+
| Socket monitors need the port, too.
|
693
|
+
| [badf0ec88ff3]
|
694
|
+
|
|
695
|
+
o * Manifest.txt, TODO.md, lib/arborist/monitor.rb,
|
696
|
+
| spec/arborist/monitor_spec.rb:
|
697
|
+
| Allow callbacks modules to set the fetched node properties, too.
|
698
|
+
| [c13f46c6c80e]
|
699
|
+
|
|
700
|
+
o * lib/arborist.rb, lib/arborist/client.rb,
|
701
|
+
| lib/arborist/command/tree.rb, lib/arborist/manager.rb,
|
702
|
+
| lib/arborist/monitor.rb, lib/arborist/monitor/socket.rb,
|
703
|
+
| lib/arborist/monitor_runner.rb, lib/arborist/node.rb,
|
704
|
+
| lib/arborist/node/ack.rb, lib/arborist/node/host.rb,
|
705
|
+
| lib/arborist/node/resource.rb, lib/arborist/node/service.rb,
|
706
|
+
| spec/arborist/monitor_spec.rb, spec/arborist/node_spec.rb,
|
707
|
+
| spec/spec_helper.rb:
|
708
|
+
| Add tree mode to the fetch treeapi action
|
709
|
+
| [62702b377627]
|
710
|
+
|
|
711
|
+
o * lib/arborist/command/ack.rb:
|
712
|
+
| Add an `ack` command
|
713
|
+
| [10f1c48593ca]
|
714
|
+
|
|
715
|
+
o * lib/arborist/node.rb:
|
716
|
+
| Stop nodes from flapping between acked and down
|
717
|
+
| [c950bb562104]
|
718
|
+
|
|
719
|
+
o * Merged with upstream
|
720
|
+
|\ [8016d54c5dc0]
|
721
|
+
| |
|
647
722
|
2017-08-29 Michael Granger <ged@FaerieMUD.org>
|
648
723
|
|
649
|
-
|
650
|
-
|
651
|
-
|
724
|
+
| o * lib/arborist/mixins.rb, spec/arborist/mixins_spec.rb:
|
725
|
+
| | Add a DSLish accessor constructor to the MethodUtilities mixin
|
726
|
+
| | [55586256bf71]
|
727
|
+
| |
|
728
|
+
2017-08-30 Mahlon E. Smith <mahlon@martini.nu>
|
652
729
|
|
730
|
+
o | * .ruby-version, README.md:
|
731
|
+
|/ Bump ruby rvm version and copyright year.
|
732
|
+
| [569e2d8626fc]
|
733
|
+
|
|
653
734
|
2017-08-23 Michael Granger <ged@FaerieMUD.org>
|
654
735
|
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
736
|
+
o * Protocol.md, lib/arborist/client.rb, lib/arborist/manager.rb,
|
737
|
+
| lib/arborist/monitor_runner.rb, spec/arborist/client_spec.rb,
|
738
|
+
| spec/arborist/manager_spec.rb, spec/arborist/monitor_runner_spec.rb:
|
739
|
+
| Rename some actions in the Tree API for clarity
|
740
|
+
|
|
741
|
+
| - Rename `list` to `fetch`
|
742
|
+
| - Rename `fetch` to `search`
|
743
|
+
| [58b49a735dce]
|
744
|
+
|
|
745
|
+
o * lib/arborist/manager.rb, spec/arborist/manager_spec.rb:
|
746
|
+
| Make the list of Tree API actions more explicit.
|
747
|
+
| [be1d7adde321]
|
748
|
+
|
|
749
|
+
o * TODO.md:
|
750
|
+
| Add a 0.3 feature to the TODO doc
|
751
|
+
| [5d64adac0770]
|
752
|
+
|
|
753
|
+
o * lib/arborist/node.rb, lib/arborist/node/resource.rb,
|
754
|
+
| spec/arborist/node_spec.rb:
|
755
|
+
| Add a block to Node.parent_type to allow for more-expressive
|
756
|
+
| declarations
|
757
|
+
| [3aa0f2e0bb04]
|
758
|
+
|
|
759
|
+
o * .gems, Manifest.txt, Rakefile, TODO.md, arborist.gemspec,
|
760
|
+
| experiments/monitor-client.rb, experiments/monitor-service.rb,
|
761
|
+
| experiments/run_monitors.rb, experiments/yay-client.rb,
|
762
|
+
| lib/arborist.rb, lib/arborist/client.rb,
|
763
|
+
| lib/arborist/command/watch.rb, lib/arborist/event_api.rb,
|
764
|
+
| lib/arborist/exceptions.rb, lib/arborist/manager.rb,
|
765
|
+
| lib/arborist/manager/event_publisher.rb,
|
766
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/monitor_runner.rb,
|
767
|
+
| lib/arborist/node.rb, lib/arborist/observer/summarize.rb,
|
768
|
+
| lib/arborist/observer_runner.rb, lib/arborist/tree_api.rb,
|
769
|
+
| spec/arborist/client_spec.rb, spec/arborist/event_api_spec.rb,
|
770
|
+
| spec/arborist/manager/event_publisher_spec.rb,
|
771
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
772
|
+
| spec/arborist/manager_spec.rb, spec/arborist/monitor_runner_spec.rb,
|
773
|
+
| spec/arborist/observer_runner_spec.rb,
|
774
|
+
| spec/arborist/tree_api_spec.rb, spec/arborist_spec.rb,
|
775
|
+
| spec/spec_helper.rb:
|
776
|
+
| Convert to CZTop for ZeroMQ
|
777
|
+
| [ba88a77e486e]
|
778
|
+
|
|
698
779
|
2017-05-10 Michael Granger <ged@FaerieMUD.org>
|
699
780
|
|
700
|
-
|
701
|
-
|
702
|
-
|
781
|
+
o * Merged with dc93f075ae71
|
782
|
+
|\ [a8ed641362ad]
|
783
|
+
| |
|
784
|
+
| o * TODO.md:
|
785
|
+
| | Add an idea to the README (thanks to Will at LAIKA)
|
786
|
+
| | [ae1fceba4e10]
|
787
|
+
| |
|
703
788
|
2017-03-09 Mahlon E. Smith <mahlon@martini.nu>
|
704
789
|
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
2017-05-10 Michael Granger <ged@FaerieMUD.org>
|
711
|
-
|
712
|
-
* TODO.md:
|
713
|
-
Add an idea to the README (thanks to Will at LAIKA)
|
714
|
-
[ae1fceba4e10]
|
715
|
-
|
790
|
+
o | * lib/arborist/mixins.rb, lib/arborist/node.rb:
|
791
|
+
|/ Re-arrange constants to avoid Ruby 2.4 refinement warnings. Lower
|
792
|
+
| debug output when loading nodes.
|
793
|
+
| [dc93f075ae71]
|
794
|
+
|
|
716
795
|
2017-03-01 Michael Granger <ged@FaerieMUD.org>
|
717
796
|
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
797
|
+
o * .hoerc, arborist.gemspec, lib/arborist/client.rb,
|
798
|
+
| lib/arborist/command/client.rb:
|
799
|
+
| Fix the signature of Arborist::Client#fetch
|
800
|
+
|
|
801
|
+
| It was defaulting trailing-hash arguments to options, which made the
|
802
|
+
| typical case of fetching with only criteria awkward. This makes the
|
803
|
+
| atypical case (fetching with options but empty criteria) the awkward
|
804
|
+
| case instead.
|
805
|
+
| [c7e85586243e]
|
806
|
+
|
|
728
807
|
2017-02-19 Mahlon E. Smith <mahlon@martini.nu>
|
729
808
|
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
809
|
+
o * .ruby-gemset, .ruby-version, .rvmrc, Rakefile:
|
810
|
+
| Convert to .ruby-* files. Bump msgpack dependency.
|
811
|
+
| [b0cead421802]
|
812
|
+
|
|
734
813
|
2017-01-02 Michael Granger <ged@FaerieMUD.org>
|
735
814
|
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
815
|
+
o * .hgignore, Rakefile:
|
816
|
+
| Remove guard against public release, ignore pkg dir
|
817
|
+
| [4e6a4471c246]
|
818
|
+
|
|
819
|
+
o * .hgtags:
|
820
|
+
| Added tag v0.1.0 for changeset 859b70361b14
|
821
|
+
| [83809e3f33bc]
|
822
|
+
|
|
823
|
+
o * .hgsigs:
|
824
|
+
| Added signature for changeset 02a11882f53b
|
825
|
+
| [859b70361b14] [v0.1.0]
|
826
|
+
|
|
827
|
+
o * History.md, lib/arborist.rb:
|
828
|
+
| Set the minor version, update history file.
|
829
|
+
| [02a11882f53b]
|
830
|
+
|
|
831
|
+
o * TODO.md, lib/arborist/monitor.rb, lib/arborist/monitor_runner.rb,
|
832
|
+
| spec/arborist/monitor_runner_spec.rb, spec/arborist/monitor_spec.rb:
|
833
|
+
| Fix the DSL constructor, set the monitor key in the correct place in
|
834
|
+
| the node data.
|
835
|
+
| [e12d602bcf1a]
|
836
|
+
|
|
758
837
|
2016-12-28 Michael Granger <ged@FaerieMUD.org>
|
759
838
|
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
839
|
+
o * Monitors.md, lib/arborist/monitor_runner.rb, lib/arborist/node.rb,
|
840
|
+
| spec/arborist/node_spec.rb:
|
841
|
+
| Add `key` to the monitor docs, use a prefixed key for monitor
|
842
|
+
| updates.
|
843
|
+
| [7119b40e002a]
|
844
|
+
|
|
845
|
+
o * arborist.gemspec, lib/arborist/command/watch.rb,
|
846
|
+
| lib/arborist/monitor.rb, lib/arborist/monitor_runner.rb,
|
847
|
+
| lib/arborist/node.rb, spec/arborist/event/node_down_spec.rb,
|
848
|
+
| spec/arborist/manager_spec.rb, spec/arborist/monitor_runner_spec.rb,
|
849
|
+
| spec/arborist/monitor_spec.rb, spec/arborist/node_spec.rb:
|
850
|
+
| Add a key attribute to monitors for error grouping.
|
851
|
+
| [aebc20335e43]
|
852
|
+
|
|
853
|
+
o * .gems, Rakefile:
|
854
|
+
| Update to latest *ability
|
855
|
+
| [09438b7a8aff]
|
856
|
+
|
|
778
857
|
2016-10-19 Michael Granger <ged@FaerieMUD.org>
|
779
858
|
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
859
|
+
o * lib/arborist/client.rb:
|
860
|
+
| Use ** instead of * for client methods that take keyword args
|
861
|
+
| [73b6f150a8c1]
|
862
|
+
|
|
863
|
+
o * lib/arborist/mixins.rb, lib/arborist/node.rb,
|
864
|
+
| spec/arborist/client_spec.rb:
|
865
|
+
| Add specs for Client#ack and #unack
|
866
|
+
| [819556c743c6]
|
867
|
+
|
|
789
868
|
2016-10-17 Michael Granger <ged@FaerieMUD.org>
|
790
869
|
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
870
|
+
o * TODO.md:
|
871
|
+
| Add a note to the TODO list
|
872
|
+
| [3de683ee0405]
|
873
|
+
|
|
795
874
|
2016-10-12 Michael Granger <ged@FaerieMUD.org>
|
796
875
|
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
876
|
+
o * spec/arborist/node_spec.rb:
|
877
|
+
| Remove accidentally-commited focus
|
878
|
+
| [d2cac6a84aaa]
|
879
|
+
|
|
801
880
|
2016-10-12 Mahlon E. Smith <mahlon@martini.nu>
|
802
881
|
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
882
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
883
|
+
| Add matching for 'parent' attribute data.
|
884
|
+
| [c50907900b60]
|
885
|
+
|
|
807
886
|
2016-10-06 Mahlon E. Smith <mahlon@martini.nu>
|
808
887
|
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
888
|
+
o * lib/arborist/manager.rb, lib/arborist/monitor.rb,
|
889
|
+
| lib/arborist/node.rb, spec/arborist/monitor_spec.rb,
|
890
|
+
| spec/arborist/node_spec.rb:
|
891
|
+
| Make monitors automatically set #include_down if matching on an
|
892
|
+
| unreachable status type.
|
893
|
+
|
|
894
|
+
| - Add reachable? and unreachable? predacates to node
|
895
|
+
| - Whitespace fixes
|
896
|
+
| [3dcff4c89426]
|
897
|
+
|
|
819
898
|
2016-10-05 Mahlon E. Smith <mahlon@martini.nu>
|
820
899
|
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
900
|
+
o * lib/arborist/node.rb:
|
901
|
+
| Reenable event publishing from handle_event().
|
902
|
+
| [1918cc1afa1a]
|
903
|
+
|
|
825
904
|
2016-10-05 Michael Granger <ged@FaerieMUD.org>
|
826
905
|
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
906
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
907
|
+
| Fix event broadcasting for deep hierarchies.
|
908
|
+
|
|
909
|
+
| - Refactored event broadcasting so #update and #handle_event share
|
910
|
+
| broadcasting code.
|
911
|
+
| [9ab8636bb2c5]
|
912
|
+
|
|
913
|
+
o * Rakefile, arborist.gemspec:
|
914
|
+
| Update gemspec with Ruby requirements
|
915
|
+
| [8ea4314d4dc9]
|
916
|
+
|
|
838
917
|
2016-10-04 Mahlon E. Smith <mahlon@martini.nu>
|
839
918
|
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
919
|
+
o * lib/arborist/node.rb:
|
920
|
+
| State transition cleanup: Only nodes in a 'down' state can
|
921
|
+
| transition to 'acked'.
|
922
|
+
| [eed40468bb5e]
|
923
|
+
|
|
845
924
|
2016-10-03 Mahlon E. Smith <mahlon@laika.com>
|
846
925
|
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
926
|
+
o * lib/arborist/command/config.rb:
|
927
|
+
| Require the manager when generating a default configuration file.
|
928
|
+
| [d0c5ef20e6fd]
|
929
|
+
|
|
851
930
|
2016-09-28 Michael Granger <ged@FaerieMUD.org>
|
852
931
|
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
932
|
+
o * TODO.md, lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
933
|
+
| Fix the unknown => disabled transition when updating with an ACK
|
934
|
+
| [30d2548e1308]
|
935
|
+
|
|
936
|
+
o * lib/arborist/manager.rb, spec/arborist/manager_spec.rb:
|
937
|
+
| Flatten the config into one namespace
|
938
|
+
|
|
939
|
+
| This fixes the manager's defaults, which were never actually used.
|
940
|
+
| [ae18e761d06f]
|
941
|
+
|
|
863
942
|
2016-09-21 Michael Granger <ged@FaerieMUD.org>
|
864
943
|
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
944
|
+
o * TODO.md, lib/arborist/manager.rb, lib/arborist/node.rb,
|
945
|
+
| spec/arborist/node_spec.rb:
|
946
|
+
| Fix consequential event propagation/publication
|
947
|
+
| [cdf3fb9d63c8]
|
948
|
+
|
|
949
|
+
o * lib/arborist/dependency.rb, spec/arborist/dependency_spec.rb:
|
950
|
+
| Clarify dependency "down reason" to not seem like a node state
|
951
|
+
| [1f8f703940cb]
|
952
|
+
|
|
953
|
+
o * lib/arborist/manager/tree_api.rb:
|
954
|
+
| Stripped spammier debugging
|
955
|
+
| [dc594799b7dc]
|
956
|
+
|
|
957
|
+
o * Events.md:
|
958
|
+
| Add description of event movement to Events.md
|
959
|
+
| [bfee2016aa79]
|
960
|
+
|
|
882
961
|
2016-09-21 Mahlon E. Smith <mahlon@martini.nu>
|
883
962
|
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
963
|
+
o * .rvmrc, lib/arborist/node.rb:
|
964
|
+
| Add an event handler for disabled events, so nodes are properly
|
965
|
+
| quieted when their secondary dependencies are disabled.
|
966
|
+
| [d032e1820965]
|
967
|
+
|
|
889
968
|
2016-09-06 Michael Granger <ged@FaerieMUD.org>
|
890
969
|
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
970
|
+
o * arborist.gemspec, lib/arborist/monitor/socket.rb,
|
971
|
+
| spec/arborist/monitor/socket_spec.rb:
|
972
|
+
| Fix up the specs for getpeername socket monitor change
|
973
|
+
| [f8c5bbc611b2]
|
974
|
+
|
|
975
|
+
o * lib/arborist/monitor/socket.rb:
|
976
|
+
| Make socket check use getpeername for testing non-blocking connect
|
977
|
+
| [9715a6d9903f]
|
978
|
+
|
|
900
979
|
2016-08-31 Michael Granger <ged@FaerieMUD.org>
|
901
980
|
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
981
|
+
o * Protocol.md, TODO.md, lib/arborist/client.rb, lib/arborist/event.rb,
|
982
|
+
| lib/arborist/event/node.rb, lib/arborist/event/node_delta.rb,
|
983
|
+
| lib/arborist/manager.rb, lib/arborist/manager/tree_api.rb,
|
984
|
+
| lib/arborist/monitor.rb, lib/arborist/monitor/socket.rb,
|
985
|
+
| lib/arborist/node.rb, lib/arborist/observer.rb,
|
986
|
+
| lib/arborist/subscription.rb,
|
987
|
+
| spec/arborist/event/node_delta_spec.rb,
|
988
|
+
| spec/arborist/event/node_spec.rb,
|
989
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
990
|
+
| spec/arborist/observer_spec.rb, spec/arborist/subscription_spec.rb:
|
991
|
+
| Add exclusion to subscriptions
|
992
|
+
| [23b84af1ebb4]
|
993
|
+
|
|
994
|
+
o * arborist.gemspec, lib/arborist/manager/tree_api.rb,
|
995
|
+
| lib/arborist/monitor/socket.rb, lib/arborist/node.rb,
|
996
|
+
| spec/arborist/manager/tree_api_spec.rb:
|
997
|
+
| Include all operational values in fetched nodes.
|
998
|
+
|
|
999
|
+
| Also error more gracefully about non-eachable updates.
|
1000
|
+
| [a72fc8d43adc]
|
1001
|
+
|
|
1002
|
+
o * lib/arborist/client.rb:
|
1003
|
+
| Rearrange some methods in the client
|
1004
|
+
| [106b17e27a3a]
|
1005
|
+
|
|
927
1006
|
2016-08-29 Michael Granger <ged@FaerieMUD.org>
|
928
1007
|
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
2016-08-29 Mahlon E. Smith <mahlon@martini.nu>
|
942
|
-
|
943
|
-
* lib/arborist/loader/file.rb, spec/data/nodes/duir.rb,
|
944
|
-
spec/data/nodes/sub/duir.rb:
|
945
|
-
Fix the file loader so it correctly crawls subdirectories.
|
946
|
-
[a5a6e5092024]
|
947
|
-
|
1008
|
+
o * Rakefile, arborist.gemspec, certs/ged.pem:
|
1009
|
+
| Add public cert
|
1010
|
+
| [a7c6232586ad]
|
1011
|
+
|
|
1012
|
+
o * Manifest.txt, arborist.gemspec:
|
1013
|
+
| Update the manifest with spec changes, rebuild gemspec.
|
1014
|
+
| [aec9f5ec88de]
|
1015
|
+
|
|
1016
|
+
o * spec/data/nodes/duir.rb:
|
1017
|
+
|\ Merge with a5a6e5092024
|
1018
|
+
| | [c961355d10c8]
|
1019
|
+
| |
|
948
1020
|
2016-08-03 Michael Granger <ged@FaerieMUD.org>
|
949
1021
|
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
1022
|
+
| o * lib/arborist/event/sys_node_added.rb,
|
1023
|
+
| | lib/arborist/event/sys_node_removed.rb,
|
1024
|
+
| | lib/arborist/event/sys_reloaded.rb,
|
1025
|
+
| | lib/arborist/event/sys_shutdown.rb:
|
1026
|
+
| | Remove system event node classes
|
1027
|
+
| | [a34a23ef095e]
|
1028
|
+
| |
|
1029
|
+
2016-08-29 Mahlon E. Smith <mahlon@martini.nu>
|
956
1030
|
|
1031
|
+
o | * lib/arborist/loader/file.rb, spec/data/nodes/duir.rb,
|
1032
|
+
|/ spec/data/nodes/sub/duir.rb:
|
1033
|
+
| Fix the file loader so it correctly crawls subdirectories.
|
1034
|
+
| [a5a6e5092024]
|
1035
|
+
|
|
957
1036
|
2016-08-02 Michael Granger <ged@FaerieMUD.org>
|
958
1037
|
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
1038
|
+
o * Manifest.txt, TODO.md, lib/arborist/mixins.rb,
|
1039
|
+
| lib/arborist/monitor.rb, lib/arborist/monitor_runner.rb,
|
1040
|
+
| lib/arborist/node.rb, lib/arborist/node/host.rb,
|
1041
|
+
| lib/arborist/node/service.rb, spec/arborist/node/service_spec.rb,
|
1042
|
+
| spec/arborist/node_spec.rb, spec/arborist/subscription_spec.rb:
|
1043
|
+
| - Update the TO-DO list
|
1044
|
+
| - Factor out some network functions into a common mixin
|
1045
|
+
| - Add Arborist::Monitor#inspect
|
1046
|
+
| - Restore ack+status of serialized nodes
|
1047
|
+
| - Allow services to set their own address when not bound to INADDR_ANY
|
1048
|
+
| - Finish separating node events from system events
|
1049
|
+
| [f853508dba8c]
|
1050
|
+
|
|
1051
|
+
o * lib/arborist/monitor/socket.rb:
|
1052
|
+
| Fix race to calculate select timeout in socket monitor
|
1053
|
+
| [56a6dd2a8e40]
|
1054
|
+
|
|
976
1055
|
2016-07-20 Michael Granger <ged@FaerieMUD.org>
|
977
1056
|
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
1057
|
+
o * TODO.md:
|
1058
|
+
| Update the To-Do file
|
1059
|
+
| [53ca09b4d50e]
|
1060
|
+
|
|
982
1061
|
2016-07-20 Mahlon E. Smith <mahlon@martini.nu>
|
983
1062
|
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
1063
|
+
o * lib/arborist/node/resource.rb, spec/arborist/node/resource_spec.rb:
|
1064
|
+
| Add a `category` attribute to the resource node type.
|
1065
|
+
| [ae3aa8435e15]
|
1066
|
+
|
|
988
1067
|
2016-07-20 Michael Granger <ged@FaerieMUD.org>
|
989
1068
|
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1069
|
+
o * .gems, .tm_properties, Events.md, TODO.md, arborist.gemspec,
|
1070
|
+
| lib/arborist.rb, lib/arborist/command/watch.rb,
|
1071
|
+
| lib/arborist/event/sys_shutdown.rb, lib/arborist/manager.rb,
|
1072
|
+
| lib/arborist/manager/event_publisher.rb,
|
1073
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/node.rb,
|
1074
|
+
| lib/arborist/observer_runner.rb, spec/arborist/client_spec.rb,
|
1075
|
+
| spec/arborist/manager/event_publisher_spec.rb,
|
1076
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1077
|
+
| spec/arborist/manager_spec.rb,
|
1078
|
+
| spec/arborist/observer_runner_spec.rb, spec/spec_helper.rb:
|
1079
|
+
| Send system events from the manager for status changes
|
1080
|
+
| [4cc9924e6b0c]
|
1081
|
+
|
|
1003
1082
|
2016-06-15 Michael Granger <ged@FaerieMUD.org>
|
1004
1083
|
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1084
|
+
o * spec/arborist/observer_spec.rb, spec/data/observers/auditor.rb:
|
1085
|
+
| Fix signature of observer actions in specs
|
1086
|
+
| [196443e52d87]
|
1087
|
+
|
|
1088
|
+
o * lib/arborist/node.rb, lib/arborist/node/host.rb,
|
1089
|
+
| spec/arborist/node_spec.rb:
|
1090
|
+
| Add a config hash to node operational metadata
|
1091
|
+
| [196223da8ba4]
|
1092
|
+
|
|
1014
1093
|
2016-05-19 Mahlon E. Smith <mahlon@martini.nu>
|
1015
1094
|
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1095
|
+
o * lib/arborist/node/resource.rb, spec/arborist/node/resource_spec.rb:
|
1096
|
+
| Resource nodes should also inherit addressing from their parent
|
1097
|
+
| hosts (as service nodes do).
|
1098
|
+
|
|
1099
|
+
| This gives resource monitors a path to gathering information -- an
|
1100
|
+
| obvious example being load or disk checks over SNMP. Something that
|
1101
|
+
| isn't a service with a protocol and port, but a necessary piece of
|
1102
|
+
| information for overall host and service health, that should be
|
1103
|
+
| monitored (and potentially ack'ed/disabled) independently.
|
1104
|
+
| [b4324ab8853e]
|
1105
|
+
|
|
1027
1106
|
2016-05-18 Mahlon E. Smith <mahlon@laika.com>
|
1028
1107
|
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1108
|
+
o * lib/arborist/cli.rb:
|
1109
|
+
| Remove the default log level from the arborist command line client.
|
1110
|
+
| [39338420aaa0]
|
1111
|
+
|
|
1033
1112
|
2016-05-04 Michael Granger <ged@FaerieMUD.org>
|
1034
1113
|
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1114
|
+
o * Protocol.md, README.md, lib/arborist/dependency.rb,
|
1115
|
+
| lib/arborist/node.rb, spec/arborist/dependency_spec.rb,
|
1116
|
+
| spec/arborist/node_spec.rb:
|
1117
|
+
| Fix the way nodes' dependency state is restored
|
1118
|
+
| [325443abe6df]
|
1119
|
+
|
|
1041
1120
|
2016-04-27 Michael Granger <ged@FaerieMUD.org>
|
1042
1121
|
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1122
|
+
o * README.md:
|
1123
|
+
| Remove the link to the "tutorial" until there is one
|
1124
|
+
| [650c1e0a0628]
|
1125
|
+
|
|
1126
|
+
o * lib/arborist/client.rb, spec/arborist/client_spec.rb:
|
1127
|
+
| Add fetch with depth to the client
|
1128
|
+
| [96b36155fad0]
|
1129
|
+
|
|
1051
1130
|
2016-04-20 Michael Granger <ged@FaerieMUD.org>
|
1052
1131
|
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1132
|
+
o * arborist.gemspec:
|
1133
|
+
| Update the gemspec
|
1134
|
+
| [1cd5199203f9]
|
1135
|
+
|
|
1136
|
+
o * lib/arborist/command/start.rb:
|
1137
|
+
| Don't default to profiling the start command
|
1138
|
+
| [8f480f46c441]
|
1139
|
+
|
|
1140
|
+
o * Manifest.txt, lib/arborist/node/resource.rb,
|
1141
|
+
| spec/arborist/node/resource_spec.rb,
|
1142
|
+
| spec/arborist/node/service_spec.rb:
|
1143
|
+
| Add a `resource` host subnode type.
|
1144
|
+
| [880c4d370508]
|
1145
|
+
|
|
1146
|
+
o * Protocol.md, TODO.md, lib/arborist/manager.rb,
|
1147
|
+
| lib/arborist/manager/tree_api.rb,
|
1148
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1149
|
+
| spec/arborist/manager_spec.rb:
|
1150
|
+
| Add a depth argument to the tree API "list" command.
|
1151
|
+
| [e319210e26cb]
|
1152
|
+
|
|
1153
|
+
o * lib/arborist/monitor/socket.rb:
|
1154
|
+
| Use an empty string for the send in the UDP socket monitor
|
1155
|
+
| [4a43736bba05]
|
1156
|
+
|
|
1157
|
+
o * Manifest.txt:
|
1158
|
+
| Update the manifest
|
1159
|
+
| [15f5c789b17c]
|
1160
|
+
|
|
1161
|
+
o * spec/arborist/event/node_spec.rb:
|
1162
|
+
| Add specs for the node event base class
|
1163
|
+
| [d9b8715427c3]
|
1164
|
+
|
|
1165
|
+
o * spec/data/observers/webservices.rb:
|
1166
|
+
| Fix the observer setup in spec data
|
1167
|
+
| [a990ba28f0a8]
|
1168
|
+
|
|
1169
|
+
o * lib/arborist/monitor/socket.rb:
|
1170
|
+
| Add a to-do comment for a race condition
|
1171
|
+
| [7aab38ffd06a]
|
1172
|
+
|
|
1094
1173
|
2016-04-18 Michael Granger <ged@FaerieMUD.org>
|
1095
1174
|
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1175
|
+
o * lib/arborist/cli.rb, lib/arborist/command/start.rb:
|
1176
|
+
| Add profiling to the `start` command, clean up cli code a bit
|
1177
|
+
| [7117040136c4]
|
1178
|
+
|
|
1100
1179
|
2016-04-18 Mahlon E. Smith <mahlon@martini.nu>
|
1101
1180
|
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1181
|
+
o * TODO.md:
|
1182
|
+
| Update TODO with some additional ideas.
|
1183
|
+
| [f81ee9253773]
|
1184
|
+
|
|
1106
1185
|
2016-04-14 Mahlon E. Smith <mahlon@martini.nu>
|
1107
1186
|
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1187
|
+
o * lib/arborist/monitor/socket.rb, lib/arborist/node.rb:
|
1188
|
+
| Checkpoint commit.
|
1189
|
+
|
|
1190
|
+
| - Add UDP checking, based on the TCP checker.
|
1191
|
+
| - Fix logging for quieted nodes.
|
1192
|
+
| - Start updating the status_changed node attribute on status
|
1193
|
+
| transitions.
|
1194
|
+
| [527fafd7c668]
|
1195
|
+
|
|
1196
|
+
o * TODO.md:
|
1197
|
+
| Add a quick blurb to the TODO.
|
1198
|
+
| [6f93cc30a5e1]
|
1199
|
+
|
|
1121
1200
|
2016-04-14 Michael Granger <ged@FaerieMUD.org>
|
1122
1201
|
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1202
|
+
o * .hgignore, .hoerc, lib/arborist/monitor_runner.rb,
|
1203
|
+
| spec/arborist/manager_spec.rb:
|
1204
|
+
| Fix the monitor running after adding negative criteria.
|
1205
|
+
| [46d6c436174c]
|
1206
|
+
|
|
1128
1207
|
2016-04-13 Michael Granger <ged@FaerieMUD.org>
|
1129
1208
|
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1209
|
+
o * lib/arborist/client.rb, lib/arborist/event/node.rb,
|
1210
|
+
| lib/arborist/manager.rb, lib/arborist/manager/tree_api.rb,
|
1211
|
+
| lib/arborist/monitor_runner.rb, spec/arborist/client_spec.rb,
|
1212
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1213
|
+
| spec/arborist/manager_spec.rb:
|
1214
|
+
| Implement exclude for node matching/monitors
|
1215
|
+
| [99d5e31791a3]
|
1216
|
+
|
|
1217
|
+
o * lib/arborist/monitor.rb, spec/arborist/monitor_spec.rb:
|
1218
|
+
| Handle system call errors while running the monitor command
|
1219
|
+
| [b4ca615e0b32]
|
1220
|
+
|
|
1221
|
+
o * lib/arborist/node.rb, lib/arborist/node/ack.rb,
|
1222
|
+
| spec/arborist/node/ack_spec.rb:
|
1223
|
+
| Fix the status description during state changes with ack set.
|
1224
|
+
| [40c91d7c3131]
|
1225
|
+
|
|
1226
|
+
o * Manifest.txt, TODO.md, arborist.gemspec, lib/arborist/node.rb,
|
1227
|
+
| lib/arborist/node/ack.rb, spec/arborist/node/ack_spec.rb:
|
1228
|
+
| Break node acks out into a class, fix serialization issues
|
1229
|
+
| [d9d01450a189]
|
1230
|
+
|
|
1231
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
1232
|
+
| Fix node ack-clearing
|
1233
|
+
| [b6694a5b8368]
|
1234
|
+
|
|
1156
1235
|
2016-04-12 Mahlon E. Smith <mahlon@martini.nu>
|
1157
1236
|
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1237
|
+
o * lib/arborist/client.rb:
|
1238
|
+
| Add acknowledgement helpers for Arborist::Client.
|
1239
|
+
| [98dae44fa322]
|
1240
|
+
|
|
1162
1241
|
2016-04-11 Michael Granger <ged@FaerieMUD.org>
|
1163
1242
|
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1243
|
+
o * Manifest.txt, lib/arborist/event/node_delta.rb,
|
1244
|
+
| lib/arborist/node/host.rb, spec/arborist/node_spec.rb:
|
1245
|
+
| Add an override to node.delta events
|
1246
|
+
|
|
1247
|
+
| The change to include node attributes in all `node.*` events broke
|
1248
|
+
| the delta event, and changed what the `node.ack` events look like.
|
1249
|
+
|
|
1250
|
+
| This fixes `node.delta` events to look like they did before (only
|
1251
|
+
| including the diff in their payload), and updates the specs for the
|
1252
|
+
| `node.ack` event to expect the new-style payload.
|
1253
|
+
| [af21efce26e3]
|
1254
|
+
|
|
1255
|
+
o * .tm_properties, lib/arborist/event/node.rb,
|
1256
|
+
| lib/arborist/event/node_update.rb,
|
1257
|
+
| spec/arborist/event/node_down_spec.rb,
|
1258
|
+
| spec/arborist/event/node_update_spec.rb:
|
1259
|
+
| Include node payload in all node events
|
1260
|
+
| [8257c7337a2b]
|
1261
|
+
|
|
1262
|
+
o * TODO.md:
|
1263
|
+
| Update TODO
|
1264
|
+
| [fca1215eee50]
|
1265
|
+
|
|
1266
|
+
o * lib/arborist/manager/tree_api.rb:
|
1267
|
+
| Log client api commands at debug instead of info
|
1268
|
+
| [a497308b8723]
|
1269
|
+
|
|
1191
1270
|
2016-04-06 Michael Granger <ged@FaerieMUD.org>
|
1192
1271
|
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1272
|
+
o * TODO.md, lib/arborist/manager.rb, lib/arborist/node.rb,
|
1273
|
+
| spec/arborist/manager_spec.rb:
|
1274
|
+
| Don't cross quieted nodes in default traversal
|
1275
|
+
| [92756b2da807]
|
1276
|
+
|
|
1277
|
+
o * TODO.md:
|
1278
|
+
| Update TO DO list
|
1279
|
+
| [7a24db395228]
|
1280
|
+
|
|
1281
|
+
o * lib/arborist/node.rb:
|
1282
|
+
| Don't log dependency state on every node.up event
|
1283
|
+
| [8585c6dd3240]
|
1284
|
+
|
|
1285
|
+
o * lib/arborist/node/service.rb:
|
1286
|
+
| Don't restore addresses for marshalled services
|
1287
|
+
| [1665d36ffadd]
|
1288
|
+
|
|
1289
|
+
o * lib/arborist/cli.rb:
|
1290
|
+
| Fix logging in the cli
|
1291
|
+
| [25e09c2f43a9]
|
1292
|
+
|
|
1293
|
+
o * Manifest.txt, Nodes.md, TODO.md, arborist.gemspec, lib/arborist.rb,
|
1294
|
+
| lib/arborist/cli.rb, lib/arborist/command/client.rb,
|
1295
|
+
| lib/arborist/command/start.rb, lib/arborist/dependency.rb,
|
1296
|
+
| lib/arborist/event.rb, lib/arborist/event/node.rb,
|
1297
|
+
| lib/arborist/event/node_acked.rb, lib/arborist/event/node_delta.rb,
|
1298
|
+
| lib/arborist/event/node_disabled.rb,
|
1299
|
+
| lib/arborist/event/node_down.rb,
|
1300
|
+
| lib/arborist/event/node_matching.rb,
|
1301
|
+
| lib/arborist/event/node_quieted.rb,
|
1302
|
+
| lib/arborist/event/node_unknown.rb, lib/arborist/event/node_up.rb,
|
1303
|
+
| lib/arborist/event/node_update.rb,
|
1304
|
+
| lib/arborist/event/sys_node_added.rb,
|
1305
|
+
| lib/arborist/event/sys_node_removed.rb, lib/arborist/exceptions.rb,
|
1306
|
+
| lib/arborist/manager.rb, lib/arborist/manager/event_publisher.rb,
|
1307
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/node.rb,
|
1308
|
+
| lib/arborist/node/host.rb, lib/arborist/node/service.rb,
|
1309
|
+
| lib/arborist/subscription.rb, spec/arborist/dependency_spec.rb,
|
1310
|
+
| spec/arborist/event/node_delta_spec.rb,
|
1311
|
+
| spec/arborist/event/node_update_spec.rb,
|
1312
|
+
| spec/arborist/event_spec.rb, spec/arborist/manager_spec.rb,
|
1313
|
+
| spec/arborist/monitor_spec.rb, spec/arborist/node/host_spec.rb,
|
1314
|
+
| spec/arborist/node/service_spec.rb, spec/arborist/node_spec.rb,
|
1315
|
+
| spec/arborist/subscription_spec.rb:
|
1316
|
+
| Add ability to express secondary dependencies
|
1317
|
+
| * * * Experimental sexps using a Struct
|
1318
|
+
| [ed4f0655b4b6]
|
1319
|
+
|
|
1241
1320
|
2016-03-02 Michael Granger <ged@FaerieMUD.org>
|
1242
1321
|
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1322
|
+
o * TODO.md:
|
1323
|
+
| Update the to-do list
|
1324
|
+
| [5ff19d1aefbd]
|
1325
|
+
|
|
1326
|
+
o * arborist.gemspec, lib/arborist/cli.rb, lib/arborist/event.rb,
|
1327
|
+
| lib/arborist/event/node_delta.rb, lib/arborist/mixins.rb,
|
1328
|
+
| lib/arborist/node.rb, spec/arborist/event/node_delta_spec.rb:
|
1329
|
+
| Fix matching for node delta events
|
1330
|
+
| [c3ad32bd54a2]
|
1331
|
+
|
|
1332
|
+
o * lib/arborist/manager.rb:
|
1333
|
+
| Remove unused Manager constant
|
1334
|
+
| [8079f5cdaecb]
|
1335
|
+
|
|
1336
|
+
o * .hoerc:
|
1337
|
+
| Don't include state files in the manifest
|
1338
|
+
| [72aa5a4204b5]
|
1339
|
+
|
|
1340
|
+
o * .hgignore, lib/arborist.rb, lib/arborist/manager.rb,
|
1341
|
+
| lib/arborist/node.rb, lib/arborist/node/root.rb,
|
1342
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node_spec.rb:
|
1343
|
+
| Save and restore tree state across restarts
|
1344
|
+
| * * * fold this
|
1345
|
+
| [f002d3b7cb8b]
|
1346
|
+
|
|
1268
1347
|
2016-02-24 Michael Granger <ged@FaerieMUD.org>
|
1269
1348
|
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1349
|
+
o * TODO.md:
|
1350
|
+
| Update the TODO list
|
1351
|
+
| [47ef6bc4fe24]
|
1352
|
+
|
|
1274
1353
|
2016-02-22 Michael Granger <ged@FaerieMUD.org>
|
1275
1354
|
|
1276
|
-
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1355
|
+
o * TODO.md, lib/arborist/client.rb, lib/arborist/manager/tree_api.rb,
|
1356
|
+
| spec/arborist/client_spec.rb,
|
1357
|
+
| spec/arborist/manager/tree_api_spec.rb:
|
1358
|
+
| Add MODIFY to the tree api/client.
|
1359
|
+
| [6cfcaabc4a68]
|
1360
|
+
|
|
1361
|
+
o * lib/arborist/node.rb, spec/arborist/node_spec.rb:
|
1362
|
+
| Fix Node tags modification
|
1363
|
+
| [7ede931a8214]
|
1364
|
+
|
|
1286
1365
|
2016-02-10 Michael Granger <ged@FaerieMUD.org>
|
1287
1366
|
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1367
|
+
o * TODO.md, lib/arborist/client.rb, lib/arborist/exceptions.rb,
|
1368
|
+
| lib/arborist/manager.rb, lib/arborist/manager/tree_api.rb,
|
1369
|
+
| lib/arborist/node.rb, lib/arborist/node/host.rb,
|
1370
|
+
| lib/arborist/node/service.rb, spec/arborist/client_spec.rb,
|
1371
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1372
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node/service_spec.rb,
|
1373
|
+
| spec/arborist_spec.rb, spec/spec_helper.rb:
|
1374
|
+
| Added GRAFT to the tree API
|
1375
|
+
| [9c41353696cb]
|
1376
|
+
|
|
1377
|
+
o * Protocol.md, TODO.md, lib/arborist/client.rb,
|
1378
|
+
| lib/arborist/manager/tree_api.rb, spec/arborist/client_spec.rb,
|
1379
|
+
| spec/arborist/manager/tree_api_spec.rb:
|
1380
|
+
| Added PRUNE to the tree API.
|
1381
|
+
| [43af5daf67a7]
|
1382
|
+
|
|
1383
|
+
o * TODO.md:
|
1384
|
+
| Updated the TODO list
|
1385
|
+
| [b30a77db11dd]
|
1386
|
+
|
|
1387
|
+
o * LICENSE, Manifest.txt, Rakefile, arborist.gemspec:
|
1388
|
+
| Build system cleanup
|
1389
|
+
| [5fe75989da8e]
|
1390
|
+
|
|
1312
1391
|
2016-02-08 Michael Granger <ged@FaerieMUD.org>
|
1313
1392
|
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1393
|
+
o * lib/arborist.rb, lib/arborist/monitor.rb, lib/arborist/node.rb,
|
1394
|
+
| lib/arborist/node/host.rb, lib/arborist/node/service.rb,
|
1395
|
+
| lib/arborist/observer.rb, spec/arborist/node/host_spec.rb,
|
1396
|
+
| spec/arborist/node_spec.rb, spec/spec_helper.rb:
|
1397
|
+
| Add subnode declarations and add the infrastructure for graft/modify
|
1398
|
+
| [bfcbe35fc82f]
|
1399
|
+
|
|
1321
1400
|
2016-02-03 Michael Granger <ged@FaerieMUD.org>
|
1322
1401
|
|
1323
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1402
|
+
o * TODO.md:
|
1403
|
+
| Add some more stuff to the TODO doc
|
1404
|
+
| [593114f4d409]
|
1405
|
+
|
|
1406
|
+
o * Protocol.md:
|
1407
|
+
| Add the node operations to the Protocol doc
|
1408
|
+
| [250d32bc3eb6]
|
1409
|
+
|
|
1410
|
+
o * Merge with 84af7642624c
|
1411
|
+
|\ [d795d8884afa]
|
1412
|
+
| |
|
1413
|
+
| o * lib/arborist/node.rb:
|
1414
|
+
| | Add API docs for the state_machines generated methods
|
1415
|
+
| | [00d6b23ff90a]
|
1416
|
+
| |
|
1334
1417
|
2016-02-02 Mahlon E. Smith <mahlon@martini.nu>
|
1335
1418
|
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
2016-02-03 Michael Granger <ged@FaerieMUD.org>
|
1345
|
-
|
1346
|
-
* lib/arborist/node.rb:
|
1347
|
-
Add API docs for the state_machines generated methods
|
1348
|
-
[00d6b23ff90a]
|
1349
|
-
|
1419
|
+
o | * .gems, Rakefile, arborist.gemspec:
|
1420
|
+
| | oop, highline also needs to be a dependency.
|
1421
|
+
| | [84af7642624c]
|
1422
|
+
| |
|
1423
|
+
o | * .gems, Rakefile:
|
1424
|
+
|/ Add GLI dependency.
|
1425
|
+
| [d73277230ec2]
|
1426
|
+
|
|
1350
1427
|
2016-01-28 Michael Granger <ged@FaerieMUD.org>
|
1351
1428
|
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1429
|
+
o * README.md, Rakefile, arborist.gemspec:
|
1430
|
+
| Fix the link list in the README, 'docs' rake target.
|
1431
|
+
| [6479be826ccc]
|
1432
|
+
|
|
1433
|
+
o * Manifest.txt, README.md, Tutorial.md:
|
1434
|
+
| Update the README and add a stub for the Tutorial mentioned in it.
|
1435
|
+
| [f020438be6d9]
|
1436
|
+
|
|
1437
|
+
o * spec/arborist/client_spec.rb, spec/spec_helper.rb:
|
1438
|
+
| Skip the spec that requires the ZMQ workaround under CI
|
1439
|
+
|
|
1440
|
+
| - The ZMQ registration bug workaround never works in Semaphore's
|
1441
|
+
| environment, so just skip that spec there.
|
1442
|
+
| [3ec418f69498]
|
1443
|
+
|
|
1444
|
+
o * Manifest.txt, lib/arborist/cli.rb, spec/arborist_spec.rb:
|
1445
|
+
| Fix leaking the root node singleton between specs.
|
1446
|
+
|
|
1447
|
+
| - Also silences some noisy logging from the config specs.
|
1448
|
+
| [570a00a9311d]
|
1449
|
+
|
|
1450
|
+
o * lib/arborist.rb, lib/arborist/node.rb,
|
1451
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1452
|
+
| spec/arborist/monitor_spec.rb, spec/arborist_spec.rb,
|
1453
|
+
| spec/spec_helper.rb:
|
1454
|
+
| Fix some specs; still an order-dependent failure for seed 46570
|
1455
|
+
| [e23d2b9f8f31]
|
1456
|
+
|
|
1457
|
+
o * bin/amanagerd, bin/amonitord, bin/aobserverd, bin/arborist,
|
1458
|
+
| lib/arborist/cli.rb, lib/arborist/client.rb,
|
1459
|
+
| lib/arborist/command/client.rb, lib/arborist/command/config.rb,
|
1460
|
+
| lib/arborist/command/start.rb, lib/arborist/command/watch.rb,
|
1461
|
+
| lib/arborist/event/node_matching.rb, lib/arborist/observer.rb,
|
1462
|
+
| spec/data/monitors/pings.rb:
|
1463
|
+
| Add a CLI and consolidate daemons into a "start" command
|
1464
|
+
| [8180949a5e2c]
|
1465
|
+
|
|
1466
|
+
o * lib/arborist.rb, lib/arborist/loader.rb,
|
1467
|
+
| lib/arborist/loader/file.rb, lib/arborist/manager.rb,
|
1468
|
+
| lib/arborist/monitor.rb, lib/arborist/node.rb,
|
1469
|
+
| lib/arborist/observer.rb:
|
1470
|
+
| Add a loader-plugin system instead of assuming files
|
1471
|
+
| [6871a50affeb]
|
1472
|
+
|
|
1396
1473
|
2016-01-20 Michael Granger <ged@FaerieMUD.org>
|
1397
1474
|
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1475
|
+
o * lib/arborist/node.rb:
|
1476
|
+
| Whitespace fix
|
1477
|
+
| [4ad9a2f6dd09]
|
1478
|
+
|
|
1479
|
+
o * spec/arborist/node_spec.rb, spec/data/monitors/port_checks.rb:
|
1480
|
+
| Remove a note from the port checks example after discussion
|
1481
|
+
| [e41ae3591da2]
|
1482
|
+
|
|
1483
|
+
o * TODO.md:
|
1484
|
+
| Add some more TODO stuff
|
1485
|
+
| [cf1ef68d637d]
|
1486
|
+
|
|
1487
|
+
o * Rakefile:
|
1488
|
+
| Fix license copypasta in the Rakefile
|
1489
|
+
| [83ab92cd92b1]
|
1490
|
+
|
|
1491
|
+
o * TODO.md, arborist.gemspec, lib/arborist/manager.rb,
|
1492
|
+
| lib/arborist/node.rb, spec/arborist/manager_spec.rb,
|
1493
|
+
| spec/arborist/node_spec.rb:
|
1494
|
+
| Add 'disabled' node state.
|
1495
|
+
| [747e81edf7e4]
|
1496
|
+
|
|
1497
|
+
o * .hgignore, Rakefile, arborist.gemspec, lib/arborist/node/service.rb:
|
1498
|
+
| Updates for the gem build.
|
1499
|
+
| [de06b562b8bd]
|
1500
|
+
|
|
1424
1501
|
2015-12-31 Michael Granger <ged@FaerieMUD.org>
|
1425
1502
|
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1503
|
+
o * alerts/host_down.rb, images/Leaf.sketch, monitoring_featureset.txt:
|
1504
|
+
| Removing some miscellanous files
|
1505
|
+
| [a2f8b47a4b2a]
|
1506
|
+
|
|
1430
1507
|
2015-12-30 Michael Granger <ged@FaerieMUD.org>
|
1431
1508
|
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1509
|
+
o * .gems, .hoerc, Manifest.txt, Observers.md, Rakefile,
|
1510
|
+
| arborist.gemspec, lib/arborist/observer/action.rb,
|
1511
|
+
| lib/arborist/observer/summarize.rb,
|
1512
|
+
| spec/arborist/observer/summarize_spec.rb:
|
1513
|
+
| Add scheduling to observers.
|
1514
|
+
| [55599200bf56]
|
1515
|
+
|
|
1439
1516
|
2015-12-16 Michael Granger <ged@FaerieMUD.org>
|
1440
1517
|
|
1441
|
-
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1518
|
+
o * Observers.md, bin/amonitord, bin/aobserverd,
|
1519
|
+
| lib/arborist/observer.rb, lib/arborist/observer/action.rb,
|
1520
|
+
| lib/arborist/observer/summarize.rb, lib/arborist/observer_runner.rb,
|
1521
|
+
| spec/arborist/observer/action_spec.rb,
|
1522
|
+
| spec/arborist/observer/summarize_spec.rb,
|
1523
|
+
| spec/arborist/observer_spec.rb, spec/data/observers/auditor.rb:
|
1524
|
+
| Add Observer#summarize actions
|
1525
|
+
| * * * Hook Action and Summary into Observers
|
1526
|
+
| [335823f98550]
|
1527
|
+
|
|
1451
1528
|
2015-12-14 Michael Granger <ged@FaerieMUD.org>
|
1452
1529
|
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1530
|
+
o * lib/arborist/manager/event_publisher.rb:
|
1531
|
+
| Break the #register retry loop
|
1532
|
+
| [d784b06e615d]
|
1533
|
+
|
|
1457
1534
|
2015-12-11 Michael Granger <ged@FaerieMUD.org>
|
1458
1535
|
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1536
|
+
o * .hgignore, Observers.md, Protocol.md, TODO.md,
|
1537
|
+
| lib/arborist/manager.rb, lib/arborist/observer.rb,
|
1538
|
+
| lib/arborist/observer/action.rb, lib/arborist/observer_runner.rb,
|
1539
|
+
| spec/arborist/observer/action_spec.rb:
|
1540
|
+
| Implement count and time thresholds on Observer actions
|
1541
|
+
| [88e5b037232f]
|
1542
|
+
|
|
1466
1543
|
2015-12-09 Michael Granger <ged@FaerieMUD.org>
|
1467
1544
|
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1545
|
+
o * Observers.md, bin/aobserverd, lib/arborist.rb,
|
1546
|
+
| lib/arborist/client.rb, lib/arborist/event.rb,
|
1547
|
+
| lib/arborist/event/node_acked.rb, lib/arborist/event/node_delta.rb,
|
1548
|
+
| lib/arborist/event/node_matching.rb,
|
1549
|
+
| lib/arborist/event/node_update.rb, lib/arborist/manager.rb,
|
1550
|
+
| lib/arborist/manager/event_publisher.rb,
|
1551
|
+
| lib/arborist/monitor/socket.rb, lib/arborist/node.rb,
|
1552
|
+
| lib/arborist/node/service.rb, lib/arborist/observer.rb,
|
1553
|
+
| lib/arborist/observer_runner.rb, lib/arborist/subscription.rb,
|
1554
|
+
| spec/arborist/client_spec.rb,
|
1555
|
+
| spec/arborist/event/node_update_spec.rb,
|
1556
|
+
| spec/arborist/event_spec.rb,
|
1557
|
+
| spec/arborist/manager/event_publisher_spec.rb,
|
1558
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1559
|
+
| spec/arborist/manager_spec.rb, spec/arborist/observer_spec.rb,
|
1560
|
+
| spec/arborist/subscription_spec.rb, spec/data/nodes/localhost.rb,
|
1561
|
+
| spec/data/observers/auditor.rb, spec/data/observers/webservices.rb,
|
1562
|
+
| spec/spec_helper.rb:
|
1563
|
+
| Add Observer class
|
1564
|
+
| * * * Refactor publication responsibility into Subscription
|
1565
|
+
| [fddcbace9b6d]
|
1566
|
+
|
|
1490
1567
|
2015-12-07 Michael Granger <ged@FaerieMUD.org>
|
1491
1568
|
|
1492
|
-
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1569
|
+
o * lib/arborist/node.rb:
|
1570
|
+
| Allow single filename arguments to Node.each_in as with Monitor et.
|
1571
|
+
| al.
|
1572
|
+
| [b675468ea2d3]
|
1573
|
+
|
|
1574
|
+
o * lib/arborist/monitor.rb:
|
1575
|
+
| Fix a constant name in monitor.rb.
|
1576
|
+
| [3fc70d8200e5]
|
1577
|
+
|
|
1578
|
+
o * lib/arborist/monitor/socket.rb,
|
1579
|
+
| spec/arborist/monitor/socket_spec.rb:
|
1580
|
+
| Fix the update data and error handling in the socket monitor
|
1581
|
+
| [a552217db04b]
|
1582
|
+
|
|
1506
1583
|
2015-12-05 Michael Granger <ged@FaerieMUD.org>
|
1507
1584
|
|
1508
|
-
|
1509
|
-
|
1510
|
-
|
1511
|
-
|
1512
|
-
|
1513
|
-
|
1585
|
+
o * lib/arborist/monitor/socket.rb,
|
1586
|
+
| spec/arborist/monitor/socket_spec.rb,
|
1587
|
+
| spec/data/monitors/port_checks.rb:
|
1588
|
+
| Add initial TCP socket monitor logic class
|
1589
|
+
| [a93e4f9cc81c]
|
1590
|
+
|
|
1514
1591
|
2015-12-03 Michael Granger <ged@FaerieMUD.org>
|
1515
1592
|
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1593
|
+
o * lib/arborist/node.rb, lib/arborist/node/host.rb,
|
1594
|
+
| lib/arborist/node/service.rb, spec/arborist/node/host_spec.rb,
|
1595
|
+
| spec/arborist/node/service_spec.rb, spec/arborist/node_spec.rb,
|
1596
|
+
| spec/spec_helper.rb:
|
1597
|
+
| Fix some node filtering issues and improve Node#inspect
|
1598
|
+
| [9f03e5ab6b67]
|
1599
|
+
|
|
1600
|
+
o * lib/arborist/mixins.rb, spec/arborist/mixins_spec.rb:
|
1601
|
+
| Add future? and past? to TimeRefinements
|
1602
|
+
| [5395744f5005]
|
1603
|
+
|
|
1527
1604
|
2015-12-02 Michael Granger <ged@FaerieMUD.org>
|
1528
1605
|
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1606
|
+
o * Monitors.md, lib/arborist/monitor.rb, spec/arborist/monitor_spec.rb:
|
1607
|
+
| Make Monitor#exec accept any object that implements #run
|
1608
|
+
| [38cf9a76d080]
|
1609
|
+
|
|
1610
|
+
o * .hgignore, Monitors.md, lib/arborist/monitor.rb,
|
1611
|
+
| spec/arborist/monitor_spec.rb:
|
1612
|
+
| Allow monitor exec to take a Module too
|
1613
|
+
| [f9b1e2534a0b]
|
1614
|
+
|
|
1538
1615
|
2015-11-16 Michael Granger <ged@FaerieMUD.org>
|
1539
1616
|
|
1540
|
-
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1617
|
+
o * .gems, .tm_properties, Monitors.md, Protocol.md, bin/amonitord,
|
1618
|
+
| experiments/modcontext-instance-eval.rb, experiments/pipe-cat.rb,
|
1619
|
+
| lib/arborist/client.rb, lib/arborist/monitor.rb,
|
1620
|
+
| spec/arborist/manager_spec.rb, spec/arborist/monitor_spec.rb,
|
1621
|
+
| spec/data/monitors/pings.rb, spec/data/monitors/web_services.rb,
|
1622
|
+
| spec/spec_helper.rb:
|
1623
|
+
| Rewrote monitor strategy
|
1624
|
+
| [1c67662ec4f3]
|
1625
|
+
|
|
1549
1626
|
2015-10-14 Michael Granger <ged@FaerieMUD.org>
|
1550
1627
|
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1628
|
+
o * .gems, Monitors.md, Protocol.md, lib/arborist/manager.rb,
|
1629
|
+
| lib/arborist/monitor.rb, spec/data/monitors/pings.rb,
|
1630
|
+
| spec/data/observers/webservices.rb:
|
1631
|
+
| Change the execution strategy used for monitors/observers.
|
1632
|
+
|
|
1633
|
+
| Update docs/examples with the new mechanism
|
1634
|
+
| [979179fac69a]
|
1635
|
+
|
|
1559
1636
|
2015-10-07 Mahlon E. Smith <mahlon@martini.nu>
|
1560
1637
|
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1638
|
+
o * .gems, Rakefile, experiments/arborist.schema, experiments/nodes-
|
1639
|
+
| from-ldap.rb, lib/arborist/manager.rb:
|
1640
|
+
| Checkpoint a LDAP sourced node builder.
|
1641
|
+
| [0bdf779138c4]
|
1642
|
+
|
|
1566
1643
|
2015-09-10 Michael Granger <ged@FaerieMUD.org>
|
1567
1644
|
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1571
|
-
|
1645
|
+
o * lib/arborist/node.rb, spec/arborist_spec.rb, spec/spec_helper.rb:
|
1646
|
+
| Only use the `spec/data/nodes` directory for loading test nodes
|
1647
|
+
| [43882cef9f1f]
|
1648
|
+
|
|
1572
1649
|
2015-09-09 Michael Granger <ged@FaerieMUD.org>
|
1573
1650
|
|
1574
|
-
|
1575
|
-
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
|
1651
|
+
o * Observers.md, lib/arborist/client.rb, lib/arborist/event.rb,
|
1652
|
+
| lib/arborist/event/sys_reloaded.rb, lib/arborist/manager.rb,
|
1653
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/node.rb,
|
1654
|
+
| lib/arborist/subscription.rb, spec/arborist/client_spec.rb,
|
1655
|
+
| spec/arborist/event_spec.rb, spec/arborist/manager/tree_api_spec.rb,
|
1656
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node_spec.rb,
|
1657
|
+
| spec/arborist/subscription_spec.rb, spec/data/nodes/sidonie.rb,
|
1658
|
+
| spec/data/observers/webservices.rb:
|
1659
|
+
| Checkpoint commit
|
1660
|
+
| [2e629096ee55]
|
1661
|
+
|
|
1585
1662
|
2015-08-20 Michael Granger <ged@FaerieMUD.org>
|
1586
1663
|
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
|
1594
|
-
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
|
1664
|
+
o * Rakefile, arborist.gemspec:
|
1665
|
+
| Add missing author to the gemspec.
|
1666
|
+
| [013f9be18f9f]
|
1667
|
+
|
|
1668
|
+
o * Events.md, Manifest.txt, Observers.md, Rakefile, arborist.gemspec,
|
1669
|
+
| lib/arborist.rb, lib/arborist/event.rb,
|
1670
|
+
| lib/arborist/event/node_acked.rb, lib/arborist/event/node_delta.rb,
|
1671
|
+
| lib/arborist/event/node_update.rb, lib/arborist/manager.rb,
|
1672
|
+
| lib/arborist/manager/event_publisher.rb,
|
1673
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/node.rb,
|
1674
|
+
| lib/arborist/node/root.rb, lib/arborist/subscription.rb,
|
1675
|
+
| spec/arborist/event/node_update_spec.rb,
|
1676
|
+
| spec/arborist/event_spec.rb,
|
1677
|
+
| spec/arborist/manager/event_publisher_spec.rb,
|
1678
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1679
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node/root_spec.rb,
|
1680
|
+
| spec/arborist/node_spec.rb, spec/arborist/subscription_spec.rb,
|
1681
|
+
| spec/spec_helper.rb:
|
1682
|
+
| Add basic subscriptions, flesh out events.
|
1683
|
+
| [6c8636097d37]
|
1684
|
+
|
|
1608
1685
|
2015-07-20 Michael Granger <ged@FaerieMUD.org>
|
1609
1686
|
|
1610
|
-
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1687
|
+
o * Events.md, Manifest.txt, Observers.md, lib/arborist.rb,
|
1688
|
+
| lib/arborist/event.rb, lib/arborist/manager.rb,
|
1689
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/node.rb,
|
1690
|
+
| spec/arborist/client_spec.rb,
|
1691
|
+
| spec/arborist/manager/event_publisher_spec.rb,
|
1692
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1693
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node_spec.rb:
|
1694
|
+
| Start work on adding node update events
|
1695
|
+
|
|
1696
|
+
| - Simplify event class (no need for pluggability yet)
|
1697
|
+
| - Refactor some of the tree API code with too much intimate knowledge
|
1698
|
+
| of the manager and nodes up into the manager. This is also how the
|
1699
|
+
| manager will be able to do event propagation from Tree API calls.
|
1700
|
+
| - Add event-generation to Node#update.
|
1701
|
+
| - Make the Tree API fetch always return Hash values for consistency
|
1702
|
+
| [af63d56deafa]
|
1703
|
+
|
|
1627
1704
|
2015-07-15 Michael Granger <ged@FaerieMUD.org>
|
1628
1705
|
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1706
|
+
o * lib/arborist.rb, lib/arborist/manager.rb,
|
1707
|
+
| spec/arborist/client_spec.rb,
|
1708
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1709
|
+
| spec/arborist/manager_spec.rb, spec/arborist/monitor_runner_spec.rb,
|
1710
|
+
| spec/arborist_spec.rb:
|
1711
|
+
| Fix a spec problem with trying to use two ZMQ contexts
|
1712
|
+
| [ee2875d38797]
|
1713
|
+
|
|
1637
1714
|
2015-07-08 Michael Granger <ged@FaerieMUD.org>
|
1638
1715
|
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1716
|
+
o * Manifest.txt, bin/amonitord, lib/arborist.rb,
|
1717
|
+
| lib/arborist/monitor_runner.rb, monitors/pings.rb,
|
1718
|
+
| monitors/system_resources.rb, monitors/web_services.rb,
|
1719
|
+
| spec/arborist/manager_spec.rb, spec/arborist/monitor_runner_spec.rb,
|
1720
|
+
| spec/arborist_spec.rb, spec/data/monitors/pings.rb,
|
1721
|
+
| spec/data/monitors/system_resources.rb,
|
1722
|
+
| spec/data/monitors/web_services.rb:
|
1723
|
+
| Add a monitor runner.
|
1724
|
+
| [cd9a1a9cb61a]
|
1725
|
+
|
|
1649
1726
|
2015-07-06 Michael Granger <ged@FaerieMUD.org>
|
1650
1727
|
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1728
|
+
o * monitors/pings.rb:
|
1729
|
+
| Only ping "down" nodes from the downed host pinger
|
1730
|
+
| [874a2816d0d5]
|
1731
|
+
|
|
1655
1732
|
2015-07-03 Michael Granger <ged@FaerieMUD.org>
|
1656
1733
|
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1676
|
-
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1680
|
-
|
1681
|
-
|
1734
|
+
o * spec/data/nodes/duir.rb:
|
1735
|
+
| Make the testing data work on hosts with no 'nat-pmp' /etc/services
|
1736
|
+
| entry.
|
1737
|
+
| [25bdee773318]
|
1738
|
+
|
|
1739
|
+
o * Rakefile, arborist.gemspec, bin/amanagerd:
|
1740
|
+
| Add timecop developer dep
|
1741
|
+
| [682cf0904237]
|
1742
|
+
|
|
1743
|
+
o * Rakefile, arborist.gemspec:
|
1744
|
+
| Fix rbczmq version.
|
1745
|
+
| [337d4ddc2c41]
|
1746
|
+
|
|
1747
|
+
o * Rakefile, arborist.gemspec:
|
1748
|
+
| Fix deps: add rbczmq, remove rgl.
|
1749
|
+
| [00aed09c231c]
|
1750
|
+
|
|
1751
|
+
o * Manifest.txt, Nodes.md, arborist.gemspec:
|
1752
|
+
| Update manifest, gemspec.
|
1753
|
+
| [905f639ef8c2]
|
1754
|
+
|
|
1755
|
+
o * Rakefile:
|
1756
|
+
| Rebuild the gemspec before checkin
|
1757
|
+
| [6ac865dc47c1]
|
1758
|
+
|
|
1682
1759
|
2015-07-02 Michael Granger <ged@FaerieMUD.org>
|
1683
1760
|
|
1684
|
-
|
1685
|
-
|
1686
|
-
|
1687
|
-
|
1688
|
-
|
1689
|
-
|
1690
|
-
|
1691
|
-
|
1692
|
-
|
1693
|
-
|
1694
|
-
|
1695
|
-
|
1696
|
-
|
1697
|
-
|
1698
|
-
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
|
1761
|
+
o * experiments/run_monitors.rb, lib/arborist.rb,
|
1762
|
+
| lib/arborist/client.rb, lib/arborist/node.rb,
|
1763
|
+
| lib/arborist/node/host.rb, lib/arborist/node/root.rb,
|
1764
|
+
| spec/arborist/client_spec.rb:
|
1765
|
+
| Add a spike of a ZMQ::Loop-based monitor runner.
|
1766
|
+
| [c32fc2af7e33]
|
1767
|
+
|
|
1768
|
+
o * lib/arborist/manager.rb, lib/arborist/manager/event_publisher.rb,
|
1769
|
+
| spec/arborist/manager/event_publisher_spec.rb:
|
1770
|
+
| Add registration/deregistration for event publisher to avoid
|
1771
|
+
| spinning.
|
1772
|
+
| [fd304df012d4]
|
1773
|
+
|
|
1774
|
+
o * Monitors.md, lib/arborist/monitor.rb, monitors/pings.rb,
|
1775
|
+
| monitors/system_resources.rb, monitors/web_services.rb,
|
1776
|
+
| spec/arborist/monitor_spec.rb:
|
1777
|
+
| Add initial implementation of the monitor class.
|
1778
|
+
| [9fe5a028d82a]
|
1779
|
+
|
|
1703
1780
|
2015-07-01 Michael Granger <ged@FaerieMUD.org>
|
1704
1781
|
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1782
|
+
o * experiments/fping_wrapper.sh, experiments/fping_wrapper_data.txt:
|
1783
|
+
| Adding experimental fping shell wrapper
|
1784
|
+
| [97321e2a97fd]
|
1785
|
+
|
|
1709
1786
|
2015-06-19 Michael Granger <ged@FaerieMUD.org>
|
1710
1787
|
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1788
|
+
o * README.md:
|
1789
|
+
| Fix spelling of the project in the README.
|
1790
|
+
| [f0ffaa9a81b8]
|
1791
|
+
|
|
1715
1792
|
2015-06-18 Michael Granger <ged@FaerieMUD.org>
|
1716
1793
|
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1794
|
+
o * Monitors.md, Protocol.md:
|
1795
|
+
| Renamed Monitors.md to Protocol.md
|
1796
|
+
| [05ab00e422c5]
|
1797
|
+
|
|
1721
1798
|
2015-06-17 Michael Granger <ged@FaerieMUD.org>
|
1722
1799
|
|
1723
|
-
|
1724
|
-
|
1725
|
-
|
1726
|
-
|
1727
|
-
|
1728
|
-
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1735
|
-
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1800
|
+
o * bin/amanagerd, experiments/make_dot.rb, lib/arborist.rb,
|
1801
|
+
| lib/arborist/client.rb, lib/arborist/manager.rb,
|
1802
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/mixins.rb,
|
1803
|
+
| lib/arborist/node.rb, lib/arborist/node/host.rb,
|
1804
|
+
| lib/arborist/node/service.rb, spec/arborist/client_spec.rb,
|
1805
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1806
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node_spec.rb,
|
1807
|
+
| spec/spec_helper.rb:
|
1808
|
+
| Finish up work on the Tree API, add a simple client class
|
1809
|
+
| [6e4b8b2e9692]
|
1810
|
+
|
|
1811
|
+
o * Monitors.md, lib/arborist/manager.rb,
|
1812
|
+
| lib/arborist/manager/event_publisher.rb,
|
1813
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/mixins.rb,
|
1814
|
+
| lib/arborist/node.rb, lib/arborist/node/host.rb,
|
1815
|
+
| lib/arborist/node/service.rb,
|
1816
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1817
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node/service_spec.rb,
|
1818
|
+
| spec/arborist/node_spec.rb, spec/data/nodes/sidonie.rb,
|
1819
|
+
| spec/data/nodes/yevaud.rb:
|
1820
|
+
| Checkpoint commit
|
1821
|
+
| [53f8c46273b7]
|
1822
|
+
|
|
1746
1823
|
2015-05-28 Michael Granger <ged@FaerieMUD.org>
|
1747
1824
|
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1825
|
+
o * .tm_properties, lib/arborist/manager.rb,
|
1826
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/node.rb,
|
1827
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1828
|
+
| spec/arborist/manager_spec.rb:
|
1829
|
+
| Checkpoint of work from Wednesday
|
1830
|
+
| [c17020a7fb2a]
|
1831
|
+
|
|
1755
1832
|
2015-05-27 Mahlon E. Smith <mahlon@martini.nu>
|
1756
1833
|
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1834
|
+
o * .gems, experiments/make_dot.rb:
|
1835
|
+
| Add some dependencies to the .gems file. Add a simplistic .dot
|
1836
|
+
| generator.
|
1837
|
+
| [3e66ce756411]
|
1838
|
+
|
|
1762
1839
|
2015-05-25 Michael Granger <ged@FaerieMUD.org>
|
1763
1840
|
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1769
|
-
|
1770
|
-
|
1771
|
-
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
1780
|
-
|
1781
|
-
|
1782
|
-
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
1841
|
+
o * .gems, .hgignore, Manifest.txt, Monitors.md, Observers.md, Rakefile,
|
1842
|
+
| experiments/manager-sockets.rb, experiments/yay-client.rb,
|
1843
|
+
| lib/arborist.rb, lib/arborist/exceptions.rb,
|
1844
|
+
| lib/arborist/manager.rb, lib/arborist/manager/event_publisher.rb,
|
1845
|
+
| lib/arborist/manager/tree_api.rb, lib/arborist/node/host.rb,
|
1846
|
+
| lib/arborist/node/service.rb, lib/arborist/node/webservice.rb,
|
1847
|
+
| spec/arborist/manager/event_publisher_spec.rb,
|
1848
|
+
| spec/arborist/manager/tree_api_spec.rb,
|
1849
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node/service_spec.rb,
|
1850
|
+
| spec/arborist_spec.rb, spec/data/nodes/duir.rb,
|
1851
|
+
| spec/data/nodes/sidonie.rb, spec/data/nodes/test1.rb,
|
1852
|
+
| spec/data/nodes/yevaud.rb, spec/spec_helper.rb, tree/duir.rb,
|
1853
|
+
| tree/sidonie.rb, tree/yevaud.rb:
|
1854
|
+
| Start implementing the Tree API
|
1855
|
+
|
|
1856
|
+
| - Document the protocol
|
1857
|
+
| - Start specs for the API handler.
|
1858
|
+
| - Add MessagePack lib dependency
|
1859
|
+
| - Add manager server stuff (startup, shutdown, signal-handling, etc.)
|
1860
|
+
| - Resolve some problems with the Service node type.
|
1861
|
+
| [c6fb156530cc]
|
1862
|
+
|
|
1786
1863
|
2015-05-06 Michael Granger <ged@FaerieMUD.org>
|
1787
1864
|
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1791
|
-
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1796
|
-
|
1797
|
-
|
1798
|
-
|
1799
|
-
|
1800
|
-
|
1801
|
-
|
1865
|
+
o * ChangeLog, Manifest.txt, Monitors.md, experiments/monitor-client.rb,
|
1866
|
+
| experiments/monitor-service.rb, lib/arborist.rb,
|
1867
|
+
| lib/arborist/mixins.rb, lib/arborist/node.rb,
|
1868
|
+
| lib/arborist/node/host.rb, lib/arborist/node/service.rb,
|
1869
|
+
| monitors/pings.rb, spec/arborist/node/host_spec.rb,
|
1870
|
+
| spec/arborist/node/root_spec.rb, spec/arborist/node/service_spec.rb,
|
1871
|
+
| spec/arborist/node_spec.rb, spec/arborist_spec.rb:
|
1872
|
+
| Checkpoint of work from today and last week.
|
1873
|
+
|
|
1874
|
+
| - Added acknowlegements to Arborist::Node
|
1875
|
+
| - Fixed address code for host nodes, port code for service nodes.
|
1876
|
+
| - Better spec coverage all around.
|
1877
|
+
| [c94494647182]
|
1878
|
+
|
|
1802
1879
|
2015-04-22 Michael Granger <ged@FaerieMUD.org>
|
1803
1880
|
|
1804
|
-
|
1805
|
-
|
1806
|
-
|
1807
|
-
|
1808
|
-
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1881
|
+
o * .pryrc:
|
1882
|
+
| Load all node types in .pryrc
|
1883
|
+
| [7366a03c490e]
|
1884
|
+
|
|
1885
|
+
o * lib/arborist.rb:
|
1886
|
+
| Fix a bug in `Arborist.manager_for`
|
1887
|
+
| [4c9abee5b344]
|
1888
|
+
|
|
1889
|
+
o * lib/arborist/node.rb, lib/arborist/node/webservice.rb,
|
1890
|
+
| spec/arborist/node_spec.rb:
|
1891
|
+
| Add properties/status API to Arborist::Node.
|
1892
|
+
| [98f3f332b5a3]
|
1893
|
+
|
|
1894
|
+
o * experiments/monitor-client.rb, experiments/monitor-service.rb:
|
1895
|
+
| Add spike of REQ/REP socket use
|
1896
|
+
| [0126d248b0f6]
|
1897
|
+
|
|
1821
1898
|
2015-04-15 Michael Granger <ged@FaerieMUD.org>
|
1822
1899
|
|
1823
|
-
|
1824
|
-
|
1825
|
-
|
1826
|
-
|
1827
|
-
|
1828
|
-
|
1829
|
-
|
1830
|
-
|
1900
|
+
o * .tm_properties, Monitors.md, Rakefile, experiments/hash-add.rb,
|
1901
|
+
| lib/arborist.rb, lib/arborist/manager.rb, lib/arborist/node.rb,
|
1902
|
+
| lib/arborist/node/host.rb, lib/arborist/node/root.rb,
|
1903
|
+
| spec/arborist/manager_spec.rb, spec/arborist/node_spec.rb,
|
1904
|
+
| spec/data/nodes/test1.rb, spec/spec_helper.rb:
|
1905
|
+
| Add basic node graph functionality
|
1906
|
+
| [e653b1bafeb7]
|
1907
|
+
|
|
1831
1908
|
2015-03-22 Michael Granger <ged@FaerieMUD.org>
|
1832
1909
|
|
1833
|
-
|
1834
|
-
|
1835
|
-
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1910
|
+
o * .gems, .pryrc, .rvm.gems, README.md, images/Leaf.sketch,
|
1911
|
+
| lib/arborist.rb, lib/arborist/collector.rb, lib/arborist/manager.rb,
|
1912
|
+
| lib/arborist/node.rb, lib/arborist/node/host.rb,
|
1913
|
+
| spec/arborist/collector_spec.rb, spec/arborist/manager_spec.rb,
|
1914
|
+
| tree/duir.rb, tree/sidonie.rb, tree/yevaud.rb:
|
1915
|
+
| Snapshot of today's spike work
|
1916
|
+
| [203aed65712a]
|
1917
|
+
|
|
1841
1918
|
2015-03-18 Michael Granger <ged@FaerieMUD.org>
|
1842
1919
|
|
1843
|
-
|
1844
|
-
|
1845
|
-
|
1846
|
-
|
1847
|
-
|
1848
|
-
|
1849
|
-
|
1850
|
-
|
1851
|
-
|
1852
|
-
|
1853
|
-
|
1854
|
-
|
1855
|
-
|
1920
|
+
o * .document, .hgignore, .pryrc, .rvm.gems, .rvmrc, .simplecov,
|
1921
|
+
ChangeLog, Gemfile, History.md, LICENSE, Manifest.txt, Observers.md,
|
1922
|
+
README.md, Rakefile, alerts/host_down.rb, arborist.gemspec,
|
1923
|
+
lib/arborist.rb, lib/arborist/collector.rb, lib/arborist/event.rb,
|
1924
|
+
lib/arborist/mixins.rb, lib/arborist/node.rb,
|
1925
|
+
lib/arborist/node/host.rb, lib/arborist/node/root.rb,
|
1926
|
+
lib/arborist/node/service.rb, monitoring_featureset.txt,
|
1927
|
+
monitors/pings.rb, monitors/system_resources.rb,
|
1928
|
+
monitors/web_services.rb, spec/arborist/collector_spec.rb,
|
1929
|
+
spec/arborist/mixins_spec.rb, spec/arborist_spec.rb,
|
1930
|
+
spec/spec_helper.rb, tree/duir.rb, tree/sidonie.rb, tree/yevaud.rb:
|
1931
|
+
Spikes and notes
|
1932
|
+
[0999d72c1a9f]
|