newrelic_rpm 2.9.4 → 2.9.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of newrelic_rpm might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ v2.9.5
2
+ * Fix memory sampling on Snow Leopard (No more ps rsz option)
3
+
1
4
  v2.9.4
2
5
  * Clamp size of data sent to server
3
6
  * Reset statistics for passenger when forking to avoid erroneous data
@@ -17,8 +17,10 @@ module NewRelic::Agent::Samplers
17
17
  else
18
18
  NewRelic::Agent.instance.log.info "Using /proc/$$/status for reading process memory."
19
19
  end
20
- elsif platform =~ /darwin/
20
+ elsif platform =~ /darwin9/ # 10.5
21
21
  @sampler = ShellPS.new("ps -o rsz")
22
+ elsif platform =~ /darwin10/ # 10.6
23
+ @sampler = ShellPS.new("ps -o rss")
22
24
  elsif platform =~ /freebsd/
23
25
  @sampler = ShellPS.new("ps -o rss")
24
26
  elsif platform =~ /solaris/
@@ -3,7 +3,7 @@ module NewRelic
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 2
5
5
  MINOR = 9
6
- TINY = 4
6
+ TINY = 5
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
9
9
 
data/newrelic_rpm.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{newrelic_rpm}
5
- s.version = "2.9.4"
5
+ s.version = "2.9.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Bill Kayser"]
9
- s.date = %q{2009-07-22}
9
+ s.date = %q{2009-09-18}
10
10
  s.description = %q{New Relic Ruby Performance Monitoring Agent}
11
11
  s.email = %q{bkayser@newrelic.com}
12
12
  s.executables = ["mongrel_rpm", "newrelic_cmd"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_rpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.4
4
+ version: 2.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bill Kayser
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-22 00:00:00 -07:00
12
+ date: 2009-09-18 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency