Skip to content

Commit

Permalink
v0.5.6 - service_doc_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Wilhelm committed Jan 27, 2014
2 parents 9c8138f + d95a38c commit dba38a1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.5.6

* collectors/service - docs update

# 0.5.5

* collectors/memory - bugfix: cmd+interval strong typing
Expand Down
30 changes: 17 additions & 13 deletions collectors/service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,24 @@ service FMRI.

```json
{
interval: 60
flaptime: 30,
since: 900,
services: {
init: { foo : { status_cmd : "..."} }, # TODO
systemd: { # TODO
sshd : {...}
},
daemontools: {
"-monitor" : ["/service/*"], # probably all you need
"-options" : { "svstat" : ["..."] },
"interval": 60,
"flaptime": 30,
"since": 900,
"faults" : false,
"services": {
"daemontools": {
"-monitor" : ["/service/*"], "#": "probably all you need",
"-options" : { "svstat" : [...] },
"chef-client" : { },
"syslog-ng" : {"path" : "/service/syslog-ng"}, # is the default
}
"syslog-ng" : {
"path" : "/service/syslog-ng", "#": "is the default" },
},
"smf": {
"-monitor" : ["*"], "#": "very noisy",
"-options" : {"svcs" : ["sudo", "svcs"]},
},
"init": { "foo" : { "status_cmd" : "..."} }, # TODO
"systemd": { "sshd" : {...} } # TODO
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion lib/panoptimon/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (C) 2012-2014 Cisco, Inc.

module Panoptimon
VERSION = "0.5.5"
VERSION = "0.5.6"
end

0 comments on commit dba38a1

Please sign in to comment.