raygun-apm 1.0.52-x86-linux → 1.0.57-x86-linux

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: 02fa1c570b93b8e0004051ea1f35e434cc5ae676936600bfa7221204babfa477
4
- data.tar.gz: 353e746a8da8cbaaa8f0d0a33578497f358c50054b25f641b4c8004549bf14f6
3
+ metadata.gz: f214cbcf6c2ac2f5ad6295a6ea5b32d1a30ec98fdb78a3422a1ec0ed5a63496c
4
+ data.tar.gz: 285e29b168e95c1349c9a06d94e7b832a5f4ae52ca782eaf18d57ce9850c9bae
5
5
  SHA512:
6
- metadata.gz: 96f9e5c87256e4ba7ff69e3ef49af6c837c16b14e090c837e4e0fd91bad9d05b5d0ee03b1dde16811853332f249c7c67e317dab714c6c7f7b157a4411e57d0da
7
- data.tar.gz: e3442e87e22aa9176cae52c5d2b62ef2a399b7d657996f205a9453ef0158a5f739fef1762689d8de5e6cbf2333f0b5a4f181342ba9ed4091357b22a7009dac5f
6
+ metadata.gz: b9e5108208332ca65fec1b12b1a8834a5186599895a482c895e1085bb2910dbe3d9c3398ddde5570f9cb410bd53e445429cee3b7a52e54da91d5e1fc94590ce9
7
+ data.tar.gz: 7496ba60af080b10bce830bc4672a47992ab9db282ee8573c1a5adc0ddd08a0de75a0e95cae07784b6537a94411d1d4f492ba7f368f1ba0624d6999facc2fac7
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: 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-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