Class: Datadog::DI::Component Private

Inherits:
Object
  • Object
show all
Defined in:
lib/datadog/di/component.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Component for dynamic instrumentation.

Only one instance of the Component should ever be active; if configuration is changed, the old distance should be shut down prior to the new instance being created.

The Component instance stores all state related to DI, for example which probes have been retrieved via remote config, intalled tracepoints and so on. Component will clean up all resources and installed tracepoints upon shutdown.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(settings, agent_settings, logger, code_tracker: nil, telemetry: nil) ⇒ Component

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Component.



66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/datadog/di/component.rb', line 66

def initialize(settings, agent_settings, logger, code_tracker: nil, telemetry: nil)
  @settings = settings
  @agent_settings = agent_settings
  @logger = logger
  @telemetry = telemetry
  @redactor = Redactor.new(settings)
  @serializer = Serializer.new(settings, redactor, telemetry: telemetry)
  @instrumenter = Instrumenter.new(settings, serializer, logger, code_tracker: code_tracker, telemetry: telemetry)
  @transport = Transport.new(agent_settings)
  @probe_notifier_worker = ProbeNotifierWorker.new(settings, transport, logger, telemetry: telemetry)
  @probe_notification_builder = ProbeNotificationBuilder.new(settings, serializer)
  @probe_manager = ProbeManager.new(settings, instrumenter, probe_notification_builder, probe_notifier_worker, logger, telemetry: telemetry)
  probe_notifier_worker.start
end

Instance Attribute Details

#agent_settingsObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



82
83
84
# File 'lib/datadog/di/component.rb', line 82

def agent_settings
  @agent_settings
end

#instrumenterObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



85
86
87
# File 'lib/datadog/di/component.rb', line 85

def instrumenter
  @instrumenter
end

#loggerObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



83
84
85
# File 'lib/datadog/di/component.rb', line 83

def logger
  @logger
end

#probe_managerObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



89
90
91
# File 'lib/datadog/di/component.rb', line 89

def probe_manager
  @probe_manager
end

#probe_notification_builderObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



88
89
90
# File 'lib/datadog/di/component.rb', line 88

def probe_notification_builder
  @probe_notification_builder
end

#probe_notifier_workerObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



87
88
89
# File 'lib/datadog/di/component.rb', line 87

def probe_notifier_worker
  @probe_notifier_worker
end

#redactorObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



90
91
92
# File 'lib/datadog/di/component.rb', line 90

def redactor
  @redactor
end

#serializerObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



91
92
93
# File 'lib/datadog/di/component.rb', line 91

def serializer
  @serializer
end

#settingsObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



81
82
83
# File 'lib/datadog/di/component.rb', line 81

def settings
  @settings
end

#telemetryObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



84
85
86
# File 'lib/datadog/di/component.rb', line 84

def telemetry
  @telemetry
end

#transportObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



86
87
88
# File 'lib/datadog/di/component.rb', line 86

def transport
  @transport
end

Class Method Details

.build(settings, agent_settings, telemetry: nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/datadog/di/component.rb', line 17

def build(settings, agent_settings, telemetry: nil)
  return unless settings.respond_to?(:dynamic_instrumentation) && settings.dynamic_instrumentation.enabled

  unless settings.respond_to?(:remote) && settings.remote.enabled
    Datadog.logger.debug("Dynamic Instrumentation could not be enabled because Remote Configuration Management is not available. To enable Remote Configuration, see https://docs.datadoghq.com/agent/remote_config")
    return
  end

  return unless environment_supported?(settings)

  new(settings, agent_settings, Datadog.logger, code_tracker: DI.code_tracker, telemetry: telemetry)
end

.build!(settings, agent_settings, telemetry: nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/datadog/di/component.rb', line 30

def build!(settings, agent_settings, telemetry: nil)
  unless settings.respond_to?(:dynamic_instrumentation) && settings.dynamic_instrumentation.enabled
    raise "Requested DI component but DI is not enabled in settings"
  end

  unless settings.respond_to?(:remote) && settings.remote.enabled
    raise "Requested DI component but remote config is not enabled in settings"
  end

  unless environment_supported?(settings)
    raise "DI does not support the environment (development or Ruby version too low or not MRI)"
  end

  new(settings, agent_settings, Datadog.logger, code_tracker: DI.code_tracker, telemetry: telemetry)
end

.environment_supported?(settings) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Checks whether the runtime environment is supported by dynamic instrumentation. Currently we only require that, if Rails is used, that Rails environment is not development because DI does not currently support code unloading and reloading.

Returns:

  • (Boolean)


50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/datadog/di/component.rb', line 50

def environment_supported?(settings)
  # TODO add tests?
  unless settings.dynamic_instrumentation.internal.development
    if Datadog::Core::Environment::Execution.development?
      Datadog.logger.debug("Not enabling dynamic instrumentation because we are in development environment")
      return false
    end
  end
  if RUBY_ENGINE != 'ruby' || RUBY_VERSION < '2.6'
    Datadog.logger.debug("Not enabling dynamic instrumentation because of unsupported Ruby version")
    return false
  end
  true
end

Instance Method Details

#shutdown!(replacement = nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Shuts down dynamic instrumentation.

Removes all code hooks and stops background threads.

Does not clear out the code tracker, because it’s only populated by code when code is compiled and therefore, if the code tracker was replaced by a new instance, the new instance of it wouldn’t have any of the already loaded code tracked.



101
102
103
104
105
# File 'lib/datadog/di/component.rb', line 101

def shutdown!(replacement = nil)
  probe_manager.clear_hooks
  probe_manager.close
  probe_notifier_worker.stop
end