scout 5.9.2 → 5.9.3
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.
- data/CHANGELOG.markdown +4 -0
- data/lib/scout/command/run.rb +1 -1
- data/lib/scout/command/troubleshoot.rb +1 -0
- data/lib/scout/version.rb +1 -1
- data/scout.gemspec +1 -1
- metadata +27 -17
- checksums.yaml +0 -7
data/CHANGELOG.markdown
CHANGED
data/lib/scout/command/run.rb
CHANGED
@@ -7,7 +7,7 @@ module Scout
|
|
7
7
|
key = @args.first
|
8
8
|
# TODO: this is an awkward way to force creation of the config directory. Could use a little refactoring.
|
9
9
|
configuration_directory = config_dir
|
10
|
-
log.debug("Running Scout [#{Scout::VERSION}] on #{@hostname}") if log
|
10
|
+
log.debug("Running Scout [#{Scout::VERSION}] with server_metrics [#{ServerMetrics::VERSION}] on #{@hostname}") if log
|
11
11
|
log.debug("Configuration directory is #{configuration_directory} ") if log
|
12
12
|
# TODO: too much external logic of command doing things TO server. This should be moved into the server class.
|
13
13
|
@scout = Scout::Server.new(server, key, history, log, server_name, @http_proxy, @https_proxy, @roles, @hostname, @environment)
|
@@ -29,6 +29,7 @@ module Scout
|
|
29
29
|
bullet "Hostname", @hostname
|
30
30
|
bullet "History file", history
|
31
31
|
bullet "Version", Scout::VERSION
|
32
|
+
bullet "server_metrics", ServerMetrics::VERSION
|
32
33
|
|
33
34
|
heading "Latest Log"
|
34
35
|
contents=File.read(log_path) rescue "Log not found at #{log_path}"
|
data/lib/scout/version.rb
CHANGED
data/scout.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.9.
|
4
|
+
version: 5.9.3
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Andre Lewis
|
@@ -10,38 +11,44 @@ authors:
|
|
10
11
|
autorequire:
|
11
12
|
bindir: bin
|
12
13
|
cert_chain: []
|
13
|
-
date: 2014-
|
14
|
+
date: 2014-05-08 00:00:00.000000000 Z
|
14
15
|
dependencies:
|
15
16
|
- !ruby/object:Gem::Dependency
|
16
17
|
name: elif
|
17
18
|
requirement: !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
18
20
|
requirements:
|
19
|
-
- - '>='
|
21
|
+
- - ! '>='
|
20
22
|
- !ruby/object:Gem::Version
|
21
23
|
version: '0'
|
22
24
|
type: :runtime
|
23
25
|
prerelease: false
|
24
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
25
28
|
requirements:
|
26
|
-
- - '>='
|
29
|
+
- - ! '>='
|
27
30
|
- !ruby/object:Gem::Version
|
28
31
|
version: '0'
|
29
32
|
- !ruby/object:Gem::Dependency
|
30
33
|
name: server_metrics
|
31
34
|
requirement: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
32
36
|
requirements:
|
33
|
-
- - '>='
|
37
|
+
- - ! '>='
|
34
38
|
- !ruby/object:Gem::Version
|
35
|
-
version: 1.2.
|
39
|
+
version: 1.2.5
|
36
40
|
type: :runtime
|
37
41
|
prerelease: false
|
38
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
39
44
|
requirements:
|
40
|
-
- - '>='
|
45
|
+
- - ! '>='
|
41
46
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.2.
|
43
|
-
description:
|
44
|
-
|
47
|
+
version: 1.2.5
|
48
|
+
description: ! 'The scout gem reports metrics to scoutapp.com, an easy-to-use hosted
|
49
|
+
server monitoring service.
|
50
|
+
|
51
|
+
'
|
45
52
|
email: support@scoutapp.com
|
46
53
|
executables:
|
47
54
|
- scout
|
@@ -313,28 +320,31 @@ files:
|
|
313
320
|
- vendor/util/lib/core_extensions.rb
|
314
321
|
homepage: http://scoutapp.com
|
315
322
|
licenses: []
|
316
|
-
metadata: {}
|
317
323
|
post_install_message:
|
318
324
|
rdoc_options: []
|
319
325
|
require_paths:
|
320
326
|
- lib
|
321
327
|
required_ruby_version: !ruby/object:Gem::Requirement
|
328
|
+
none: false
|
322
329
|
requirements:
|
323
|
-
- - '>='
|
330
|
+
- - ! '>='
|
324
331
|
- !ruby/object:Gem::Version
|
325
332
|
version: '0'
|
326
333
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
334
|
+
none: false
|
327
335
|
requirements:
|
328
|
-
- - '>='
|
336
|
+
- - ! '>='
|
329
337
|
- !ruby/object:Gem::Version
|
330
338
|
version: '0'
|
331
339
|
requirements: []
|
332
340
|
rubyforge_project: scout
|
333
|
-
rubygems_version:
|
341
|
+
rubygems_version: 1.8.24
|
334
342
|
signing_key:
|
335
|
-
specification_version:
|
343
|
+
specification_version: 3
|
336
344
|
summary: Scout is an easy-to-use hosted server monitoring service. The scout Ruby
|
337
345
|
gem reports metrics to our service. The agent runs plugins, configured via the Scout
|
338
346
|
web interface, to monitor a server.
|
339
|
-
test_files:
|
340
|
-
|
347
|
+
test_files:
|
348
|
+
- test/plugins/disk_usage.rb
|
349
|
+
- test/scout_test.rb
|
350
|
+
- test/streamer_test.rb
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: b6720672ffc1400326bd6c590dab107411b148f1
|
4
|
-
data.tar.gz: 6560311461c79d6d42fa7f0575b6d5017def67f2
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: b2faacedfe5669d356e5260488c53eaf2c94d43b49cc3fd98d9802ed310953700e5b2a7c3a12a2eb571121b98c85d02edbaae38dee1f1396984dc35ce22a0fb2
|
7
|
-
data.tar.gz: 92aee83bb428a5ebe18f2401062c11216b3e84936b81b39349a7dcd9c23856b5aa2096fa521427dad2fe33afe2ac825bf14bb104fe301443b88eefe86d3ba70d
|