tunemygc 1.0.57 → 1.0.58

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e95fa4caa87878bd91875eee79cbd9722fddfb61
4
- data.tar.gz: e0eeab54f46aac72d03d9b1ac9fc9bca0d246820
3
+ metadata.gz: 9293d59fa62e890c5d82db4cc029ada839d09375
4
+ data.tar.gz: ebd4978966df7b64a6de2c8fcf84ee0dbc1b4c71
5
5
  SHA512:
6
- metadata.gz: d4e24deeba0010babd67486b1662f7d6d2d78322e86360d49699d7a11479e21464da581b376d3dda4dcf62c4bc068ac34fa05365fffabaa085d04c8bab04d91f
7
- data.tar.gz: eeb79132bea640599c00ac60c7084614fadc4c35242175a4507fb5bd7f9b6a67cae811fde9a8efac089084cfe877e91462c1c041a16423dc613786ede540dd91
6
+ metadata.gz: 96e917596a9b87e6b63626ee3af76d0d91d48518f78539cf8630f4ec797f81ca051b634373f5765977f17f15a61be34bcb048228d277268b376374ab09475b4b
7
+ data.tar.gz: 32fa7fbc35cfc1ab35c3226b5eb10d9a84ecced8209825cb1fccd25429a9c104fcff2dae939d7ff6c2b72be30d4ecc88866ee86d1b6c6f13d774eb55fc5a8a6e
data/README.md CHANGED
@@ -58,9 +58,9 @@ RUBY_GC_TOKEN=08de9e8822c847244b31290cedfc1d51 RUBY_GC_TUNE=200 bundle exec rail
58
58
  And after some profiling requests, when the process terminates, you can visit the given report URL for a config recommendation and some further insights:
59
59
 
60
60
  ``` sh
61
- [TuneMyGC, pid: 70160] Syncing 688 snapshots
62
- [TuneMyGC, pid: 70160] ==== Recommended GC configs for ActionController
63
- [TuneMyGC, pid: 70160] Please visit https://tunemygc.com/configs/d739119e4abc38d42e183d1361991818 to view your configuration and other Garbage Collector insights
61
+ [tunemygc, pid: 70160] Syncing 688 snapshots
62
+ [tunemygc, pid: 70160] ==== Recommended GC configs for ActionController
63
+ [tunemygc, pid: 70160] Please visit https://tunemygc.com/configs/d739119e4abc38d42e183d1361991818 to view your configuration and other Garbage Collector insights
64
64
  ```
65
65
 
66
66
  The CLI interface supports retrieving configuration options for your application as well.
@@ -101,9 +101,9 @@ RUBY_GC_TOKEN=08de9e8822c847244b31290cedfc1d51 RUBY_GC_TUNE=200 bundle exec rail
101
101
  And after some profiling requests, when the process terminates, you can visit the given report URL for a config recommendation and some further insights:
102
102
 
103
103
  ``` sh
104
- [TuneMyGC, pid: 70160] Syncing 688 snapshots
105
- [TuneMyGC, pid: 70160] ==== Recommended GC configs for ActionController
106
- [TuneMyGC, pid: 70160] Please visit https://tunemygc.com/configs/d739119e4abc38d42e183d1361991818 to view your configuration and other Garbage Collector insights
104
+ [tunemygc, pid: 70160] Syncing 688 snapshots
105
+ [tunemygc, pid: 70160] ==== Recommended GC configs for ActionController
106
+ [tunemygc, pid: 70160] Please visit https://tunemygc.com/configs/d739119e4abc38d42e183d1361991818 to view your configuration and other Garbage Collector insights
107
107
  ```
108
108
 
109
109
  #### Advanced
@@ -121,9 +121,9 @@ This gem is only a lightweight agent and designed to not get in your way. It sam
121
121
  An instrumented process dumps a report URL with a reccommended config to the Rails logger.
122
122
 
123
123
  ``` sh
124
- [TuneMyGC, pid: 70160] Syncing 688 snapshots
125
- [TuneMyGC, pid: 70160] ==== Recommended GC configs for ActionController
126
- [TuneMyGC, pid: 70160] Please visit https://tunemygc.com/configs/d739119e4abc38d42e183d1361991818 to view your configuration and other Garbage Collector insights
124
+ [tunemygc, pid: 70160] Syncing 688 snapshots
125
+ [tunemygc, pid: 70160] ==== Recommended GC configs for ActionController
126
+ [tunemygc, pid: 70160] Please visit https://tunemygc.com/configs/d739119e4abc38d42e183d1361991818 to view your configuration and other Garbage Collector insights
127
127
  ```
128
128
 
129
129
  We're still in the process of building tools and a launcher shim around this. You can also retrieve the last known configuration for you app via the CLI interface:
data/lib/tunemygc.rb CHANGED
@@ -19,13 +19,13 @@ end
19
19
 
20
20
  if ENV["RUBY_GC_TUNE"] && ENV["RUBY_GC_TUNE"] != ""
21
21
  if TuneMyGc.rails?
22
- puts "[TuneMyGC] Rails detected, loading railtie"
22
+ puts "[tunemygc] Rails detected, loading railtie"
23
23
  require 'tunemygc/railtie'
24
24
  else
25
- puts "[TuneMyGC] Rails not detected, loading minimal agent"
25
+ puts "[tunemygc] Rails not detected, loading minimal agent"
26
26
  require 'tunemygc/agent'
27
27
  TuneMyGc.booted
28
28
  end
29
29
  else
30
- puts "[TuneMyGC] not enabled"
30
+ puts "[tunemygc] not enabled"
31
31
  end
@@ -33,7 +33,7 @@ module TuneMyGc
33
33
  end
34
34
 
35
35
  def log(message)
36
- logger.info "[TuneMyGC, pid: #{Process.pid}] #{message}"
36
+ logger.info "[tunemygc, pid: #{Process.pid}] #{message}"
37
37
  end
38
38
 
39
39
  def spy_ids
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module TuneMyGc
4
- VERSION = "1.0.57"
4
+ VERSION = "1.0.58"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tunemygc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.57
4
+ version: 1.0.58
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bear Metal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-20 00:00:00.000000000 Z
11
+ date: 2015-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport