datadog 2.31.0 → 2.32.0
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/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c +17 -7
- data/ext/datadog_profiling_native_extension/collectors_thread_context.c +11 -4
- data/ext/datadog_profiling_native_extension/collectors_thread_context.h +6 -0
- data/ext/datadog_profiling_native_extension/extconf.rb +5 -4
- data/ext/datadog_profiling_native_extension/http_transport.c +10 -5
- data/ext/libdatadog_api/di.c +48 -0
- data/ext/libdatadog_api/extconf.rb +7 -4
- data/ext/libdatadog_extconf_helpers.rb +37 -0
- data/lib/datadog/ai_guard/configuration.rb +105 -2
- data/lib/datadog/ai_guard/evaluation.rb +1 -0
- data/lib/datadog/ai_guard/ext.rb +1 -0
- data/lib/datadog/appsec/autoload.rb +1 -1
- data/lib/datadog/appsec/component.rb +1 -1
- data/lib/datadog/appsec/configuration.rb +414 -1
- data/lib/datadog/appsec/contrib/devise/patches/signin_tracking_patch.rb +2 -1
- data/lib/datadog/appsec/contrib/rack/gateway/request.rb +1 -1
- data/lib/datadog/appsec/contrib/rails/patcher.rb +2 -2
- data/lib/datadog/appsec/metrics/telemetry.rb +13 -1
- data/lib/datadog/appsec/security_engine/runner.rb +1 -1
- data/lib/datadog/appsec/trace_keeper.rb +18 -6
- data/lib/datadog/appsec/utils/http/url_encoded.rb +2 -2
- data/lib/datadog/core/configuration/components.rb +1 -1
- data/lib/datadog/core/configuration/settings.rb +3 -0
- data/lib/datadog/core/configuration/supported_configurations.rb +2 -0
- data/lib/datadog/core/configuration.rb +1 -1
- data/lib/datadog/core/contrib/rails/utils.rb +1 -1
- data/lib/datadog/core/crashtracking/component.rb +3 -3
- data/lib/datadog/core/diagnostics/environment_logger.rb +3 -1
- data/lib/datadog/core/environment/container.rb +2 -2
- data/lib/datadog/core/feature_flags.rb +1 -1
- data/lib/datadog/core/metrics/client.rb +5 -5
- data/lib/datadog/core/remote/client.rb +1 -1
- data/lib/datadog/core/remote/component.rb +2 -2
- data/lib/datadog/core/runtime/metrics.rb +1 -1
- data/lib/datadog/core/telemetry/emitter.rb +1 -1
- data/lib/datadog/core/telemetry/event/app_started.rb +2 -2
- data/lib/datadog/core/transport/http.rb +2 -0
- data/lib/datadog/core/utils.rb +1 -1
- data/lib/datadog/core/workers/async.rb +1 -1
- data/lib/datadog/core.rb +1 -1
- data/lib/datadog/data_streams/configuration.rb +40 -1
- data/lib/datadog/data_streams/pathway_context.rb +1 -1
- data/lib/datadog/data_streams/processor.rb +1 -1
- data/lib/datadog/data_streams.rb +1 -1
- data/lib/datadog/di/base.rb +8 -5
- data/lib/datadog/di/code_tracker.rb +179 -1
- data/lib/datadog/di/component.rb +1 -1
- data/lib/datadog/di/configuration.rb +235 -2
- data/lib/datadog/di/instrumenter.rb +46 -26
- data/lib/datadog/di/probe_builder.rb +1 -1
- data/lib/datadog/di/probe_file_loader.rb +2 -2
- data/lib/datadog/di/probe_manager.rb +6 -6
- data/lib/datadog/di/probe_notification_builder.rb +1 -1
- data/lib/datadog/di/probe_notifier_worker.rb +2 -2
- data/lib/datadog/di/remote.rb +6 -6
- data/lib/datadog/di/serializer.rb +1 -1
- data/lib/datadog/di/transport/input.rb +3 -3
- data/lib/datadog/error_tracking/configuration.rb +55 -2
- data/lib/datadog/kit/enable_core_dumps.rb +1 -1
- data/lib/datadog/open_feature/component.rb +18 -1
- data/lib/datadog/open_feature/evaluation_engine.rb +3 -3
- data/lib/datadog/open_feature/exposures/reporter.rb +1 -1
- data/lib/datadog/open_feature/exposures/worker.rb +1 -1
- data/lib/datadog/open_feature/hooks/flag_eval_hook.rb +49 -0
- data/lib/datadog/open_feature/metrics/flag_eval_metrics.rb +149 -0
- data/lib/datadog/open_feature/provider.rb +19 -1
- data/lib/datadog/open_feature/remote.rb +1 -1
- data/lib/datadog/open_feature/transport.rb +1 -1
- data/lib/datadog/opentelemetry/metrics.rb +3 -3
- data/lib/datadog/opentelemetry/sdk/configurator.rb +1 -1
- data/lib/datadog/opentelemetry/sdk/metrics_exporter.rb +1 -1
- data/lib/datadog/profiling/collectors/code_provenance.rb +35 -9
- data/lib/datadog/profiling/collectors/cpu_and_wall_time_worker.rb +31 -2
- data/lib/datadog/profiling/collectors/idle_sampling_helper.rb +8 -2
- data/lib/datadog/profiling/collectors/info.rb +16 -3
- data/lib/datadog/profiling/component.rb +3 -5
- data/lib/datadog/profiling/exporter.rb +37 -12
- data/lib/datadog/profiling/ext.rb +0 -2
- data/lib/datadog/profiling/flush.rb +21 -12
- data/lib/datadog/profiling/http_transport.rb +12 -1
- data/lib/datadog/profiling/load_native_extension.rb +1 -1
- data/lib/datadog/profiling/profiler.rb +13 -1
- data/lib/datadog/profiling/scheduler.rb +2 -2
- data/lib/datadog/profiling/tasks/exec.rb +8 -3
- data/lib/datadog/profiling/tasks/help.rb +1 -0
- data/lib/datadog/profiling/tasks/setup.rb +2 -2
- data/lib/datadog/single_step_instrument.rb +1 -1
- data/lib/datadog/symbol_database/configuration.rb +65 -0
- data/lib/datadog/symbol_database/extractor.rb +915 -0
- data/lib/datadog/symbol_database/file_hash.rb +46 -0
- data/lib/datadog/symbol_database/logger.rb +43 -0
- data/lib/datadog/symbol_database/scope.rb +98 -0
- data/lib/datadog/symbol_database/service_version.rb +57 -0
- data/lib/datadog/symbol_database/symbol.rb +66 -0
- data/lib/datadog/symbol_database/transport/http/endpoint.rb +28 -0
- data/lib/datadog/symbol_database/transport/http.rb +45 -0
- data/lib/datadog/symbol_database/transport.rb +54 -0
- data/lib/datadog/symbol_database/uploader.rb +166 -0
- data/lib/datadog/symbol_database.rb +49 -0
- data/lib/datadog/tracing/buffer.rb +3 -3
- data/lib/datadog/tracing/configuration/settings.rb +1 -1
- data/lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb +5 -3
- data/lib/datadog/tracing/contrib/action_view/events/render_template.rb +1 -1
- data/lib/datadog/tracing/contrib/active_job/events/discard.rb +1 -1
- data/lib/datadog/tracing/contrib/active_job/events/enqueue.rb +1 -1
- data/lib/datadog/tracing/contrib/active_job/events/enqueue_at.rb +1 -1
- data/lib/datadog/tracing/contrib/active_job/events/enqueue_retry.rb +1 -1
- data/lib/datadog/tracing/contrib/active_job/events/perform.rb +1 -1
- data/lib/datadog/tracing/contrib/active_job/events/retry_stopped.rb +1 -1
- data/lib/datadog/tracing/contrib/active_model_serializers/events/render.rb +1 -1
- data/lib/datadog/tracing/contrib/active_model_serializers/events/serialize.rb +1 -1
- data/lib/datadog/tracing/contrib/active_record/configuration/resolver.rb +2 -2
- data/lib/datadog/tracing/contrib/active_record/events/instantiation.rb +1 -1
- data/lib/datadog/tracing/contrib/active_record/events/sql.rb +1 -1
- data/lib/datadog/tracing/contrib/active_record/utils.rb +1 -1
- data/lib/datadog/tracing/contrib/active_support/cache/events/cache.rb +1 -1
- data/lib/datadog/tracing/contrib/active_support/notifications/subscription.rb +2 -2
- data/lib/datadog/tracing/contrib/aws/instrumentation.rb +1 -1
- data/lib/datadog/tracing/contrib/component.rb +1 -1
- data/lib/datadog/tracing/contrib/configuration/resolver.rb +7 -4
- data/lib/datadog/tracing/contrib/dalli/quantize.rb +1 -1
- data/lib/datadog/tracing/contrib/elasticsearch/patcher.rb +1 -1
- data/lib/datadog/tracing/contrib/excon/middleware.rb +2 -2
- data/lib/datadog/tracing/contrib/extensions.rb +9 -0
- data/lib/datadog/tracing/contrib/faraday/middleware.rb +2 -2
- data/lib/datadog/tracing/contrib/grape/endpoint.rb +5 -5
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb +2 -2
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb +2 -2
- data/lib/datadog/tracing/contrib/http/instrumentation.rb +2 -2
- data/lib/datadog/tracing/contrib/httpclient/instrumentation.rb +6 -2
- data/lib/datadog/tracing/contrib/httprb/instrumentation.rb +2 -2
- data/lib/datadog/tracing/contrib/kafka/instrumentation/consumer.rb +2 -2
- data/lib/datadog/tracing/contrib/kafka/instrumentation/producer.rb +2 -2
- data/lib/datadog/tracing/contrib/karafka/patcher.rb +1 -1
- data/lib/datadog/tracing/contrib/mongodb/subscribers.rb +3 -3
- data/lib/datadog/tracing/contrib/opensearch/patcher.rb +1 -1
- data/lib/datadog/tracing/contrib/presto/instrumentation.rb +3 -3
- data/lib/datadog/tracing/contrib/rack/patcher.rb +1 -1
- data/lib/datadog/tracing/contrib/rack/request_queue.rb +1 -1
- data/lib/datadog/tracing/contrib/rails/log_injection.rb +1 -1
- data/lib/datadog/tracing/contrib/rails/runner.rb +1 -1
- data/lib/datadog/tracing/contrib/rake/instrumentation.rb +2 -2
- data/lib/datadog/tracing/contrib/redis/quantize.rb +1 -1
- data/lib/datadog/tracing/contrib/redis/tags.rb +1 -1
- data/lib/datadog/tracing/contrib/sidekiq/utils.rb +1 -1
- data/lib/datadog/tracing/contrib/stripe/request.rb +1 -1
- data/lib/datadog/tracing/contrib.rb +8 -0
- data/lib/datadog/tracing/diagnostics/environment_logger.rb +3 -1
- data/lib/datadog/tracing/distributed/baggage.rb +59 -5
- data/lib/datadog/tracing/distributed/datadog.rb +11 -11
- data/lib/datadog/tracing/distributed/datadog_tags_codec.rb +1 -1
- data/lib/datadog/tracing/distributed/propagation.rb +2 -2
- data/lib/datadog/tracing/distributed/trace_context.rb +74 -32
- data/lib/datadog/tracing/event.rb +1 -1
- data/lib/datadog/tracing/metadata/tagging.rb +2 -2
- data/lib/datadog/tracing/pipeline.rb +1 -1
- data/lib/datadog/tracing/remote.rb +1 -1
- data/lib/datadog/tracing/sampling/rule.rb +1 -1
- data/lib/datadog/tracing/sampling/rule_sampler.rb +2 -2
- data/lib/datadog/tracing/sampling/span/rule_parser.rb +2 -2
- data/lib/datadog/tracing/span_operation.rb +3 -3
- data/lib/datadog/tracing/trace_operation.rb +4 -4
- data/lib/datadog/tracing/tracer.rb +5 -5
- data/lib/datadog/tracing/transport/io/client.rb +1 -1
- data/lib/datadog/tracing/workers.rb +2 -1
- data/lib/datadog/version.rb +1 -1
- metadata +18 -9
- data/lib/datadog/ai_guard/configuration/settings.rb +0 -113
- data/lib/datadog/appsec/configuration/settings.rb +0 -423
- data/lib/datadog/data_streams/configuration/settings.rb +0 -49
- data/lib/datadog/di/configuration/settings.rb +0 -243
- data/lib/datadog/error_tracking/configuration/settings.rb +0 -63
|
@@ -4,8 +4,241 @@ module Datadog
|
|
|
4
4
|
module DI
|
|
5
5
|
# Configuration for DI
|
|
6
6
|
module Configuration
|
|
7
|
+
# Settings
|
|
8
|
+
module Settings
|
|
9
|
+
def self.extended(base)
|
|
10
|
+
base = base.singleton_class unless base.is_a?(Class)
|
|
11
|
+
add_settings!(base)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def self.add_settings!(base)
|
|
15
|
+
base.class_eval do
|
|
16
|
+
settings :dynamic_instrumentation do
|
|
17
|
+
option :enabled do |o|
|
|
18
|
+
o.type :bool
|
|
19
|
+
# The environment variable has an "internal" prefix so that
|
|
20
|
+
# any customers that have the "proper" environment variable
|
|
21
|
+
# turned on (i.e. DD_DYNAMIC_INSTRUMENTATION_ENABLED)
|
|
22
|
+
# do not enable Ruby DI until the latter is ready for
|
|
23
|
+
# customer testing.
|
|
24
|
+
o.env "DD_DYNAMIC_INSTRUMENTATION_ENABLED"
|
|
25
|
+
o.default false
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# An array of variable and key names to redact in addition to
|
|
29
|
+
# the built-in list of identifiers.
|
|
30
|
+
#
|
|
31
|
+
# The names will be normalized by removing the following
|
|
32
|
+
# symbols: _, -, @, $, and then matched to the complete
|
|
33
|
+
# variable or key name while ignoring the case.
|
|
34
|
+
# For example, specifying pass_word will match password and
|
|
35
|
+
# PASSWORD, and specifying PASSWORD will match pass_word.
|
|
36
|
+
# Note that, while the at sign (@) is used in Ruby to refer
|
|
37
|
+
# to instance variables, it does not have any significance
|
|
38
|
+
# for this setting (and is removed before matching identifiers).
|
|
39
|
+
option :redacted_identifiers do |o|
|
|
40
|
+
o.env "DD_DYNAMIC_INSTRUMENTATION_REDACTED_IDENTIFIERS"
|
|
41
|
+
o.env_parser do |value|
|
|
42
|
+
value&.split(",")&.map(&:strip)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
o.type :array
|
|
46
|
+
o.default []
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# An array of variable and key names to exclude from the
|
|
50
|
+
# built-in redaction list.
|
|
51
|
+
#
|
|
52
|
+
# This allows users to capture values of variables that would
|
|
53
|
+
# otherwise be redacted by the default identifier list.
|
|
54
|
+
# For example, if an application has a "session" variable
|
|
55
|
+
# that does not contain sensitive data, "session" can be added
|
|
56
|
+
# to this list to exclude it from redaction.
|
|
57
|
+
#
|
|
58
|
+
# The names will be normalized the same way as redacted_identifiers,
|
|
59
|
+
# by removing the following symbols: _, -, @, $, and then matched
|
|
60
|
+
# against the complete variable or key name while ignoring the case.
|
|
61
|
+
option :redaction_excluded_identifiers do |o|
|
|
62
|
+
o.env "DD_DYNAMIC_INSTRUMENTATION_REDACTION_EXCLUDED_IDENTIFIERS"
|
|
63
|
+
o.env_parser do |value|
|
|
64
|
+
value&.split(",")&.map(&:strip)
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
o.type :array
|
|
68
|
+
o.default []
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
# An array of class names, values of which will be redacted from
|
|
72
|
+
# dynamic instrumentation snapshots. Example: FooClass.
|
|
73
|
+
# If a name is suffixed by '*', it becomes a wildcard and
|
|
74
|
+
# instances of any class whose name begins with the specified
|
|
75
|
+
# prefix will be redacted (example: Foo*).
|
|
76
|
+
#
|
|
77
|
+
# The names must all be fully-qualified, if any prefix of a
|
|
78
|
+
# class name is configured to be redacted, the value will be
|
|
79
|
+
# subject to redaction. For example, if Foo* is in the
|
|
80
|
+
# redacted class name list, instances of Foo, FooBar,
|
|
81
|
+
# Foo::Bar are all subject to redaction, but Bar::Foo will
|
|
82
|
+
# not be subject to redaction.
|
|
83
|
+
#
|
|
84
|
+
# Leading double-colon is permitted but has no effect,
|
|
85
|
+
# because the names are always considered to be fully-qualified.
|
|
86
|
+
# For example, adding ::Foo to the list will redact instances
|
|
87
|
+
# of Foo.
|
|
88
|
+
#
|
|
89
|
+
# Trailing colons should not be used because they will trigger
|
|
90
|
+
# exact match behavior but Ruby class names do not have
|
|
91
|
+
# trailing colons. For example, Foo:: will not cause anything
|
|
92
|
+
# to be redacted. Use Foo::* to redact all classes under
|
|
93
|
+
# the Foo module.
|
|
94
|
+
option :redacted_type_names do |o|
|
|
95
|
+
o.env "DD_DYNAMIC_INSTRUMENTATION_REDACTED_TYPES"
|
|
96
|
+
o.env_parser do |value|
|
|
97
|
+
value&.split(",")&.map(&:strip)
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
o.type :array
|
|
101
|
+
o.default []
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
# Maximum number of object or collection traversals that
|
|
105
|
+
# will be permitted when serializing captured values.
|
|
106
|
+
option :max_capture_depth do |o|
|
|
107
|
+
o.type :int
|
|
108
|
+
o.default 3
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# Maximum number of collection (Array and Hash) elements
|
|
112
|
+
# that will be captured. Arrays and hashes that have more
|
|
113
|
+
# elements will be truncated to this many elements.
|
|
114
|
+
option :max_capture_collection_size do |o|
|
|
115
|
+
o.type :int
|
|
116
|
+
o.default 100
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
# Strings longer than this length will be truncated to this
|
|
120
|
+
# length in dynamic instrumentation snapshots.
|
|
121
|
+
#
|
|
122
|
+
# Note that while all values are stringified during
|
|
123
|
+
# serialization, only values which are originally instances
|
|
124
|
+
# of the String class are subject to this length limit.
|
|
125
|
+
option :max_capture_string_length do |o|
|
|
126
|
+
o.type :int
|
|
127
|
+
o.default 255
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
# Maximim number of attributes that will be captured for
|
|
131
|
+
# a single non-primitive value.
|
|
132
|
+
option :max_capture_attribute_count do |o|
|
|
133
|
+
o.type :int
|
|
134
|
+
o.default 20
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
# Settings in the 'internal' group are for internal Datadog
|
|
138
|
+
# use only, and are needed to test dynamic instrumentation or
|
|
139
|
+
# experiment with features not released to customers.
|
|
140
|
+
settings :internal do
|
|
141
|
+
# This option instructs dynamic instrumentation to use
|
|
142
|
+
# untargeted trace points when installing line probes and
|
|
143
|
+
# code tracking is not active.
|
|
144
|
+
# WARNING: untargeted trace points carry a massive performance
|
|
145
|
+
# penalty for the entire file in which a line probe is placed.
|
|
146
|
+
#
|
|
147
|
+
# If this option is set to false, which is the default,
|
|
148
|
+
# dynamic instrumentation will add probes that reference
|
|
149
|
+
# unknown files to the list of pending probes, and when
|
|
150
|
+
# the respective files are loaded, the line probes will be
|
|
151
|
+
# installed using targeted trace points. If the file in
|
|
152
|
+
# question is already loaded when the probe is received
|
|
153
|
+
# (for example, it is in a third-party library loaded during
|
|
154
|
+
# application boot), and code tracking was not active when
|
|
155
|
+
# the file was loaded, such files will not be instrumentable
|
|
156
|
+
# via line probes.
|
|
157
|
+
#
|
|
158
|
+
# If this option is set to true, dynamic instrumentation will
|
|
159
|
+
# install untargeted trace points for all line probes,
|
|
160
|
+
# regardless of whether the referenced file is loaded.
|
|
161
|
+
# This permits instrumenting code which was loaded prior to
|
|
162
|
+
# code tracking being activated and instrumenting lines when
|
|
163
|
+
# code tracking is not activated at all. However, untargeted
|
|
164
|
+
# trace points are extremely slow and will greatly degrade
|
|
165
|
+
# performance of *all* code executed while they are installed,
|
|
166
|
+
# not just the instrumentation target.
|
|
167
|
+
option :untargeted_trace_points do |o|
|
|
168
|
+
o.type :bool
|
|
169
|
+
o.default false
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
# If true, all of the catch-all rescue blocks in DI
|
|
173
|
+
# will propagate the exceptions onward.
|
|
174
|
+
# WARNING: for internal Datadog use only - this will break
|
|
175
|
+
# the DI product and potentially the library in general in
|
|
176
|
+
# a multitude of ways, cause resource leakage, permanent
|
|
177
|
+
# performance decreases, etc.
|
|
178
|
+
option :propagate_all_exceptions do |o|
|
|
179
|
+
o.type :bool
|
|
180
|
+
o.default false
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
# Minimum interval, in seconds, between probe status and
|
|
184
|
+
# snapshot submissions to the agent. Probe notifier worker will
|
|
185
|
+
# batch together payloads submitted during each interval.
|
|
186
|
+
# A longer interval reduces the overhead imposed by dynamic
|
|
187
|
+
# instrumentation on the application, but also increases the
|
|
188
|
+
# time when application code cannot run (when the batches are
|
|
189
|
+
# being sent out by the probe notifier worker) and creates a
|
|
190
|
+
# possibility of dropping payloads if the queue gets too long.
|
|
191
|
+
option :min_send_interval do |o|
|
|
192
|
+
o.type :float
|
|
193
|
+
o.default 3
|
|
194
|
+
end
|
|
195
|
+
|
|
196
|
+
# Number of snapshots that can be stored in the probe
|
|
197
|
+
# notifier worker queue. Larger capacity runs the risk of
|
|
198
|
+
# creating snapshots that exceed the agent's request size
|
|
199
|
+
# limit. Smaller capacity increases the risk of dropping
|
|
200
|
+
# snapshots.
|
|
201
|
+
option :snapshot_queue_capacity do |o|
|
|
202
|
+
o.type :int
|
|
203
|
+
o.default 100
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
# Enable dynamic instrumentation in development environments.
|
|
207
|
+
# Currently DI does not fully implement support for code
|
|
208
|
+
# unloading and reloading, and is not supported in
|
|
209
|
+
# non-production environments.
|
|
210
|
+
option :development do |o|
|
|
211
|
+
o.type :bool
|
|
212
|
+
o.default false
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# Enable logging of dynamic instrumentation activity.
|
|
216
|
+
# This is quite verbose.
|
|
217
|
+
option :trace_logging do |o|
|
|
218
|
+
o.type :bool
|
|
219
|
+
o.default false
|
|
220
|
+
|
|
221
|
+
# Use the same environment variable as the rest of
|
|
222
|
+
# dd-trace-rb logging for now. Could change to a
|
|
223
|
+
# dedicated environment variable in the future but
|
|
224
|
+
# will likely need a way to turn on remote config
|
|
225
|
+
# debugging (since DI uses RC for configuration).
|
|
226
|
+
o.env 'DD_TRACE_DEBUG'
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
# If the CPU time consumed by the thread performing instrumentation
|
|
230
|
+
# exceeds this amount, the offending probe will be automatically disabled.
|
|
231
|
+
# Set to nil to disable the circuit breaker.
|
|
232
|
+
# Set to zero to disable every probe after it executes once.
|
|
233
|
+
option :max_processing_time do |o|
|
|
234
|
+
o.type :float
|
|
235
|
+
o.default 0.5
|
|
236
|
+
end
|
|
237
|
+
end
|
|
238
|
+
end
|
|
239
|
+
end
|
|
240
|
+
end
|
|
241
|
+
end
|
|
7
242
|
end
|
|
8
243
|
end
|
|
9
244
|
end
|
|
10
|
-
|
|
11
|
-
require_relative "configuration/settings"
|
|
@@ -89,6 +89,11 @@ module Datadog
|
|
|
89
89
|
# from the method but from outside of the method).
|
|
90
90
|
Location = Struct.new(:path, :lineno, :label)
|
|
91
91
|
|
|
92
|
+
# Method probes can only target instance methods. The implementation uses
|
|
93
|
+
# Module#prepend with a module that defines an instance method matching the
|
|
94
|
+
# probe's target — class/singleton methods (def self.foo, module_function)
|
|
95
|
+
# are not reachable via prepend on the class itself. Line probes are
|
|
96
|
+
# unaffected since they install via TracePoint, not method dispatch.
|
|
92
97
|
def hook_method(probe, responder)
|
|
93
98
|
lock.synchronize do
|
|
94
99
|
if probe.instrumentation_module
|
|
@@ -150,7 +155,7 @@ module Datadog
|
|
|
150
155
|
rescue => nested_exc
|
|
151
156
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
152
157
|
|
|
153
|
-
instrumenter.logger.debug { "di: error in probe condition evaluation failed callback: #{nested_exc.class}: #{nested_exc}" }
|
|
158
|
+
instrumenter.logger.debug { "di: error in probe condition evaluation failed callback: #{nested_exc.class}: #{nested_exc.message}" }
|
|
154
159
|
instrumenter.telemetry&.report(nested_exc, description: "Error in probe condition evaluation failed callback")
|
|
155
160
|
end
|
|
156
161
|
else
|
|
@@ -158,7 +163,7 @@ module Datadog
|
|
|
158
163
|
|
|
159
164
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
160
165
|
|
|
161
|
-
instrumenter.logger.debug { "di: error evaluating condition without context (tracer bug?): #{exc.class}: #{exc}" }
|
|
166
|
+
instrumenter.logger.debug { "di: error evaluating condition without context (tracer bug?): #{exc.class}: #{exc.message}" }
|
|
162
167
|
instrumenter.telemetry&.report(exc, description: "Error evaluating condition without context")
|
|
163
168
|
# If execution gets here, there is probably a bug in the tracer.
|
|
164
169
|
end
|
|
@@ -245,7 +250,7 @@ module Datadog
|
|
|
245
250
|
rescue => di_exc
|
|
246
251
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
247
252
|
|
|
248
|
-
instrumenter.logger.debug { "di: unhandled exception in method probe: #{di_exc.class}: #{di_exc}" }
|
|
253
|
+
instrumenter.logger.debug { "di: unhandled exception in method probe: #{di_exc.class}: #{di_exc.message}" }
|
|
249
254
|
instrumenter.telemetry&.report(di_exc, description: "Unhandled exception in method probe")
|
|
250
255
|
end
|
|
251
256
|
|
|
@@ -337,7 +342,11 @@ module Datadog
|
|
|
337
342
|
# Steep: Complex type narrowing (before calling hook_line,
|
|
338
343
|
# we check that probe.line? is true which itself checks that probe.file is not nil)
|
|
339
344
|
# Annotation do not work here as `file` is a method on probe, not a local variable.
|
|
340
|
-
ret = code_tracker.
|
|
345
|
+
ret = if code_tracker.respond_to?(:iseq_for_line)
|
|
346
|
+
code_tracker.iseq_for_line(probe.file, line_no) # steep:ignore ArgumentTypeMismatch
|
|
347
|
+
else
|
|
348
|
+
code_tracker.iseqs_for_path_suffix(probe.file) # steep:ignore ArgumentTypeMismatch
|
|
349
|
+
end
|
|
341
350
|
unless ret
|
|
342
351
|
if permit_untargeted_trace_points
|
|
343
352
|
# Continue withoout targeting the trace point.
|
|
@@ -355,16 +364,16 @@ module Datadog
|
|
|
355
364
|
# to instrument and install the hook when the file in
|
|
356
365
|
# question is loaded (and hopefully, by then code tracking
|
|
357
366
|
# is active, otherwise the line will never be instrumented.)
|
|
358
|
-
raise_if_probe_in_loaded_features(probe)
|
|
359
|
-
raise Error::DITargetNotDefined, "File not in code tracker registry: #{probe.file}"
|
|
367
|
+
raise_if_probe_in_loaded_features(probe, line_no, code_tracker)
|
|
368
|
+
raise Error::DITargetNotDefined, "File not in code tracker registry: #{probe.file}:#{line_no}"
|
|
360
369
|
end
|
|
361
370
|
end
|
|
362
371
|
elsif !permit_untargeted_trace_points
|
|
363
372
|
# Same as previous comment, if untargeted trace points are not
|
|
364
373
|
# explicitly defined, and we do not have code tracking, do not
|
|
365
374
|
# instrument the method.
|
|
366
|
-
raise_if_probe_in_loaded_features(probe)
|
|
367
|
-
raise Error::DITargetNotDefined, "File not in code tracker registry: #{probe.file}"
|
|
375
|
+
raise_if_probe_in_loaded_features(probe, line_no, nil)
|
|
376
|
+
raise Error::DITargetNotDefined, "File not in code tracker registry: #{probe.file}:#{line_no}"
|
|
368
377
|
end
|
|
369
378
|
|
|
370
379
|
if ret
|
|
@@ -536,7 +545,7 @@ module Datadog
|
|
|
536
545
|
rescue => nested_exc
|
|
537
546
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
538
547
|
|
|
539
|
-
logger.debug { "di: error in probe condition evaluation failed callback: #{nested_exc.class}: #{nested_exc}" }
|
|
548
|
+
logger.debug { "di: error in probe condition evaluation failed callback: #{nested_exc.class}: #{nested_exc.message}" }
|
|
540
549
|
telemetry&.report(nested_exc, description: "Error in probe condition evaluation failed callback")
|
|
541
550
|
end
|
|
542
551
|
|
|
@@ -546,7 +555,7 @@ module Datadog
|
|
|
546
555
|
|
|
547
556
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
548
557
|
|
|
549
|
-
logger.debug { "di: error evaluating condition without context (tracer bug?): #{exc.class}: #{exc}" }
|
|
558
|
+
logger.debug { "di: error evaluating condition without context (tracer bug?): #{exc.class}: #{exc.message}" }
|
|
550
559
|
telemetry&.report(exc, description: "Error evaluating condition without context")
|
|
551
560
|
# If execution gets here, there is probably a bug in the tracer.
|
|
552
561
|
end
|
|
@@ -568,7 +577,7 @@ module Datadog
|
|
|
568
577
|
check_and_disable_if_exceeded(probe, responder, di_start_time)
|
|
569
578
|
rescue => exc
|
|
570
579
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
571
|
-
logger.debug { "di: unhandled exception in line trace point: #{exc.class}: #{exc}" }
|
|
580
|
+
logger.debug { "di: unhandled exception in line trace point: #{exc.class}: #{exc.message}" }
|
|
572
581
|
telemetry&.report(exc, description: "Unhandled exception in line trace point")
|
|
573
582
|
# TODO test this path
|
|
574
583
|
end
|
|
@@ -606,23 +615,34 @@ module Datadog
|
|
|
606
615
|
end
|
|
607
616
|
end
|
|
608
617
|
|
|
609
|
-
def raise_if_probe_in_loaded_features(probe)
|
|
618
|
+
def raise_if_probe_in_loaded_features(probe, line_no, code_tracker)
|
|
610
619
|
return unless probe.file
|
|
611
620
|
|
|
612
|
-
#
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
if $LOADED_FEATURES.include?(probe.file)
|
|
619
|
-
raise Error::DITargetNotInRegistry, "File loaded but is not in code tracker registry: #{probe.file}"
|
|
621
|
+
# Find the loaded path matching the probe file.
|
|
622
|
+
loaded_path = if $LOADED_FEATURES.include?(probe.file)
|
|
623
|
+
probe.file
|
|
624
|
+
else
|
|
625
|
+
# Expensive suffix check.
|
|
626
|
+
$LOADED_FEATURES.find { |path| Utils.path_matches_suffix?(path, probe.file) }
|
|
620
627
|
end
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
628
|
+
|
|
629
|
+
return unless loaded_path
|
|
630
|
+
|
|
631
|
+
# Distinguish between "no iseqs at all" and "has per-method iseqs
|
|
632
|
+
# but none cover this line".
|
|
633
|
+
has_per_method = code_tracker&.send(:instance_variable_defined?, :@per_method_registry) &&
|
|
634
|
+
code_tracker.send(:per_method_registry).key?(loaded_path)
|
|
635
|
+
|
|
636
|
+
if has_per_method
|
|
637
|
+
raise Error::DITargetNotInRegistry,
|
|
638
|
+
"File #{loaded_path} is loaded and has per-method iseqs, " \
|
|
639
|
+
"but none cover line #{line_no}. " \
|
|
640
|
+
"The line may be in file-level setup code outside any method."
|
|
641
|
+
else
|
|
642
|
+
raise Error::DITargetNotInRegistry,
|
|
643
|
+
"File #{loaded_path} is loaded but has no surviving iseqs " \
|
|
644
|
+
"(whole-file iseq was garbage collected and no per-method iseqs remain). " \
|
|
645
|
+
"Line probes cannot target this file."
|
|
626
646
|
end
|
|
627
647
|
end
|
|
628
648
|
|
|
@@ -630,7 +650,7 @@ module Datadog
|
|
|
630
650
|
def symbolize_class_name(cls_name)
|
|
631
651
|
Object.const_get(cls_name)
|
|
632
652
|
rescue NameError => exc
|
|
633
|
-
raise Error::DITargetNotDefined, "Class not defined: #{cls_name}: #{exc.class}: #{exc}"
|
|
653
|
+
raise Error::DITargetNotDefined, "Class not defined: #{cls_name}: #{exc.class}: #{exc.message}"
|
|
634
654
|
end
|
|
635
655
|
end
|
|
636
656
|
end
|
|
@@ -58,7 +58,7 @@ module Datadog
|
|
|
58
58
|
condition: cond,
|
|
59
59
|
)
|
|
60
60
|
rescue KeyError => exc
|
|
61
|
-
raise ArgumentError, "Malformed remote configuration entry for probe: #{exc.class}: #{exc}: #{config}"
|
|
61
|
+
raise ArgumentError, "Malformed remote configuration entry for probe: #{exc.class}: #{exc.message}: #{config}"
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
def build_template_segments(segments)
|
|
@@ -50,7 +50,7 @@ module Datadog
|
|
|
50
50
|
rescue => exc
|
|
51
51
|
raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
52
52
|
|
|
53
|
-
component.logger.debug { "di: unhandled exception adding #{probe.type} probe at #{probe.location} (#{probe.id}) in DI probe file loader: #{exc.class}: #{exc}" }
|
|
53
|
+
component.logger.debug { "di: unhandled exception adding #{probe.type} probe at #{probe.location} (#{probe.id}) in DI probe file loader: #{exc.class}: #{exc.message}" }
|
|
54
54
|
component.telemetry&.report(exc, description: "Unhandled exception adding probe in DI probe file loader")
|
|
55
55
|
|
|
56
56
|
# TODO test this path
|
|
@@ -64,7 +64,7 @@ module Datadog
|
|
|
64
64
|
raise
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
-
component.logger.debug { "di: unhandled exception handling a probe in DI probe file loader: #{exc.class}: #{exc}" }
|
|
67
|
+
component.logger.debug { "di: unhandled exception handling a probe in DI probe file loader: #{exc.class}: #{exc.message}" }
|
|
68
68
|
component.telemetry&.report(exc, description: "Unhandled exception handling probe in DI probe file loader")
|
|
69
69
|
end
|
|
70
70
|
rescue
|
|
@@ -30,7 +30,7 @@ module Datadog
|
|
|
30
30
|
install_pending_method_probes(tp.self)
|
|
31
31
|
rescue => exc
|
|
32
32
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
33
|
-
logger.debug { "di: unhandled exception in definition trace point: #{exc.class}: #{exc}" }
|
|
33
|
+
logger.debug { "di: unhandled exception in definition trace point: #{exc.class}: #{exc.message}" }
|
|
34
34
|
telemetry&.report(exc, description: "Unhandled exception in definition trace point")
|
|
35
35
|
# TODO test this path
|
|
36
36
|
end
|
|
@@ -133,13 +133,13 @@ module Datadog
|
|
|
133
133
|
# In "propagate all exceptions" mode we will try to instrument again.
|
|
134
134
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
135
135
|
|
|
136
|
-
logger.debug { "di: error processing probe configuration: #{exc.class}: #{exc}" }
|
|
136
|
+
logger.debug { "di: error processing probe configuration: #{exc.class}: #{exc.message}" }
|
|
137
137
|
telemetry&.report(exc, description: "Error processing probe configuration")
|
|
138
138
|
|
|
139
139
|
payload = probe_notification_builder.build_errored(probe, exc)
|
|
140
140
|
probe_notifier_worker.add_status(payload, probe: probe)
|
|
141
141
|
|
|
142
|
-
probe_repository.add_failed(probe.id, "#{exc.class}: #{exc}")
|
|
142
|
+
probe_repository.add_failed(probe.id, "#{exc.class}: #{exc.message}")
|
|
143
143
|
|
|
144
144
|
raise
|
|
145
145
|
end
|
|
@@ -164,7 +164,7 @@ module Datadog
|
|
|
164
164
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
165
165
|
# Silence all exceptions?
|
|
166
166
|
# TODO should we propagate here and rescue upstream?
|
|
167
|
-
logger.debug { "di: error removing #{probe.type} probe at #{probe.location} (#{probe.id}): #{exc.class}: #{exc}" }
|
|
167
|
+
logger.debug { "di: error removing #{probe.type} probe at #{probe.location} (#{probe.id}): #{exc.class}: #{exc.message}" }
|
|
168
168
|
telemetry&.report(exc, description: "Error removing probe")
|
|
169
169
|
end
|
|
170
170
|
end
|
|
@@ -193,13 +193,13 @@ module Datadog
|
|
|
193
193
|
rescue => exc
|
|
194
194
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
195
195
|
|
|
196
|
-
logger.debug { "di: error installing #{probe.type} probe at #{probe.location} (#{probe.id}) after class is defined: #{exc.class}: #{exc}" }
|
|
196
|
+
logger.debug { "di: error installing #{probe.type} probe at #{probe.location} (#{probe.id}) after class is defined: #{exc.class}: #{exc.message}" }
|
|
197
197
|
telemetry&.report(exc, description: "Error installing probe after class is defined")
|
|
198
198
|
|
|
199
199
|
payload = probe_notification_builder.build_errored(probe, exc)
|
|
200
200
|
probe_notifier_worker.add_status(payload, probe: probe)
|
|
201
201
|
|
|
202
|
-
probe_repository.add_failed(probe.id, "#{exc.class}: #{exc}")
|
|
202
|
+
probe_repository.add_failed(probe.id, "#{exc.class}: #{exc.message}")
|
|
203
203
|
end
|
|
204
204
|
end
|
|
205
205
|
end
|
|
@@ -95,7 +95,7 @@ module Datadog
|
|
|
95
95
|
rescue => exc
|
|
96
96
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
97
97
|
|
|
98
|
-
logger.debug { "di: error in probe notifier worker: #{exc.class}: #{exc} (at #{exc.backtrace.first})" }
|
|
98
|
+
logger.debug { "di: error in probe notifier worker: #{exc.class}: #{exc.message} (at #{exc.backtrace.first})" }
|
|
99
99
|
telemetry&.report(exc, description: "Error in probe notifier worker")
|
|
100
100
|
end
|
|
101
101
|
@lock.synchronize do
|
|
@@ -320,7 +320,7 @@ module Datadog
|
|
|
320
320
|
end
|
|
321
321
|
rescue => exc
|
|
322
322
|
raise if settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
323
|
-
logger.debug { "di: failed to send #{event_name}: #{exc.class}: #{exc} (at #{exc.backtrace.first})" }
|
|
323
|
+
logger.debug { "di: failed to send #{event_name}: #{exc.class}: #{exc.message} (at #{exc.backtrace.first})" }
|
|
324
324
|
telemetry&.report(exc, description: "Error sending #{event_type}")
|
|
325
325
|
end
|
|
326
326
|
end
|
data/lib/datadog/di/remote.rb
CHANGED
|
@@ -88,11 +88,11 @@ module Datadog
|
|
|
88
88
|
# content as errored but with a somewhat different exception
|
|
89
89
|
# message.
|
|
90
90
|
# TODO assert content state (errored for this example)
|
|
91
|
-
content.errored("Error applying dynamic instrumentation configuration: #{exc.class
|
|
91
|
+
content.errored("Error applying dynamic instrumentation configuration: #{exc.class}: #{exc.message}")
|
|
92
92
|
rescue => exc
|
|
93
93
|
raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
94
94
|
|
|
95
|
-
component.logger.debug { "di: unhandled exception adding #{probe.type} probe at #{probe.location} (#{probe.id}) in DI remote receiver: #{exc.class}: #{exc}" }
|
|
95
|
+
component.logger.debug { "di: unhandled exception adding #{probe.type} probe at #{probe.location} (#{probe.id}) in DI remote receiver: #{exc.class}: #{exc.message}" }
|
|
96
96
|
component.telemetry&.report(exc, description: "Unhandled exception adding probe in DI remote receiver")
|
|
97
97
|
|
|
98
98
|
# TODO test this path
|
|
@@ -106,7 +106,7 @@ module Datadog
|
|
|
106
106
|
# content as errored but with a somewhat different exception
|
|
107
107
|
# message.
|
|
108
108
|
# TODO assert content state (errored for this example)
|
|
109
|
-
content.errored("Error applying dynamic instrumentation configuration: #{exc.class
|
|
109
|
+
content.errored("Error applying dynamic instrumentation configuration: #{exc.class}: #{exc.message}")
|
|
110
110
|
end
|
|
111
111
|
|
|
112
112
|
# Important: even if processing fails for this probe config,
|
|
@@ -117,11 +117,11 @@ module Datadog
|
|
|
117
117
|
rescue => exc
|
|
118
118
|
raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
119
119
|
|
|
120
|
-
component.logger.debug { "di: unhandled exception handling a probe in DI remote receiver: #{exc.class}: #{exc}" }
|
|
120
|
+
component.logger.debug { "di: unhandled exception handling a probe in DI remote receiver: #{exc.class}: #{exc.message}" }
|
|
121
121
|
component.telemetry&.report(exc, description: "Unhandled exception handling probe in DI remote receiver")
|
|
122
122
|
|
|
123
123
|
# TODO assert content state (errored for this example)
|
|
124
|
-
content.errored("Error applying dynamic instrumentation configuration: #{exc.class
|
|
124
|
+
content.errored("Error applying dynamic instrumentation configuration: #{exc.class}: #{exc.message}")
|
|
125
125
|
end
|
|
126
126
|
|
|
127
127
|
# This method does not mark +previous_content+ as succeeded or errored,
|
|
@@ -136,7 +136,7 @@ module Datadog
|
|
|
136
136
|
rescue => exc
|
|
137
137
|
raise if component.settings.dynamic_instrumentation.internal.propagate_all_exceptions
|
|
138
138
|
|
|
139
|
-
component.logger.debug { "di: unhandled exception removing probes in DI remote receiver: #{exc.class}: #{exc}" }
|
|
139
|
+
component.logger.debug { "di: unhandled exception removing probes in DI remote receiver: #{exc.class}: #{exc.message}" }
|
|
140
140
|
component.telemetry&.report(exc, description: "Unhandled exception removing probes in DI remote receiver")
|
|
141
141
|
end
|
|
142
142
|
|
|
@@ -186,7 +186,7 @@ module Datadog
|
|
|
186
186
|
# surface errors so they can fix their serializers) or they may be defined
|
|
187
187
|
# internally by dd-trace-rb (in which case we need to fix them). We use
|
|
188
188
|
# WARN level to surface these errors in either case.
|
|
189
|
-
Datadog.logger.warn("DI: Custom serializer condition failed: #{e.class}: #{e}")
|
|
189
|
+
Datadog.logger.warn("DI: Custom serializer condition failed: #{e.class}: #{e.message}")
|
|
190
190
|
telemetry&.report(e, description: "Custom serializer condition failed")
|
|
191
191
|
next
|
|
192
192
|
end
|
|
@@ -81,14 +81,14 @@ module Datadog
|
|
|
81
81
|
# Serialization failed for this snapshot - report via callback
|
|
82
82
|
# This catches JSON::GeneratorError, Encoding errors, TypeError, etc.
|
|
83
83
|
probe_id = snapshot.dig(:debugger, :snapshot, :probe, :id)
|
|
84
|
-
logger.debug { "di: JSON encoding failed for snapshot (probe #{probe_id}): #{exc.class}: #{exc}" }
|
|
84
|
+
logger.debug { "di: JSON encoding failed for snapshot (probe #{probe_id}): #{exc.class}: #{exc.message}" }
|
|
85
85
|
telemetry&.report(exc, description: "JSON encoding failed for snapshot")
|
|
86
86
|
|
|
87
87
|
if probe_id
|
|
88
88
|
begin
|
|
89
89
|
on_serialization_error.call(probe_id, exc)
|
|
90
90
|
rescue => callback_exc
|
|
91
|
-
logger.debug { "di: error in serialization error callback for probe #{probe_id}: #{callback_exc.class}: #{callback_exc}" }
|
|
91
|
+
logger.debug { "di: error in serialization error callback for probe #{probe_id}: #{callback_exc.class}: #{callback_exc.message}" }
|
|
92
92
|
telemetry&.report(callback_exc, description: "Error in serialization error callback")
|
|
93
93
|
end
|
|
94
94
|
end
|
|
@@ -110,7 +110,7 @@ module Datadog
|
|
|
110
110
|
begin
|
|
111
111
|
send_input_chunk(chunked_payload, serialized_tags)
|
|
112
112
|
rescue => exc
|
|
113
|
-
logger.debug { "di: failed to send snapshot chunk: #{exc.class}: #{exc} (at #{exc.backtrace.first})" }
|
|
113
|
+
logger.debug { "di: failed to send snapshot chunk: #{exc.class}: #{exc.message} (at #{exc.backtrace.first})" }
|
|
114
114
|
telemetry&.report(exc, description: "Error sending snapshot chunk")
|
|
115
115
|
end
|
|
116
116
|
end
|
|
@@ -1,11 +1,64 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require_relative 'ext'
|
|
4
|
+
|
|
3
5
|
module Datadog
|
|
4
6
|
module ErrorTracking
|
|
5
7
|
# Configuration for ErrorTracking
|
|
6
8
|
module Configuration
|
|
9
|
+
# Settings
|
|
10
|
+
module Settings
|
|
11
|
+
def self.extended(base)
|
|
12
|
+
base = base.singleton_class unless base.is_a?(Class)
|
|
13
|
+
add_settings!(base)
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def self.add_settings!(base)
|
|
17
|
+
base.class_eval do
|
|
18
|
+
# Error Tracking specific configurations.
|
|
19
|
+
# @public_api
|
|
20
|
+
settings :error_tracking do
|
|
21
|
+
# Enable automatic reporting of handled errors and defines the scope
|
|
22
|
+
# for which to report errors: user code, gems, or both. Possible
|
|
23
|
+
# values are: all | user | third_party.
|
|
24
|
+
#
|
|
25
|
+
# @default 'DD_ERROR_TRACKING_HANDLED_ERRORS' environment variable, otherwise `nil`
|
|
26
|
+
# @return [String, nil]
|
|
27
|
+
option :handled_errors do |o|
|
|
28
|
+
o.type :string, nilable: true
|
|
29
|
+
o.default Ext::DEFAULT_HANDLED_ERRORS
|
|
30
|
+
o.env Ext::ENV_HANDLED_ERRORS
|
|
31
|
+
o.setter do |value|
|
|
32
|
+
next value if Ext::VALID_HANDLED_ERRORS.include?(value)
|
|
33
|
+
|
|
34
|
+
unless value.nil?
|
|
35
|
+
Datadog.logger.warn(
|
|
36
|
+
"Invalid handled errors scope: #{value}. " \
|
|
37
|
+
"Supported values are: #{Ext::VALID_HANDLED_ERRORS.join(" | ")}. " \
|
|
38
|
+
'Deactivating the feature.'
|
|
39
|
+
)
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
Ext::DEFAULT_HANDLED_ERRORS
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Enable automatic reporting of handled errors and specify what files should be
|
|
47
|
+
# instrumented. The value is a list of comma separated paths, filenames or gem names.
|
|
48
|
+
# The paths can be absolute, starting with '/' or relative to directory in which the program
|
|
49
|
+
# is launched, starting with './'.
|
|
50
|
+
#
|
|
51
|
+
# @default 'DD_ERROR_TRACKING_HANDLED_ERRORS_MODULES' environment variable, otherwise `nil`
|
|
52
|
+
# @return [String, nil]
|
|
53
|
+
option :handled_errors_include do |o|
|
|
54
|
+
o.type :array
|
|
55
|
+
o.default []
|
|
56
|
+
o.env Ext::ENV_HANDLED_ERRORS_INCLUDE
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
7
62
|
end
|
|
8
63
|
end
|
|
9
64
|
end
|
|
10
|
-
|
|
11
|
-
require_relative 'configuration/settings'
|