raygun-apm 1.0.52-x64-mingw32 → 1.0.57-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: 5eb096598696fb11165d3bd01801f1b7034ee0e47481f083db217a624596f34c
4
- data.tar.gz: 7b9f1112b5032073497dd8003d193dc4bd819789400fd725941030efe1f879e1
3
+ metadata.gz: 846b4f4e7a441140351e7a52b5a2bc369590b9fc10aaa31a111c9bf474dc9a3c
4
+ data.tar.gz: 6572cf24941fc02f21531867dce5a9a970c10d442390cddbe2806df30e66e947
5
5
  SHA512:
6
- metadata.gz: b99bb4c0bf16fe3fc4d6264065f55138498bffd6768e78539b6ebf60db71dc7784b167326bd14eefb10ff3ff7877a847db3eb1c9aabd1c53cef18bf374ea9850
7
- data.tar.gz: 7e613d703b71886e5d173296f0703e3b836062bbb71c49d861461b434ce85f4113bd22df91e814d3efed1ad5b3c811c03cd078fabeb56e0667b77bb183c58ea6
6
+ metadata.gz: 53d2412d5d9d90eea51045a6bddcf27d70756adfa97b808a20ba84b07690916343e9198eb388bfcfdfe882d3b56b9cd2ae076035298bb04ce9359dbee89d2a44
7
+ data.tar.gz: 5784e73a8d626ddb5915b924f015d3901976316d3c614d0e1d89149ab8f1a386089647348bc78d6b20f8849f60e6325b80a918837ff618fc6ee1338f567192f1
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
@@ -1,6 +1,6 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.52"
3
+ VERSION = "1.0.57"
4
4
  MINIMUM_AGENT_VERSION = "1.0.1190.0"
5
5
  end
6
6
  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.52
4
+ version: 1.0.57
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-07-27 00:00:00.000000000 Z
12
+ date: 2020-08-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debase-ruby_core_source