pandur 0.0.1 → 0.0.2
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
- data/README.md +20 -2
- data/lib/pandur/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca8d47d8c11fea6d504716fdc5d04f851d0109ea
|
|
4
|
+
data.tar.gz: eee2895128ddaeaf0855a1885941eb5e8a90ed31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75438874c728f8dd2274835615e0fa1948a03144c59c8a56e257e4f4fce56042f89ef81944fc2f69cafde57a1a2536746d78578e3b14b76a9d07e50c57f018c1
|
|
7
|
+
data.tar.gz: c8ecaefccc637db7b2afa5226b2a13c6aa2e28e0bc1d59b6ef16dd1b7e5892155b53855b4b67052600607c4965438cbb7e10021bd9baf75c83f545a71acf600f
|
data/README.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
pandur - AdHoc Monitoring
|
|
2
2
|
=========================
|
|
3
3
|
|
|
4
|
-
This gem is yet
|
|
4
|
+
This gem is yet beta, so please help me find bugs, and send me
|
|
5
|
+
enhancement-ideas at https://github.com/rynr/pandur/issues
|
|
6
|
+
You see the tasks for leaving beta at
|
|
7
|
+
https://github.com/rynr/pandur/issues?milestone=1&state=open
|
|
5
8
|
|
|
6
9
|
Usage
|
|
7
10
|
-----
|
|
@@ -18,7 +21,7 @@ Configuration
|
|
|
18
21
|
-------------
|
|
19
22
|
|
|
20
23
|
You need to create a configuration (`~/.pandur.yaml` by default) of all hosts
|
|
21
|
-
to connect to, and wich processes are meant to monitor.
|
|
24
|
+
to connect to, and wich processes are meant to monitor.
|
|
22
25
|
Here's a simple example:
|
|
23
26
|
|
|
24
27
|
---
|
|
@@ -31,3 +34,18 @@ Here's a simple example:
|
|
|
31
34
|
- name: Memcached
|
|
32
35
|
pid_file: /var/run/memcached.pid
|
|
33
36
|
|
|
37
|
+
Running `pandur` will loop through all hosts and check all pid-files, if the
|
|
38
|
+
process is running.
|
|
39
|
+
A possible result can look like this:
|
|
40
|
+
|
|
41
|
+
rjung:~$ pandur
|
|
42
|
+
Elastic Search: OK
|
|
43
|
+
Memcached: OK
|
|
44
|
+
rjung:~$
|
|
45
|
+
|
|
46
|
+
Links
|
|
47
|
+
-----
|
|
48
|
+
|
|
49
|
+
- Homepage: http://rynr.github.io/pandur/
|
|
50
|
+
- Sourcecode: https://github.com/rynr/pandur
|
|
51
|
+
- Issues / Feature-Requests: https://github.com/rynr/pandur/issues
|
data/lib/pandur/version.rb
CHANGED