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.
@@ -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 scoutapp.com."
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 scoutapp.com's web UI" ) do |roles|
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 scoutapp.com's web UI" ) do |environment|
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 scoutapp.com") do
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://scoutapp.com/"
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://scoutapp.com/help#data_file" if log
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://scoutapp.com/help#cron
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://scoutapp.com/help
46
+ http://server.pingdom.com/help
47
47
 
48
48
  END_ERROR
49
49
  end
@@ -5,7 +5,7 @@ require "openssl"
5
5
  module Scout
6
6
  class Command
7
7
  class Sign < Command
8
- HELP_URL = "https://scoutapp.com/info/creating_a_plugin#private_plugins"
8
+ HELP_URL = "https://server-monitor.readme.io/docs/custom-plugins"
9
9
 
10
10
  def run
11
11
  url = @args.first
@@ -1,3 +1,3 @@
1
1
  module Scout
2
- VERSION = "5.9.10.pre"
2
+ VERSION = "5.9.11"
3
3
  end
@@ -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", "James Edward Gray II"]
9
- s.email = "support@scoutapp.com"
8
+ s.authors = ["Andre Lewis", "Derek Haynes"]
9
+ s.email = "support.server@pingdom.com"
10
10
  s.rubyforge_project = "scout"
11
- s.homepage = "http://scoutapp.com"
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 scoutapp.com, an easy-to-use hosted server monitoring service.
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.10.pre
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: 2015-01-21 00:00:00.000000000 Z
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: ! 'The scout gem reports metrics to scoutapp.com, an easy-to-use hosted
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://scoutapp.com
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: 1.3.1
330
+ version: '0'
340
331
  requirements: []
341
332
  rubyforge_project: scout
342
- rubygems_version: 1.8.24
333
+ rubygems_version: 2.2.2
343
334
  signing_key:
344
- specification_version: 3
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.