scout 5.9.10.pre → 5.9.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.markdown +0 -4
- data/Gemfile +0 -1
- data/LICENSE +0 -1
- data/README.markdown +7 -8
- data/data/cacert.pem +1544 -2284
- data/lib/scout/command.rb +6 -6
- data/lib/scout/command/install.rb +2 -2
- data/lib/scout/command/sign.rb +1 -1
- data/lib/scout/version.rb +1 -1
- data/scout.gemspec +4 -4
- metadata +17 -26
data/lib/scout/command.rb
CHANGED
@@ -40,7 +40,7 @@ module Scout
|
|
40
40
|
opts.separator " #{program_name} [OPTIONS] install"
|
41
41
|
opts.separator " Troubleshoot:"
|
42
42
|
opts.separator " #{program_name} [OPTIONS] troubleshoot"
|
43
|
-
opts.separator " ... print troubleshooting info, or post it back to
|
43
|
+
opts.separator " ... print troubleshooting info, or post it back to server.pingdom.com."
|
44
44
|
opts.separator " Local plugin testing:"
|
45
45
|
opts.separator " #{program_name} [OPTIONS] test " +
|
46
46
|
"PATH_TO_PLUGIN [PLUGIN_OPTIONS]"
|
@@ -55,7 +55,7 @@ module Scout
|
|
55
55
|
opts.separator "Specific Options:"
|
56
56
|
opts.separator "--------------------------------------------------------------------------"
|
57
57
|
opts.on( "-r", "--roles role1,role2", String,
|
58
|
-
"Roles for this server. Roles are defined through
|
58
|
+
"Roles for this server. Roles are defined through server.pingdom.com's web UI" ) do |roles|
|
59
59
|
options[:roles] = roles
|
60
60
|
end
|
61
61
|
|
@@ -93,7 +93,7 @@ module Scout
|
|
93
93
|
options[:hostname] = hostname
|
94
94
|
end
|
95
95
|
|
96
|
-
opts.on( "-e", "--environment ENVIRONMENT", String, "Environment for this server. Environments are defined through
|
96
|
+
opts.on( "-e", "--environment ENVIRONMENT", String, "Environment for this server. Environments are defined through server.pingdom.com's web UI" ) do |environment|
|
97
97
|
options[:environment] = environment
|
98
98
|
end
|
99
99
|
|
@@ -123,7 +123,7 @@ module Scout
|
|
123
123
|
opts.separator " "
|
124
124
|
opts.separator "Troubleshooting Options:"
|
125
125
|
opts.separator "--------------------------------------------------------------------------"
|
126
|
-
opts.on( "--post", "For use with 'troubleshoot' - post the troubleshooting results back to
|
126
|
+
opts.on( "--post", "For use with 'troubleshoot' - post the troubleshooting results back to server.pingdom.com") do
|
127
127
|
options[:troubleshoot_post] = true
|
128
128
|
end
|
129
129
|
opts.on( "--no-history", "For use with 'troubleshoot' - don't include the history file contents.") do
|
@@ -171,7 +171,7 @@ module Scout
|
|
171
171
|
|
172
172
|
def initialize(options, args)
|
173
173
|
@roles = options[:roles]
|
174
|
-
@server = options[:server] || "https://
|
174
|
+
@server = options[:server] || "https://server.pingdom.com/"
|
175
175
|
@history = options[:history] ||
|
176
176
|
File.join( File.join( (File.expand_path("~") rescue "/"),
|
177
177
|
".scout" ),
|
@@ -279,7 +279,7 @@ module Scout
|
|
279
279
|
if pid == "unknown"
|
280
280
|
log.warn "Could not create or read PID file. " +
|
281
281
|
"You may need to specify the path to the config directory. " +
|
282
|
-
"See: http://
|
282
|
+
"See: http://server.pingdom.com/help#data_file" if log
|
283
283
|
else
|
284
284
|
log.warn "Process #{pid} was already running" if log
|
285
285
|
end
|
@@ -33,7 +33,7 @@ module Scout
|
|
33
33
|
|
34
34
|
For help setting up Scout with crontab, please visit:
|
35
35
|
|
36
|
-
http://
|
36
|
+
http://server.pingdom.com/help#cron
|
37
37
|
|
38
38
|
END_SUCCESS
|
39
39
|
rescue SystemExit
|
@@ -43,7 +43,7 @@ module Scout
|
|
43
43
|
Failed.
|
44
44
|
For more help, please visit:
|
45
45
|
|
46
|
-
http://
|
46
|
+
http://server.pingdom.com/help
|
47
47
|
|
48
48
|
END_ERROR
|
49
49
|
end
|
data/lib/scout/command/sign.rb
CHANGED
data/lib/scout/version.rb
CHANGED
data/scout.gemspec
CHANGED
@@ -5,13 +5,13 @@ require "scout/version"
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = "scout"
|
7
7
|
s.version = Scout::VERSION
|
8
|
-
s.authors = ["Andre Lewis", "Derek Haynes"
|
9
|
-
s.email = "support@
|
8
|
+
s.authors = ["Andre Lewis", "Derek Haynes"]
|
9
|
+
s.email = "support.server@pingdom.com"
|
10
10
|
s.rubyforge_project = "scout"
|
11
|
-
s.homepage = "http://
|
11
|
+
s.homepage = "http://server.pingdom.com"
|
12
12
|
s.summary = "Scout is an easy-to-use hosted server monitoring service. The scout Ruby gem reports metrics to our service. The agent runs plugins, configured via the Scout web interface, to monitor a server."
|
13
13
|
s.description = <<END_DESC
|
14
|
-
The scout gem reports metrics to
|
14
|
+
The scout gem reports metrics to server.pingdom.com, an easy-to-use hosted server monitoring service.
|
15
15
|
END_DESC
|
16
16
|
|
17
17
|
s.rubyforge_project = "scout"
|
metadata
CHANGED
@@ -1,61 +1,53 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.9.
|
5
|
-
prerelease: 7
|
4
|
+
version: 5.9.11
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Andre Lewis
|
9
8
|
- Derek Haynes
|
10
|
-
- James Edward Gray II
|
11
9
|
autorequire:
|
12
10
|
bindir: bin
|
13
11
|
cert_chain: []
|
14
|
-
date:
|
12
|
+
date: 2017-05-30 00:00:00.000000000 Z
|
15
13
|
dependencies:
|
16
14
|
- !ruby/object:Gem::Dependency
|
17
15
|
name: elif
|
18
16
|
requirement: !ruby/object:Gem::Requirement
|
19
|
-
none: false
|
20
17
|
requirements:
|
21
|
-
- -
|
18
|
+
- - ">="
|
22
19
|
- !ruby/object:Gem::Version
|
23
20
|
version: '0'
|
24
21
|
type: :runtime
|
25
22
|
prerelease: false
|
26
23
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
-
none: false
|
28
24
|
requirements:
|
29
|
-
- -
|
25
|
+
- - ">="
|
30
26
|
- !ruby/object:Gem::Version
|
31
27
|
version: '0'
|
32
28
|
- !ruby/object:Gem::Dependency
|
33
29
|
name: server_metrics
|
34
30
|
requirement: !ruby/object:Gem::Requirement
|
35
|
-
none: false
|
36
31
|
requirements:
|
37
|
-
- -
|
32
|
+
- - ">="
|
38
33
|
- !ruby/object:Gem::Version
|
39
34
|
version: 1.2.5
|
40
35
|
type: :runtime
|
41
36
|
prerelease: false
|
42
37
|
version_requirements: !ruby/object:Gem::Requirement
|
43
|
-
none: false
|
44
38
|
requirements:
|
45
|
-
- -
|
39
|
+
- - ">="
|
46
40
|
- !ruby/object:Gem::Version
|
47
41
|
version: 1.2.5
|
48
|
-
description:
|
49
|
-
server monitoring service.
|
50
|
-
|
51
|
-
'
|
52
|
-
email: support@scoutapp.com
|
42
|
+
description: |
|
43
|
+
The scout gem reports metrics to server.pingdom.com, an easy-to-use hosted server monitoring service.
|
44
|
+
email: support.server@pingdom.com
|
53
45
|
executables:
|
54
46
|
- scout
|
55
47
|
extensions: []
|
56
48
|
extra_rdoc_files: []
|
57
49
|
files:
|
58
|
-
- .gitignore
|
50
|
+
- ".gitignore"
|
59
51
|
- CHANGELOG.markdown
|
60
52
|
- Gemfile
|
61
53
|
- LICENSE
|
@@ -319,29 +311,28 @@ files:
|
|
319
311
|
- vendor/signature/spec/signature_spec.rb
|
320
312
|
- vendor/signature/spec/spec_helper.rb
|
321
313
|
- vendor/util/lib/core_extensions.rb
|
322
|
-
homepage: http://
|
314
|
+
homepage: http://server.pingdom.com
|
323
315
|
licenses: []
|
316
|
+
metadata: {}
|
324
317
|
post_install_message:
|
325
318
|
rdoc_options: []
|
326
319
|
require_paths:
|
327
320
|
- lib
|
328
321
|
required_ruby_version: !ruby/object:Gem::Requirement
|
329
|
-
none: false
|
330
322
|
requirements:
|
331
|
-
- -
|
323
|
+
- - ">="
|
332
324
|
- !ruby/object:Gem::Version
|
333
325
|
version: '0'
|
334
326
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
335
|
-
none: false
|
336
327
|
requirements:
|
337
|
-
- -
|
328
|
+
- - ">="
|
338
329
|
- !ruby/object:Gem::Version
|
339
|
-
version:
|
330
|
+
version: '0'
|
340
331
|
requirements: []
|
341
332
|
rubyforge_project: scout
|
342
|
-
rubygems_version:
|
333
|
+
rubygems_version: 2.2.2
|
343
334
|
signing_key:
|
344
|
-
specification_version:
|
335
|
+
specification_version: 4
|
345
336
|
summary: Scout is an easy-to-use hosted server monitoring service. The scout Ruby
|
346
337
|
gem reports metrics to our service. The agent runs plugins, configured via the Scout
|
347
338
|
web interface, to monitor a server.
|