watchmonkey_cli 1.12.0 → 1.12.1
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/Gemfile +10 -1
- data/VERSION +1 -1
- data/checksums/watchmonkey_cli-1.12.1.gem.sha512 +1 -0
- data/lib/watchmonkey_cli/application/core.rb +1 -1
- data/lib/watchmonkey_cli/application.rb +4 -0
- data/lib/watchmonkey_cli/version.rb +1 -1
- data/watchmonkey_cli.gemspec +1 -4
- metadata +5 -49
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9c990a60379408431ec45840429e9ea183cf6723569c6f457384c6564a95e559
|
|
4
|
+
data.tar.gz: b788e5f5e2da8999ca9bf7c66b68bf9f86d3efe496da09d2c08a6121b6b49de6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b135b4d3f834975825617a61333a8aef949f730ecfa06b605ccca2830799fd5943559e4e4db65730d108929e966ed0cc9fa5162ffffb95461e081260ccb50b82
|
|
7
|
+
data.tar.gz: 43b5b2cdcd087eb4cf6e06352ed124423136e1b818b7543e1a953ad6b92d3a653744da80ca5d9e2e0fcd32ea2e0a462cf487c5c81ac7569dda84d91b08bd8f78
|
data/Gemfile
CHANGED
|
@@ -3,5 +3,14 @@ source 'https://rubygems.org'
|
|
|
3
3
|
# Specify your gem's dependencies in dle.gemspec
|
|
4
4
|
gemspec
|
|
5
5
|
|
|
6
|
+
gem "pry"
|
|
7
|
+
gem "bundler"
|
|
8
|
+
gem "rake"
|
|
9
|
+
|
|
10
|
+
# net-ssh co-deps
|
|
11
|
+
gem "ed25519"
|
|
12
|
+
gem "bcrypt_pbkdf"
|
|
13
|
+
|
|
6
14
|
# optional dependencies
|
|
7
|
-
gem
|
|
15
|
+
gem "telegram-bot-ruby"
|
|
16
|
+
gem "net-ftp"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.12.
|
|
1
|
+
1.12.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4be25f6a1529ae4b0015f42448afe751eaf3f8c10a7402d93c84a454b4496c7768b70267d014352a94b08e9d38de75d31bd758e9c8e811b07730900a4b31b175
|
|
@@ -69,6 +69,10 @@ module WatchmonkeyCli
|
|
|
69
69
|
stdout: STDOUT, # (internal) STDOUT redirect
|
|
70
70
|
tag_only: [], # -o flag
|
|
71
71
|
tag_except: [], # -e flag
|
|
72
|
+
filtered_threads: [ # (internal) stray-thread-detection exclusion list
|
|
73
|
+
"gems/concurrent-ruby",
|
|
74
|
+
"gems/timeout",
|
|
75
|
+
],
|
|
72
76
|
}
|
|
73
77
|
init_params
|
|
74
78
|
yield(self)
|
data/watchmonkey_cli.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = WatchmonkeyCli::VERSION
|
|
9
9
|
spec.authors = ["Sven Pachnit"]
|
|
10
10
|
spec.email = ["sven@bmonkeys.net"]
|
|
11
|
-
spec.summary = %q{Watchmonkey CLI - dead simple agentless monitoring via SSH, HTTP, FTP, etc
|
|
11
|
+
spec.summary = %q{Watchmonkey CLI - dead simple agentless monitoring via SSH, HTTP, FTP, etc}
|
|
12
12
|
spec.description = %q{If you want an easy way to monitor services without the need of installing agents let a monkey do the job by polling status information via transport protocols.}
|
|
13
13
|
spec.homepage = "https://github.com/2called-chaos/watchmonkey_cli"
|
|
14
14
|
spec.license = "MIT"
|
|
@@ -21,7 +21,4 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_dependency "activesupport"
|
|
22
22
|
spec.add_dependency "httparty"
|
|
23
23
|
spec.add_dependency "net-ssh"
|
|
24
|
-
spec.add_development_dependency "pry"
|
|
25
|
-
spec.add_development_dependency "bundler"
|
|
26
|
-
spec.add_development_dependency "rake"
|
|
27
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: watchmonkey_cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.12.
|
|
4
|
+
version: 1.12.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sven Pachnit
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: activesupport
|
|
@@ -52,48 +51,6 @@ dependencies:
|
|
|
52
51
|
- - ">="
|
|
53
52
|
- !ruby/object:Gem::Version
|
|
54
53
|
version: '0'
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: pry
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - ">="
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '0'
|
|
62
|
-
type: :development
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - ">="
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '0'
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: bundler
|
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
|
72
|
-
requirements:
|
|
73
|
-
- - ">="
|
|
74
|
-
- !ruby/object:Gem::Version
|
|
75
|
-
version: '0'
|
|
76
|
-
type: :development
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - ">="
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: '0'
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: rake
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - ">="
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0'
|
|
90
|
-
type: :development
|
|
91
|
-
prerelease: false
|
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
-
requirements:
|
|
94
|
-
- - ">="
|
|
95
|
-
- !ruby/object:Gem::Version
|
|
96
|
-
version: '0'
|
|
97
54
|
description: If you want an easy way to monitor services without the need of installing
|
|
98
55
|
agents let a monkey do the job by polling status information via transport protocols.
|
|
99
56
|
email:
|
|
@@ -112,6 +69,7 @@ files:
|
|
|
112
69
|
- VERSION
|
|
113
70
|
- bin/watchmonkey
|
|
114
71
|
- bin/watchmonkey.sh
|
|
72
|
+
- checksums/watchmonkey_cli-1.12.1.gem.sha512
|
|
115
73
|
- doc/checker_example.rb
|
|
116
74
|
- doc/config_example.rb
|
|
117
75
|
- lib/watchmonkey_cli.rb
|
|
@@ -150,7 +108,6 @@ homepage: https://github.com/2called-chaos/watchmonkey_cli
|
|
|
150
108
|
licenses:
|
|
151
109
|
- MIT
|
|
152
110
|
metadata: {}
|
|
153
|
-
post_install_message:
|
|
154
111
|
rdoc_options: []
|
|
155
112
|
require_paths:
|
|
156
113
|
- lib
|
|
@@ -165,8 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
165
122
|
- !ruby/object:Gem::Version
|
|
166
123
|
version: '0'
|
|
167
124
|
requirements: []
|
|
168
|
-
rubygems_version:
|
|
169
|
-
signing_key:
|
|
125
|
+
rubygems_version: 4.0.5
|
|
170
126
|
specification_version: 4
|
|
171
|
-
summary: Watchmonkey CLI - dead simple agentless monitoring via SSH, HTTP, FTP, etc
|
|
127
|
+
summary: Watchmonkey CLI - dead simple agentless monitoring via SSH, HTTP, FTP, etc
|
|
172
128
|
test_files: []
|