raygun-apm 1.0.53-universal-darwin → 1.0.55-universal-darwin
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65d0456e99d3ed4697d06be188ad9caaf4f5248b3c223d69807999308b04a4bf
|
4
|
+
data.tar.gz: 9041545af2f41dcceddf3ca6da2eb31199c88bfa0b80eda478c62d1085c44c5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e7c0501775e3132413c6d5a86b508dff5b2e2e040f0fb5119c8ae735770ede123de2516b14b7905c184a72f78749ba24694280b208c68e16f69d5f471d3e1d6
|
7
|
+
data.tar.gz: 9d171db17769ba99cdd9d1ea2de55cbe6fb983fe630981534e1a03d568cb03094e46995e1d926e81792d6e821fb276e0b4606e9239a9b3e46c48b450b5da0963
|
Binary file
|
Binary file
|
Binary file
|
@@ -9,6 +9,7 @@ module Raygun
|
|
9
9
|
AGENT_STATE_UP_MISCONFIGURED = "\nThe Raygun APM Agent is running, but misconfigured.\nThe API Key needs to be set through the Raygun_ApiKey environment variable.\nThe API key can be found under 'Application Settings' in the Raygun UI"
|
10
10
|
AGENT_STATE_UP_CONFIGURED = "\nThe Raygun APM Agent is configured properly!"
|
11
11
|
AGENT_MINIMUM_VERSION_NOT_MET = "\nVersion #{Raygun::Apm::VERSION} of the Raygun APM Profiler requires a minimum Agent version #{Raygun::Apm::MINIMUM_AGENT_VERSION}\nPlease download the latest Agent from https://raygun.com/documentation/product-guides/apm/agent/downloads/"
|
12
|
+
PROFILER_NOOPED = "Profiler loaded in noop mode and will be disabled due to the minimum Agent version not met"
|
12
13
|
|
13
14
|
def initialize(host: Apm::Config::TCP_MANAGEMENT_HOST, port: Apm::Config::TCP_MANAGEMENT_PORT)
|
14
15
|
@host = host
|
@@ -21,6 +22,7 @@ module Raygun
|
|
21
22
|
if minimum_agent_version_not_met?(response['Version'])
|
22
23
|
puts AGENT_MINIMUM_VERSION_NOT_MET
|
23
24
|
tracer.noop!
|
25
|
+
puts PROFILER_NOOPED
|
24
26
|
else
|
25
27
|
if response['Status'] == 1
|
26
28
|
puts AGENT_STATE_UP_CONFIGURED
|
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.55
|
5
5
|
platform: universal-darwin
|
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-
|
12
|
+
date: 2020-08-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: debase-ruby_core_source
|