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 +4 -4
- data/README.rdoc +7 -1
- data/lib/raygun/2.5/raygun_ext.so +0 -0
- data/lib/raygun/2.6/raygun_ext.so +0 -0
- data/lib/raygun/2.7/raygun_ext.so +0 -0
- data/lib/raygun/apm/config.rb +1 -0
- data/lib/raygun/apm/tracer.rb +2 -0
- data/lib/raygun/apm/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf16d19f5aae51d9eccd048a276386fff7322bec4186b6bcefbc09b002d3702b
|
4
|
+
data.tar.gz: 4f05544081c0cba3fd1c5c03a38a5b2ae8d444663ac71769adc24d7f1bcd7c80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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"
|
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
|
data/lib/raygun/apm/config.rb
CHANGED
@@ -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'
|
data/lib/raygun/apm/tracer.rb
CHANGED
@@ -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
|
data/lib/raygun/apm/version.rb
CHANGED
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.
|
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-
|
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
|