raygun-apm 1.0.22-x86-linux → 1.0.23-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 136943047bbfa2ac22f9a93b16a06f0ef032b4c40e9bcfb0f60e15bfd9f842f2
4
- data.tar.gz: 1226906c469db967d343585e1e28fdcc4a5078646e9f3b0957dd13f92f717d85
3
+ metadata.gz: e98e3b0cb7117ad7db634e5df23c51f1b71dfb3bd60217b8faff3b2d93c5c181
4
+ data.tar.gz: 0b354e90264480f733c5eb6b14432381f13f36bec2bd02eebd9a733189dbcb58
5
5
  SHA512:
6
- metadata.gz: 160bd49bd918e7699f2ccebdcca404620c9a335bb1a4a3b1b84487d95af8d7acdfa864fe6c345763afb30237190a9c314d9689cf20f15720fdc14d1f8b447046
7
- data.tar.gz: ba9aac29ed564a910aa586560f53525953dc7edf366a489e076f006f2c5bacca9c3380c7fc6378e79a85214482b616a4715844977e3ab983550a912c240d6136
6
+ metadata.gz: 5e3d5ced6a8a628ca927ded695e861fe02981b0e6269c75ec5bf1f045ae63f9e4973c137757bae77adc904af1e81183629033526c43199fa2a409bd0a2309486
7
+ data.tar.gz: bc3948cf222a39adf6b02f036b216ac3274ace9f2c495710aa15898b6fcb6b4f28fd3397a9f59969a278fbdcb320efa1196e48349817ba1b5c7c2772963dfe31
data/README.rdoc CHANGED
@@ -35,7 +35,7 @@ this deployment model if your production infrastructure already depends on Docke
35
35
 
36
36
  Also a great way to explore on your Mac.
37
37
 
38
- The <code>RAYGUN_AGENT_TOKEN</code> needs to be supplied as an argument and is available under "Application Settings" at the {Raygun Application Performance Monitoring}[https://raygun.com/platform/apm] UI
38
+ The <code>RAYGUN_AGENT_TOKEN</code> needs to be supplied as an argument and is available under "Application Settings" within the {Raygun Application Performance Monitoring}[https://raygun.com/platform/apm] UI
39
39
 
40
40
  To launch Raygun Agent using docker
41
41
  docker pull raygunowner/raygun-apm
@@ -63,6 +63,12 @@ Run <code>bundle</code> to install the gem.
63
63
 
64
64
  Alternatively install using rubygems <code>gem install raygun-apm</code>.
65
65
 
66
+ === Profiler configration
67
+
68
+ ==== Multiple applications, one Agent
69
+
70
+ Set the `PROTON_API_KEY` environment variable to your API key, which is available under "Application Settings" within the {Raygun Application Performance Monitoring}[https://raygun.com/platform/apm] UI.
71
+
66
72
  === Standalone ruby script / custom framework
67
73
 
68
74
  For standalone scripts, context start-end needs to be marked specifically and optionally extended events can be called.
Binary file
Binary file
Binary file
@@ -54,6 +54,7 @@ module Raygun
54
54
  UDP_SINK_PORT = 2799
55
55
 
56
56
  ## Enumerate all PROTON_ constants
57
+ config_var 'PROTON_API_KEY', as: String, default: ''
57
58
  config_var 'PROTON_DEBUG_LOGLEVEL', as: String, default: 'None'
58
59
  config_var 'PROTON_USER_OVERRIDES_FILE', as: String
59
60
  config_var 'PROTON_NETWORK_MODE', as: String, default: 'Udp'
@@ -27,8 +27,10 @@ module Raygun
27
27
  # Ignore comments set to false here to account for #<Class: etc. in Rails blacklist
28
28
  add_filters Raygun::Apm::Blacklist.resolve_entries, ignore_comments: false
29
29
  show_filters if config.loglevel == Tracer::LOG_BLACKLIST
30
+ # Special assignments from config to the Tracer
30
31
  self.log_level = config.loglevel
31
32
  self.environment = config.environment
33
+ self.api_key = config.proton_api_key
32
34
  ObjectSpace.define_finalizer(self, proc{ disable_tracepoints })
33
35
  # Any fails here is kamikaze for the tracer
34
36
  rescue => e
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.22"
3
+ VERSION = "1.0.23"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.22
4
+ version: 1.0.23
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-03-29 00:00:00.000000000 Z
12
+ date: 2020-03-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debase-ruby_core_source