scout 5.1.0 → 5.1.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.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/lib/scout.rb +1 -1
  3. data/lib/scout/plugin.rb +1 -1
  4. metadata +18 -9
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 5.1.1
2
+
3
+ * Fixed Counter functionality for per-minute metrics
4
+
1
5
  == 5.1.0
2
6
 
3
7
  * Agent now reports data on initial install
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby -wKU
2
2
 
3
3
  module Scout
4
- VERSION = "5.1.0".freeze
4
+ VERSION = "5.1.1".freeze
5
5
  end
6
6
 
7
7
  require "scout/command"
@@ -182,7 +182,7 @@ module Scout
182
182
  when :second, 'second'
183
183
  result = result / elapsed_seconds.to_f
184
184
  when :minute, 'minute'
185
- result = result / elapsed_seconds.to_f / 60.0
185
+ result = result / elapsed_seconds.to_f * 60.0
186
186
  else
187
187
  raise "Unknown option for ':per': #{options[:per].inspect}"
188
188
  end
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ prerelease: false
5
+ segments:
6
+ - 5
7
+ - 1
8
+ - 1
9
+ version: 5.1.1
5
10
  platform: ruby
6
11
  authors:
7
12
  - Highgroove Studios
@@ -9,19 +14,21 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-02-23 00:00:00 -08:00
17
+ date: 2010-04-02 00:00:00 -07:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: elif
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
25
  - - ">="
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
23
29
  version: "0"
24
- version:
30
+ type: :runtime
31
+ version_requirements: *id001
25
32
  description: |
26
33
  Scout makes monitoring and reporting on your web applications as flexible and simple as possible.
27
34
 
@@ -190,18 +197,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
190
197
  requirements:
191
198
  - - ">="
192
199
  - !ruby/object:Gem::Version
200
+ segments:
201
+ - 0
193
202
  version: "0"
194
- version:
195
203
  required_rubygems_version: !ruby/object:Gem::Requirement
196
204
  requirements:
197
205
  - - ">="
198
206
  - !ruby/object:Gem::Version
207
+ segments:
208
+ - 0
199
209
  version: "0"
200
- version:
201
210
  requirements: []
202
211
 
203
212
  rubyforge_project: scout
204
- rubygems_version: 1.3.5
213
+ rubygems_version: 1.3.6
205
214
  signing_key:
206
215
  specification_version: 3
207
216
  summary: Scout makes monitoring and reporting on your web applications as flexible and simple as possible.