Skip to content

[Debugger] Symdb tests #3761

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jan 23, 2025
Merged
2 changes: 2 additions & 0 deletions manifests/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ tests/:
Test_Debugger_Probe_Snaphots: irrelevant
test_debugger_probe_status.py:
Test_Debugger_Probe_Statuses: irrelevant
test_debugger_symdb.py:
Test_Debugger_SymDb: irrelevant
integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
2 changes: 2 additions & 0 deletions manifests/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@ tests/:
Test_Debugger_Probe_Snaphots: v2.53.0
test_debugger_probe_status.py:
Test_Debugger_Probe_Statuses: v2.53.0
test_debugger_symdb.py:
Test_Debugger_SymDb: v2.53.0
integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
2 changes: 2 additions & 0 deletions manifests/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,8 @@ tests/:
Test_Debugger_Probe_Snaphots: missing_feature (feature not implented)
test_debugger_probe_status.py:
Test_Debugger_Probe_Statuses: missing_feature (feature not implented)
test_debugger_symdb.py:
Test_Debugger_SymDb: missing_feature (feature not implented)
integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
2 changes: 2 additions & 0 deletions manifests/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1496,6 +1496,8 @@ tests/:
spring-boot-undertow: v1.38.0
spring-boot-wildfly: v1.38.0
uds-spring-boot: v1.38.0
test_debugger_symdb.py:
Test_Debugger_SymDb: v1.38.0
integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
2 changes: 2 additions & 0 deletions manifests/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,8 @@ tests/:
Test_Debugger_Probe_Statuses:
"*": irrelevant
express4: v5.32.0
test_debugger_symdb.py:
Test_Debugger_SymDb: missing_feature (feature not implented)
integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
2 changes: 2 additions & 0 deletions manifests/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ tests/:
Test_Debugger_Probe_Snaphots: irrelevant
test_debugger_probe_status.py:
Test_Debugger_Probe_Statuses: irrelevant
test_debugger_symdb.py:
Test_Debugger_SymDb: irrelevant
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this irrelevant and not missing feature?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmmm, you're right, I aligned with other definitions for this library.
I will fix it in separate PR.

integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
2 changes: 2 additions & 0 deletions manifests/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,8 @@ tests/:
flask-poc: v2.11.0
uds-flask: v2.11.0
uwsgi-poc: v2.11.0
test_debugger_symdb.py:
Test_Debugger_SymDb: v2.11.0
integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
4 changes: 4 additions & 0 deletions manifests/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@ tests/:
Test_Debugger_Probe_Statuses:
"*": irrelevant
rails70: v2.8.0
test_debugger_symdb.py:
Test_Debugger_SymDb:
"*": irrelevant
rails70: missing_feature (feature not implemented)
integrations/:
crossed_integrations/:
test_kafka.py:
Expand Down
43 changes: 43 additions & 0 deletions tests/debugger/test_debugger_symdb.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Unless explicitly stated otherwise all files in this repository are licensed under the the Apache License Version 2.0.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2021 Datadog, Inc.

import json
import tests.debugger.utils as debugger
from utils import features, scenarios, bug, context
from utils import remote_config as rc


@features.debugger
@scenarios.debugger_symdb
class Test_Debugger_SymDb(debugger._Base_Debugger_Test):
############ setup ############
def _setup(self):
self.rc_state = rc.send_symdb_command()

############ assert ############
def _assert(self):
self.collect()
self.assert_rc_state_not_error()
self._assert_symbols_uploaded()

def _assert_symbols_uploaded(self):
assert len(self.symbols) > 0, "No symbol files were found"

errors = []
for symbol in self.symbols:
error = symbol.get("system-tests-error")
if error is not None:
errors.append(
f"Error is: {error}, exported to file: {symbol.get('system-tests-file-path', 'No file path')}"
)

assert not errors, "Found system-tests-errors:\n" + "\n".join(f"- {err}" for err in errors)

############ test ############
def setup_symdb_upload(self):
self._setup()

@bug(context.library == "dotnet", reason="DEBUG-3298")
def test_symdb_upload(self):
self._assert()
21 changes: 21 additions & 0 deletions tests/debugger/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
import os
import os.path
import uuid
import gzip
import io

from utils import interfaces, remote_config, weblog, context
from utils.tools import logger
Expand All @@ -17,6 +19,7 @@
_DEBUGGER_PATH = "/api/v2/debugger"
_LOGS_PATH = "/api/v2/logs"
_TRACES_PATH = "/api/v0.2/traces"
_SYMBOLS_PATH = "/symdb/v1/input"

_CUR_DIR = os.path.dirname(os.path.abspath(__file__))

Expand Down Expand Up @@ -65,6 +68,7 @@ class _Base_Debugger_Test:
probe_diagnostics = {}
probe_snapshots = {}
probe_spans = {}
symbols = []

rc_state = None
weblog_responses = []
Expand Down Expand Up @@ -261,6 +265,7 @@ def collect(self):
self._collect_probe_diagnostics()
self._collect_snapshots()
self._collect_spans()
self._collect_symbols()

def _collect_probe_diagnostics(self):
def _read_data():
Expand Down Expand Up @@ -384,6 +389,22 @@ def _get_spans_hash(self):

self.probe_spans = _get_spans_hash(self)

def _collect_symbols(self):
def _get_symbols():
result = []
raw_data = list(interfaces.library.get_data(_SYMBOLS_PATH))

for data in raw_data:
if isinstance(data, dict) and "request" in data:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If my not wrong, data is always a dict, and request will always be in data.

contents = data["request"].get("content", [])
for content in contents:
if isinstance(content, dict) and "system-tests-filename" in content:
result.append(content)

return result

self.symbols = _get_symbols()

def get_tracer(self):
if not _Base_Debugger_Test.tracer:
_Base_Debugger_Test.tracer = {
Expand Down
60 changes: 30 additions & 30 deletions tests/remote_config/rc_expected_requests_live_debugging.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 316,
"length": 360,
"hashes": [
{
"algorithm": "sha256",
"hash": "bbbaf6ac0011c040d5c15287f461b0b7fd39552958d546e9b41c8c07442634da"
"hash": "6daaa0eb13996d340d99983bb014ef17453bad39edf19041f24a87a159ff94fe"
}
]
}
Expand All @@ -68,11 +68,11 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 321,
"length": 365,
"hashes": [
{
"algorithm": "sha256",
"hash": "4180218218444e1e126a4e4ec41a475b89813d27537fba5c92662fe3510b951d"
"hash": "32c04cce9cd0820470f5b2d6d92609d51ad3c5619fa947fdc91445f641d977dc"
}
]
}
Expand Down Expand Up @@ -113,21 +113,21 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 316,
"length": 360,
"hashes": [
{
"algorithm": "sha256",
"hash": "bbbaf6ac0011c040d5c15287f461b0b7fd39552958d546e9b41c8c07442634da"
"hash": "6daaa0eb13996d340d99983bb014ef17453bad39edf19041f24a87a159ff94fe"
}
]
},
{
"path": "datadog/2/LIVE_DEBUGGING/logProbe_22953c88-eadc-4f9a-aa0f-7f6243f4bf8a/config",
"length": 209,
"length": 239,
"hashes": [
{
"algorithm": "sha256",
"hash": "aec211179c64eff2acbeec327a6fb2866350882bddb9fed066cdbb3423ceffd0"
"hash": "8176095e451a5f4d49db40e5eadf7d79b0ca6956cf28c83f87d18f4d66ea2583"
}
]
}
Expand Down Expand Up @@ -158,21 +158,21 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 316,
"length": 360,
"hashes": [
{
"algorithm": "sha256",
"hash": "bbbaf6ac0011c040d5c15287f461b0b7fd39552958d546e9b41c8c07442634da"
"hash": "6daaa0eb13996d340d99983bb014ef17453bad39edf19041f24a87a159ff94fe"
}
]
},
{
"path": "datadog/2/LIVE_DEBUGGING/spanProbe_kepf0cf2-9top-45cf-9f39-59installed/config",
"length": 164,
"length": 188,
"hashes": [
{
"algorithm": "sha256",
"hash": "8e897cbaccc2d604fbd5f4c910512e9c5d2ac7fee1f984929bf93e596d7a7461"
"hash": "d22df7cf36e9f2b0134c4f6535a7340b9a4435876b79280f91d80942c9562b5b"
}
]
}
Expand Down Expand Up @@ -208,31 +208,31 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/spanProbe_kepf0cf2-9top-45cf-9f39-59installed/config",
"length": 164,
"length": 188,
"hashes": [
{
"algorithm": "sha256",
"hash": "8e897cbaccc2d604fbd5f4c910512e9c5d2ac7fee1f984929bf93e596d7a7461"
"hash": "d22df7cf36e9f2b0134c4f6535a7340b9a4435876b79280f91d80942c9562b5b"
}
]
},
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 321,
"length": 365,
"hashes": [
{
"algorithm": "sha256",
"hash": "3712620153e0f4d41f03ca93fc8618b9f6714918a1f117cf110f25e6131eef52"
"hash": "4f12b33894fd7178f2464d3fc2c63223c3ee2a29a5cf0936de60ceee88fd0656"
}
]
},
{
"path": "datadog/2/LIVE_DEBUGGING/logProbe_22953c88-eadc-4f9a-aa0f-7f6243f4bf8a/config",
"length": 209,
"length": 239,
"hashes": [
{
"algorithm": "sha256",
"hash": "aec211179c64eff2acbeec327a6fb2866350882bddb9fed066cdbb3423ceffd0"
"hash": "8176095e451a5f4d49db40e5eadf7d79b0ca6956cf28c83f87d18f4d66ea2583"
}
]
}
Expand Down Expand Up @@ -263,21 +263,21 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 316,
"length": 360,
"hashes": [
{
"algorithm": "sha256",
"hash": "bbbaf6ac0011c040d5c15287f461b0b7fd39552958d546e9b41c8c07442634da"
"hash": "6daaa0eb13996d340d99983bb014ef17453bad39edf19041f24a87a159ff94fe"
}
]
},
{
"path": "datadog/2/LIVE_DEBUGGING/logProbe_22953c88-eadc-4f9a-aa0f-7f6243f4bf8a/config",
"length": 209,
"length": 239,
"hashes": [
{
"algorithm": "sha256",
"hash": "aec211179c64eff2acbeec327a6fb2866350882bddb9fed066cdbb3423ceffd0"
"hash": "8176095e451a5f4d49db40e5eadf7d79b0ca6956cf28c83f87d18f4d66ea2583"
}
]
}
Expand Down Expand Up @@ -308,21 +308,21 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 316,
"length": 360,
"hashes": [
{
"algorithm": "sha256",
"hash": "bbbaf6ac0011c040d5c15287f461b0b7fd39552958d546e9b41c8c07442634da"
"hash": "6daaa0eb13996d340d99983bb014ef17453bad39edf19041f24a87a159ff94fe"
}
]
},
{
"path": "datadog/2/LIVE_DEBUGGING/logProbe_22953c88-eadc-4f9a-aa0f-7f6243f4bf8a/config",
"length": 209,
"length": 239,
"hashes": [
{
"algorithm": "sha256",
"hash": "aec211179c64eff2acbeec327a6fb2866350882bddb9fed066cdbb3423ceffd0"
"hash": "8176095e451a5f4d49db40e5eadf7d79b0ca6956cf28c83f87d18f4d66ea2583"
}
]
}
Expand Down Expand Up @@ -353,21 +353,21 @@
"cached_target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/metricProbe_33a64d99-fbed-5eab-bb10-80735405c09b/config",
"length": 316,
"length": 360,
"hashes": [
{
"algorithm": "sha256",
"hash": "bbbaf6ac0011c040d5c15287f461b0b7fd39552958d546e9b41c8c07442634da"
"hash": "6daaa0eb13996d340d99983bb014ef17453bad39edf19041f24a87a159ff94fe"
}
]
},
{
"path": "datadog/2/LIVE_DEBUGGING/logProbe_22953c88-eadc-4f9a-aa0f-7f6243f4bf8a/config",
"length": 209,
"length": 239,
"hashes": [
{
"algorithm": "sha256",
"hash": "aec211179c64eff2acbeec327a6fb2866350882bddb9fed066cdbb3423ceffd0"
"hash": "8176095e451a5f4d49db40e5eadf7d79b0ca6956cf28c83f87d18f4d66ea2583"
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions tests/test_the_test/test_remote_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@scenarios.test_the_test
def test_debugger_command_none():
expected = {
"targets": "eyJzaWduZWQiOiB7Il90eXBlIjogInRhcmdldHMiLCAiY3VzdG9tIjogeyJvcGFxdWVfYmFja2VuZF9zdGF0ZSI6ICJleUptYjI4aU9pQWlZbUZ5SW4wPSJ9LCAiZXhwaXJlcyI6ICIzMDAwLTAxLTAxVDAwOjAwOjAwWiIsICJzcGVjX3ZlcnNpb24iOiAiMS4wIiwgInRhcmdldHMiOiB7fSwgInZlcnNpb24iOiAwfSwgInNpZ25hdHVyZXMiOiBbeyJrZXlpZCI6ICJlZDc2NzJjOWEyNGFiZGE3ODg3MmVlMzJlZTcxYzdjYjFkNTIzNWU4ZGI0ZWNiZjFjYTI4YjljNTBlYjc1ZDllIiwgInNpZyI6ICJlMjI3OWE1NTRkNTI1MDNmNWJkNjhlMGE5OTEwYzdlOTBjOWJiODE3NDRmZTljODgyNGVhMzczN2IyNzlkOWU2OWIzY2U1ZjRiNDYzYzQwMmViZTM0OTY0ZmI3YTY5NjI1ZWIwZTkxZDNkZGJkMzkyY2M4YjMyMTAzNzNkOWIwZiJ9XX0=",
"targets": "ewogICJzaWduZWQiOiB7CiAgICAiX3R5cGUiOiAidGFyZ2V0cyIsCiAgICAiY3VzdG9tIjogewogICAgICAib3BhcXVlX2JhY2tlbmRfc3RhdGUiOiAiZXlKbWIyOGlPaUFpWW1GeUluMD0iCiAgICB9LAogICAgImV4cGlyZXMiOiAiMzAwMC0wMS0wMVQwMDowMDowMFoiLAogICAgInNwZWNfdmVyc2lvbiI6ICIxLjAiLAogICAgInRhcmdldHMiOiB7fSwKICAgICJ2ZXJzaW9uIjogMAogIH0sCiAgInNpZ25hdHVyZXMiOiBbCiAgICB7CiAgICAgICJrZXlpZCI6ICJlZDc2NzJjOWEyNGFiZGE3ODg3MmVlMzJlZTcxYzdjYjFkNTIzNWU4ZGI0ZWNiZjFjYTI4YjljNTBlYjc1ZDllIiwKICAgICAgInNpZyI6ICJlMjI3OWE1NTRkNTI1MDNmNWJkNjhlMGE5OTEwYzdlOTBjOWJiODE3NDRmZTljODgyNGVhMzczN2IyNzlkOWU2OWIzY2U1ZjRiNDYzYzQwMmViZTM0OTY0ZmI3YTY5NjI1ZWIwZTkxZDNkZGJkMzkyY2M4YjMyMTAzNzNkOWIwZiIKICAgIH0KICBdCn0=",
"target_files": [],
"client_configs": [],
}
Expand All @@ -29,11 +29,11 @@ def test_debugger_command_one_probe():
]

expected = {
"targets": "eyJzaWduZWQiOiB7Il90eXBlIjogInRhcmdldHMiLCAiY3VzdG9tIjogeyJvcGFxdWVfYmFja2VuZF9zdGF0ZSI6ICJleUptYjI4aU9pQWlZbUZ5SW4wPSJ9LCAiZXhwaXJlcyI6ICIzMDAwLTAxLTAxVDAwOjAwOjAwWiIsICJzcGVjX3ZlcnNpb24iOiAiMS4wIiwgInRhcmdldHMiOiB7ImRhdGFkb2cvMi9MSVZFX0RFQlVHR0lORy9sb2dQcm9iZV9sb2cxNzBhYS1hY2RhLTQ0NTMtOTExMS0xNDc4YTZtZXRob2QvY29uZmlnIjogeyJjdXN0b20iOiB7InYiOiAxfSwgImhhc2hlcyI6IHsic2hhMjU2IjogIjM1ZTQ3NzRhZmQzMWVhYWExMzAwNGU3MmU1ZTUyMWI3OGU3MGMxYTY5ZDBmZDI1MzI1NmU2ZTIwNTNkOGNkNjAifSwgImxlbmd0aCI6IDI0OX19LCAidmVyc2lvbiI6IDF9LCAic2lnbmF0dXJlcyI6IFt7ImtleWlkIjogImVkNzY3MmM5YTI0YWJkYTc4ODcyZWUzMmVlNzFjN2NiMWQ1MjM1ZThkYjRlY2JmMWNhMjhiOWM1MGViNzVkOWUiLCAic2lnIjogImUyMjc5YTU1NGQ1MjUwM2Y1YmQ2OGUwYTk5MTBjN2U5MGM5YmI4MTc0NGZlOWM4ODI0ZWEzNzM3YjI3OWQ5ZTY5YjNjZTVmNGI0NjNjNDAyZWJlMzQ5NjRmYjdhNjk2MjVlYjBlOTFkM2RkYmQzOTJjYzhiMzIxMDM3M2Q5YjBmIn1dfQ==",
"targets": "ewogICJzaWduZWQiOiB7CiAgICAiX3R5cGUiOiAidGFyZ2V0cyIsCiAgICAiY3VzdG9tIjogewogICAgICAib3BhcXVlX2JhY2tlbmRfc3RhdGUiOiAiZXlKbWIyOGlPaUFpWW1GeUluMD0iCiAgICB9LAogICAgImV4cGlyZXMiOiAiMzAwMC0wMS0wMVQwMDowMDowMFoiLAogICAgInNwZWNfdmVyc2lvbiI6ICIxLjAiLAogICAgInRhcmdldHMiOiB7CiAgICAgICJkYXRhZG9nLzIvTElWRV9ERUJVR0dJTkcvbG9nUHJvYmVfbG9nMTcwYWEtYWNkYS00NDUzLTkxMTEtMTQ3OGE2bWV0aG9kL2NvbmZpZyI6IHsKICAgICAgICAiY3VzdG9tIjogewogICAgICAgICAgInYiOiAxCiAgICAgICAgfSwKICAgICAgICAiaGFzaGVzIjogewogICAgICAgICAgInNoYTI1NiI6ICJlY2YzNDdmYjBlYTQ2MTZmZTU1NzZjMjI4M2FhZjU2ZTI2MWZiY2NkMzE2MmJhMjFmM2NmZDA0MmMzZWM5YWM1IgogICAgICAgIH0sCiAgICAgICAgImxlbmd0aCI6IDI4OQogICAgICB9CiAgICB9LAogICAgInZlcnNpb24iOiAxCiAgfSwKICAic2lnbmF0dXJlcyI6IFsKICAgIHsKICAgICAgImtleWlkIjogImVkNzY3MmM5YTI0YWJkYTc4ODcyZWUzMmVlNzFjN2NiMWQ1MjM1ZThkYjRlY2JmMWNhMjhiOWM1MGViNzVkOWUiLAogICAgICAic2lnIjogImUyMjc5YTU1NGQ1MjUwM2Y1YmQ2OGUwYTk5MTBjN2U5MGM5YmI4MTc0NGZlOWM4ODI0ZWEzNzM3YjI3OWQ5ZTY5YjNjZTVmNGI0NjNjNDAyZWJlMzQ5NjRmYjdhNjk2MjVlYjBlOTFkM2RkYmQzOTJjYzhiMzIxMDM3M2Q5YjBmIgogICAgfQogIF0KfQ==",
"target_files": [
{
"path": "datadog/2/LIVE_DEBUGGING/logProbe_log170aa-acda-4453-9111-1478a6method/config",
"raw": "eyJsYW5ndWFnZSI6ICIiLCAiaWQiOiAibG9nMTcwYWEtYWNkYS00NDUzLTkxMTEtMTQ3OGE2bWV0aG9kIiwgInR5cGUiOiAiTE9HX1BST0JFIiwgIndoZXJlIjogeyJ0eXBlTmFtZSI6ICJBQ1RVQUxfVFlQRV9OQU1FIiwgIm1ldGhvZE5hbWUiOiAiUGlpIiwgInNvdXJjZUZpbGUiOiBudWxsfSwgImV2YWx1YXRlQXQiOiAiRVhJVCIsICJjYXB0dXJlU25hcHNob3QiOiB0cnVlLCAiY2FwdHVyZSI6IHsibWF4RmllbGRDb3VudCI6IDIwMH19",
"raw": "ewogICJsYW5ndWFnZSI6ICIiLAogICJpZCI6ICJsb2cxNzBhYS1hY2RhLTQ0NTMtOTExMS0xNDc4YTZtZXRob2QiLAogICJ0eXBlIjogIkxPR19QUk9CRSIsCiAgIndoZXJlIjogewogICAgInR5cGVOYW1lIjogIkFDVFVBTF9UWVBFX05BTUUiLAogICAgIm1ldGhvZE5hbWUiOiAiUGlpIiwKICAgICJzb3VyY2VGaWxlIjogbnVsbAogIH0sCiAgImV2YWx1YXRlQXQiOiAiRVhJVCIsCiAgImNhcHR1cmVTbmFwc2hvdCI6IHRydWUsCiAgImNhcHR1cmUiOiB7CiAgICAibWF4RmllbGRDb3VudCI6IDIwMAogIH0KfQ==",
}
],
"client_configs": ["datadog/2/LIVE_DEBUGGING/logProbe_log170aa-acda-4453-9111-1478a6method/config"],
Expand Down
Loading
Loading