sys_watchdog 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -4
  3. data/TODO +22 -0
  4. data/sys_watchdog.gemspec +2 -2
  5. metadata +5 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b5d8ce60452d7cb903a2697529859053766ef00
4
- data.tar.gz: 5d15318e73ca47fd19b474cf16f05c3b1f907f03
3
+ metadata.gz: 04eeea3b3857c10cbe7f526cef19f61e70a3f1a9
4
+ data.tar.gz: aeb32bccdcc12023c32d115fb65cc649ba4cd786
5
5
  SHA512:
6
- metadata.gz: 659d67ced91f0baa02dd6fec9eb55d4230d4e5ec1ccbec723436f015a68d6d57c53c42850db0b81a3a626678cdbf30657b69b8301eeb55c7aa6e7d3b9726f6c4
7
- data.tar.gz: dfa89933f40756dc2f58f612e59a29092453e69e86eba8534bb182bae3ea5cacccae000a49e8a72b7857afc89781716440fa7b84722c4403b1c0edf6f63a4f4c
6
+ metadata.gz: 834c320ef7c32cf1a32f83e487f5449aabb69ef4f705df05c44a079318227e48e24502612921be67309237b68aeadf4b1ae8ea0b8bbc8765a7c99a043b2de6a8
7
+ data.tar.gz: 770c3478ef82ea91df5cc89bea77207983815dfd171736c8e49f83bcd3a85ac35be56543781b5c943b294f759fa1cc3977379d35104466ead38f4dc618ef57fa
data/README.md CHANGED
@@ -8,10 +8,7 @@ By [Bettercall.io](https://bettercall.io/).
8
8
 
9
9
  SysWatchdog keeps your *NIX servers green by performing periodic checks and optionally actions like service restarts and notifications.
10
10
 
11
- Take 20min to install and start to think what you\`ll make with your spare time from now on.
12
- [Malta Island](https://www.google.com/search?q=malta&source=lnms&tbm=isch&sa=X&ved=0ahUKEwi365vm8cjUAhWFuxQKHUNmDnkQ_AUICygC&biw=1440&bih=799)?
13
- [Rio de Janeiro](https://www.google.com/search?q=rio+de+janeiro&source=lnms&tbm=isch&sa=X&ved=0ahUKEwi10v2Z8sjUAhXCcRQKHYvFBpMQ_AUIDCgD&biw=1440&bih=799)?
14
- It\`s up to you ;)
11
+ Take 20min to install and start to think what you\`ll make with your spare time ;)
15
12
 
16
13
  ## Install
17
14
 
data/TODO ADDED
@@ -0,0 +1,22 @@
1
+ Create more default tests like test_url:
2
+ dns query
3
+ check all disks usage by config.check_disk_usage = true, or for custom list
4
+ check all mounts by config.check_mounts = true, or for custom list
5
+ open ports, local or remote
6
+ monitor number output and alerts or takes action when new output is too far from average (create test config option for timeframe of average calculation, with default of 24h)
7
+ ping
8
+ check blacklists for domain or IP
9
+ check open relay
10
+ config.check_mem = true, to check memory and swap
11
+ config.check_load = true, for load average
12
+
13
+ Add option when using test_url:
14
+ method: get or head
15
+
16
+ Multithread for parallel checks
17
+
18
+ flexibilize period, currently hardcoded to 60s
19
+
20
+ Lockfile for process
21
+
22
+ lock for sys tests
data/sys_watchdog.gemspec CHANGED
@@ -1,11 +1,11 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "sys_watchdog"
3
- s.version = "0.1.2"
3
+ s.version = "0.1.3"
4
4
  s.authors = ["Tom Lobato"]
5
5
  s.email = "lobato@bettercall.io"
6
6
  s.homepage = "http://sys-watchdog.bettercall.io/"
7
7
  s.summary = "SysWatchdog keeps your *NIX servers green by performing periodic checks and optionally actions like service restarts and notifications."
8
- s.description = "SysWatchdog keeps your *NIX servers green by performing periodic checks and optionally actions like service restarts and notifications. Code: https://github.com/tomlobato/sys_watchdog Website: http://sys-watchdog.bettercall.io."
8
+ s.description = "#{s.summary} https://github.com/tomlobato/sys_watchdog http://sys-watchdog.bettercall.io."
9
9
  s.licenses = ["MIT"]
10
10
  s.platform = Gem::Platform::RUBY
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sys_watchdog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Lobato
@@ -38,9 +38,9 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 0.8.1
41
- description: 'SysWatchdog keeps your *NIX servers green by performing periodic checks
42
- and optionally actions like service restarts and notifications. Code: https://github.com/tomlobato/sys_watchdog
43
- Website: http://sys-watchdog.bettercall.io.'
41
+ description: SysWatchdog keeps your *NIX servers green by performing periodic checks
42
+ and optionally actions like service restarts and notifications. https://github.com/tomlobato/sys_watchdog
43
+ http://sys-watchdog.bettercall.io.
44
44
  email: lobato@bettercall.io
45
45
  executables:
46
46
  - sys_watchdog
@@ -51,6 +51,7 @@ files:
51
51
  - CNAME
52
52
  - README.md
53
53
  - Rakefile
54
+ - TODO
54
55
  - _config.yml
55
56
  - bin/sys_watchdog
56
57
  - gempush