Class: NewRelic::Agent::Configuration::EnvironmentSource
- Inherits:
-
DottedHash
- Object
- Hash
- DottedHash
- NewRelic::Agent::Configuration::EnvironmentSource
- Defined in:
- lib/new_relic/agent/configuration/environment_source.rb
Instance Method Summary collapse
-
#initialize ⇒ EnvironmentSource
constructor
A new instance of EnvironmentSource.
- #initialize_thread_profiler_settings ⇒ Object
Methods inherited from DottedHash
Constructor Details
#initialize ⇒ EnvironmentSource
Returns a new instance of EnvironmentSource.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/new_relic/agent/configuration/environment_source.rb', line 5 def initialize string_map = { 'NRCONFIG' => :config_path, 'NEW_RELIC_LICENSE_KEY' => :license_key, 'NEWRELIC_LICENSE_KEY' => :license_key, 'NEW_RELIC_APP_NAME' => :app_name, 'NEWRELIC_APP_NAME' => :app_name, 'NEW_RELIC_DISPATCHER' => :dispatcher, 'NEWRELIC_DISPATCHER' => :dispatcher, 'NEW_RELIC_FRAMEWORK' => :framework, 'NEWRELIC_FRAMEWORK' => :framework }.each do |key, val| self[val] = ENV[key] if ENV[key] end boolean_map = { 'NEWRELIC_ENABLE' => :agent_enabled }.each do |key, val| if ENV[key].to_s =~ /false|off|no/i self[val] = false elsif ENV[key] != nil self[val] = true end end if ENV['NEW_RELIC_LOG'] if ENV['NEW_RELIC_LOG'].upcase == 'STDOUT' self[:log_file_path] = self[:log_file_name] = 'STDOUT' else self[:log_file_path] = File.dirname(ENV['NEW_RELIC_LOG']) self[:log_file_name] = File.basename(ENV['NEW_RELIC_LOG']) end end initialize_thread_profiler_settings end |
Instance Method Details
#initialize_thread_profiler_settings ⇒ Object
43 44 45 46 47 48 49 50 51 52 |
# File 'lib/new_relic/agent/configuration/environment_source.rb', line 43 def initialize_thread_profiler_settings thread_profiler_supported = NewRelic::Agent::ThreadProfiler.is_supported? self[:'thread_profiler.is_supported'] = thread_profiler_supported # If not supporting thread profiling, ignore all other enabled's. # Otherwise, don't set so defaulting is heeded. if !thread_profiler_supported self[:'thread_profiler.enabled'] = false end end |