instana 1.7.12 → 1.7.13
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/lib/instana/agent.rb +3 -2
- data/lib/instana/config.rb +10 -3
- data/lib/instana/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: 5ce1ae9e4a902bb968cbed7ed7c2d8a90a92e496e81090934af584a5b949a343
|
|
4
|
+
data.tar.gz: 82375ac00d24f5e82beb01037dd065b326d79d560b651c90bc5721ddbf49b8b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc8566333b29d5b8ee33bde902586843687863941d88d24b404f747d86586d3f20a6b79f603b2e734f872f7db84acdef68ecd16f962f871f54602ff795796ce3
|
|
7
|
+
data.tar.gz: e08638fdecfbc8fbff0c6bcf64533a478a2d2c45df6c651b6451150412a1e3d0e190f3ef52c8b98cddf94639e24aa0750aba71c83d4bbaffecfdd90315192550
|
data/lib/instana/agent.rb
CHANGED
|
@@ -372,8 +372,8 @@ module Instana
|
|
|
372
372
|
end
|
|
373
373
|
|
|
374
374
|
# Runs a discovery process to determine where we can contact the host agent. This is usually just
|
|
375
|
-
# localhost but in docker can be found on the default gateway.
|
|
376
|
-
# configuration via ::Instana.config[:agent_host/port].
|
|
375
|
+
# localhost but in docker can be found on the default gateway. Another option is the INSTANA_AGENT_HOST
|
|
376
|
+
# environment variable. This also allows for manual configuration via ::Instana.config[:agent_host/port].
|
|
377
377
|
#
|
|
378
378
|
# @return [Hash] a hash with :agent_host, :agent_port values or empty hash
|
|
379
379
|
#
|
|
@@ -414,6 +414,7 @@ module Instana
|
|
|
414
414
|
::Instana.logger.debug "#{__method__}: Found #{discovered[:agent_host]}:#{discovered[:agent_port]}"
|
|
415
415
|
return discovered
|
|
416
416
|
end
|
|
417
|
+
|
|
417
418
|
nil
|
|
418
419
|
end
|
|
419
420
|
|
data/lib/instana/config.rb
CHANGED
|
@@ -3,9 +3,16 @@ module Instana
|
|
|
3
3
|
|
|
4
4
|
def initialize
|
|
5
5
|
@config = {}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
if ENV.key?('INSTANA_AGENT_HOST')
|
|
7
|
+
@config[:agent_host] = ENV['INSTANA_AGENT_HOST']
|
|
8
|
+
else
|
|
9
|
+
@config[:agent_host] = '127.0.0.1'
|
|
10
|
+
end
|
|
11
|
+
if ENV.key?('INSTANA_AGENT_PORT')
|
|
12
|
+
@config[:agent_port] = ENV['INSTANA_AGENT_PORT']
|
|
13
|
+
else
|
|
14
|
+
@config[:agent_port] = 42699
|
|
15
|
+
end
|
|
9
16
|
|
|
10
17
|
# Global on/off switch for prebuilt environments
|
|
11
18
|
# Setting this to false will disable this gem
|
data/lib/instana/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: instana
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Giacomo Lombardo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-07-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|