We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is_crash
1 parent 016f5ac commit 72499cdCopy full SHA for 72499cd
lib/datadog/core/crashtracking/tag_builder.rb
@@ -23,6 +23,7 @@ def self.call(settings)
23
'version' => settings.version,
24
'git.repository_url' => Environment::Git.git_repository_url,
25
'git.commit.sha' => Environment::Git.git_commit_sha,
26
+ 'is_crash' => true
27
}.compact
28
29
# Make sure everything is an utf-8 string, to avoid encoding issues in downstream
spec/datadog/core/crashtracking/tag_builder_spec.rb
@@ -15,6 +15,7 @@
15
'runtime-id' => Datadog::Core::Environment::Identity.id,
16
'runtime_platform' => RUBY_PLATFORM,
17
'runtime_version' => RUBY_VERSION,
18
+ 'is_crash' => 'true',
19
)
20
end
21
0 commit comments