Class: Datadog::DI::Probe Private
- Inherits:
-
Object
- Object
- Datadog::DI::Probe
- Defined in:
- lib/datadog/di/probe.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.
Encapsulates probe information (as received via remote config) and state (e.g. whether the probe was installed, or executed).
It is possible that remote configuration will specify an unsupported probe type or attribute, due to new DI functionality being added over time. We want to have predictable behavior in such cases, and since we can’t guarantee that there will be enough information in a remote config payload to construct a functional probe, ProbeBuilder and remote config code must be prepared to deal with exceptions raised by Probe constructor in particular. Therefore, Probe constructor will raise an exception if it determines that there is not enough information (or confilcting information) in the arguments to create a functional probe, and upstream code is tasked with not spamming logs with notifications of such errors (and potentially limiting the attempts to construct probe from a given payload).
Note that, while remote configuration provides line numbers as an array, the only supported line number configuration is a single line (this is the case for all languages currently). Therefore Probe only supports one line number, and ProbeBuilder is responsible for extracting that one line number out of the array received from RC.
Note: only some of the parameter/attribute values are currently validated.
Constant Summary collapse
- KNOWN_TYPES =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
%i[log].freeze
Instance Attribute Summary collapse
-
#emitting_notified ⇒ Object
writeonly
private
TODO emitting_notified reads and writes should in theory be locked, however since DI is only implemented for MRI in practice the missing locking should not cause issues.
- #file ⇒ Object readonly private
- #id ⇒ Object readonly private
-
#instrumentation_module ⇒ Object
private
Instrumentation module for method probes.
-
#instrumentation_trace_point ⇒ Object
private
Line trace point for line probes.
-
#instrumented_path ⇒ Object
private
Actual path to the file instrumented by the probe, for line probes, when code tracking is available and line trace point is targeted.
- #line_no ⇒ Object readonly private
-
#max_capture_depth ⇒ Object
readonly
private
Configured maximum capture depth.
- #method_name ⇒ Object readonly private
-
#rate_limit ⇒ Object
readonly
private
Rate limit in effect, in invocations per second.
-
#rate_limiter ⇒ Object
readonly
private
Rate limiter object.
- #template ⇒ Object readonly private
- #type ⇒ Object readonly private
- #type_name ⇒ Object readonly private
Instance Method Summary collapse
- #capture_snapshot? ⇒ Boolean private
- #emitting_notified? ⇒ Boolean private
-
#file_matches?(path) ⇒ Boolean
private
Returns whether the provided
path
matches the user-designated file (of a line probe). -
#initialize(id:, type:, file: nil, line_no: nil, type_name: nil, method_name: nil, template: nil, capture_snapshot: false, max_capture_depth: nil, rate_limit: nil) ⇒ Probe
constructor
private
A new instance of Probe.
-
#line? ⇒ Boolean
private
Returns whether the probe is a line probe.
-
#line_no! ⇒ Object
private
Returns the line number associated with the probe, raising Error::MissingLineNumber if the probe does not have a line number associated with it.
-
#location ⇒ Object
private
Source code location of the probe, for diagnostic reporting.
-
#method? ⇒ Boolean
private
Returns whether the probe is a method probe.
Constructor Details
#initialize(id:, type:, file: nil, line_no: nil, type_name: nil, method_name: nil, template: nil, capture_snapshot: false, max_capture_depth: nil, rate_limit: nil) ⇒ Probe
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 Probe.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/datadog/di/probe.rb', line 37 def initialize(id:, type:, file: nil, line_no: nil, type_name: nil, method_name: nil, template: nil, capture_snapshot: false, max_capture_depth: nil, rate_limit: nil) # Perform some sanity checks here to detect unexpected attribute # combinations, in order to not do them in subsequent code. unless KNOWN_TYPES.include?(type) raise ArgumentError, "Unknown probe type: #{type}" end if line_no && method_name raise ArgumentError, "Probe contains both line number and method name: #{id}" end if line_no && !file raise ArgumentError, "Probe contains line number but not file: #{id}" end if type_name && !method_name || method_name && !type_name raise ArgumentError, "Partial method probe definition: #{id}" end @id = id @type = type @file = file @line_no = line_no @type_name = type_name @method_name = method_name @template = template @capture_snapshot = !!capture_snapshot @max_capture_depth = max_capture_depth # These checks use instance methods that have more complex logic # than checking a single argument value. To avoid duplicating # the logic here, use the methods and perform these checks after # instance variable assignment. unless method? || line? raise ArgumentError, "Unhandled probe type: neither method nor line probe: #{id}" end @rate_limit = rate_limit || (@capture_snapshot ? 1 : 5000) @rate_limiter = Datadog::Core::TokenBucket.new(@rate_limit) @emitting_notified = false end |
Instance Attribute Details
#emitting_notified=(value) ⇒ Object (writeonly)
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.
TODO emitting_notified reads and writes should in theory be locked, however since DI is only implemented for MRI in practice the missing locking should not cause issues.
178 179 180 |
# File 'lib/datadog/di/probe.rb', line 178 def emitting_notified=(value) @emitting_notified = value end |
#file ⇒ Object (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/probe.rb', line 84 def file @file end |
#id ⇒ Object (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/probe.rb', line 82 def id @id end |
#instrumentation_module ⇒ 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.
Instrumentation module for method probes.
164 165 166 |
# File 'lib/datadog/di/probe.rb', line 164 def instrumentation_module @instrumentation_module end |
#instrumentation_trace_point ⇒ 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.
Line trace point for line probes. Normally this would be a targeted trace point.
168 169 170 |
# File 'lib/datadog/di/probe.rb', line 168 def instrumentation_trace_point @instrumentation_trace_point end |
#instrumented_path ⇒ 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.
Actual path to the file instrumented by the probe, for line probes, when code tracking is available and line trace point is targeted. For untargeted line trace points instrumented path will be nil.
173 174 175 |
# File 'lib/datadog/di/probe.rb', line 173 def instrumented_path @instrumented_path end |
#line_no ⇒ Object (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/probe.rb', line 85 def line_no @line_no end |
#max_capture_depth ⇒ Object (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.
Configured maximum capture depth. Can be nil in which case the global default will be used.
92 93 94 |
# File 'lib/datadog/di/probe.rb', line 92 def max_capture_depth @max_capture_depth end |
#method_name ⇒ Object (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/probe.rb', line 87 def method_name @method_name end |
#rate_limit ⇒ Object (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.
Rate limit in effect, in invocations per second. Always present.
95 96 97 |
# File 'lib/datadog/di/probe.rb', line 95 def rate_limit @rate_limit end |
#rate_limiter ⇒ Object (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.
Rate limiter object. For internal DI use only.
98 99 100 |
# File 'lib/datadog/di/probe.rb', line 98 def rate_limiter @rate_limiter end |
#template ⇒ Object (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/probe.rb', line 88 def template @template end |
#type ⇒ Object (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/probe.rb', line 83 def type @type end |
#type_name ⇒ Object (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/probe.rb', line 86 def type_name @type_name end |
Instance Method Details
#capture_snapshot? ⇒ 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.
100 101 102 |
# File 'lib/datadog/di/probe.rb', line 100 def capture_snapshot? @capture_snapshot end |
#emitting_notified? ⇒ 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.
179 180 181 |
# File 'lib/datadog/di/probe.rb', line 179 def emitting_notified? !!@emitting_notified end |
#file_matches?(path) ⇒ 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.
Returns whether the provided path
matches the user-designated file (of a line probe).
If file is an absolute path (i.e., it starts with a slash), the file must be identical to path to match.
If file is not an absolute path, the path matches if the file is its suffix, at a path component boundary.
156 157 158 159 160 161 |
# File 'lib/datadog/di/probe.rb', line 156 def file_matches?(path) unless file raise ArgumentError, "Probe does not have a file to match against" end Utils.path_matches_suffix?(path, file) end |
#line? ⇒ 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.
Returns whether the probe is a line probe.
Method probes may still specify a file name (to aid in locating the method or for stack traversal purposes?), therefore we do not check for file name/path presence here and just consider the line number.
109 110 111 112 113 114 |
# File 'lib/datadog/di/probe.rb', line 109 def line? # Constructor checks that file is given if line number is given, # but for safety, check again here since we somehow got a probe with # a line number but no file in the wild. !!(file && line_no) end |
#line_no! ⇒ 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.
Returns the line number associated with the probe, raising Error::MissingLineNumber if the probe does not have a line number associated with it.
This method is used by instrumentation driver to ensure a line number that is passed into the instrumentation logic is actually a line number and not nil.
128 129 130 131 132 133 |
# File 'lib/datadog/di/probe.rb', line 128 def line_no! if line_no.nil? raise Error::MissingLineNumber, "Probe #{id} does not have a line number associated with it" end line_no end |
#location ⇒ 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.
Source code location of the probe, for diagnostic reporting.
136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/datadog/di/probe.rb', line 136 def location if method? "#{type_name}.#{method_name}" elsif line? "#{file}:#{line_no}" else # This case should not be possible because constructor verifies that # the probe is a method or a line probe. raise NotImplementedError end end |
#method? ⇒ 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.
Returns whether the probe is a method probe.
117 118 119 |
# File 'lib/datadog/di/probe.rb', line 117 def method? !!(type_name && method_name) end |