raygun-apm 1.0.22-x64-mingw32 → 1.0.23-x64-mingw32

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
  SHA256:
3
- metadata.gz: 9e6fcff15260308cf2621748ed1ff2a627cd95f29379aa48b1e5dbc5b0930cd0
4
- data.tar.gz: 4661553b0a0c892c11ec6d271c430d1a5708ea2afd4f244c8171376c72e9ee55
3
+ metadata.gz: cf16d19f5aae51d9eccd048a276386fff7322bec4186b6bcefbc09b002d3702b
4
+ data.tar.gz: 4f05544081c0cba3fd1c5c03a38a5b2ae8d444663ac71769adc24d7f1bcd7c80
5
5
  SHA512:
6
- metadata.gz: ce478627e5138f0cd81f23554fe09731d2d0a10618b93a1e19aa27576149aa06ae8a8e6dbbd262e0111caa569b950c529641cea61e257c038ff7c3b1ed7a593f
7
- data.tar.gz: 97f951c4af275546024a4fb9bce3e6f5186dcad74b7bf627bf1d6c1c498995b96446c038a0403989f43f94d58ef8fe566719cf8f9138c984e462b82869a22570
6
+ metadata.gz: f2617c7062e5efeb9ef583aeb6e7f59acc4fdce7a7b56eccf011bdeb65eca6e5406647c68ea968f606fb28d07042d0fae7e1753932a78bbfcbd6aad7b789c05e
7
+ data.tar.gz: 47f744705c63e4ebb06881cc0785924c8d27c218cd422e6899413e8eb285d33f292997ebafed54d35bc6f8dea05980484ad5f1cf0b574531f3e3646443e73129
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: x64-mingw32
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