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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -2
  3. data/lib/pandur/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 614232ea0b450bf6210f2f05435d76d9ce170cdf
4
- data.tar.gz: 662cd1e5d5060a9b49fb4ebba82c32d87fe2d37d
3
+ metadata.gz: ca8d47d8c11fea6d504716fdc5d04f851d0109ea
4
+ data.tar.gz: eee2895128ddaeaf0855a1885941eb5e8a90ed31
5
5
  SHA512:
6
- metadata.gz: 07cf4fb25e3c2d67ac4bfbcd64c869858e9e896b412def997996ec2af2f11f77b86aa56db33c6fac98dfbf40fbc9afac756f56738dd8c558541ba992b8afaa53
7
- data.tar.gz: f7e967d63c53d551421cd24152e74b225db7d5cd30e52084d527a399bf505491239e60c370ac384db1dba7096b8da348172052ab3526f7e3c3684b7384871be4
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 alpha, so please don't expect to much.
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
@@ -1,3 +1,3 @@
1
1
  class Pandur
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pandur
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rainer Jung <Rainer.Jung@gmail.com>