01 Jul 2026 06:08 AM
Hello Team,
Is there any possible Way to fetch list of users who are changing frequency or monitors or disabling synthetic monitoring etc for NAM monitors. we want to see who(user) changed NAM monitors etc details. is it possible to fetch that data. we have tried with DQL query but we can see only HTTP and Browser monitors but it is out of our scope. could you please help us is there any possible way if yes please share us the guideliness so that we will check from our side.
Regards,
sravani neriyanur
01 Jul 2026 08:19 AM
Hi,
I would check audit log in case that settings changes appears.
Best regards
01 Jul 2026 03:14 PM
As @AntonPineiro suggested use the audit logs.
https://docs.dynatrace.com/docs/shortlink/audit-logs-grail
01 Jul 2026 03:53 PM
We have tried with DQL query but it doesnt helps us to fetch the NAM monitors. we have used the below query:
fetch dt.system.events
| filter event.kind == "AUDIT_EVENT"
| filter event.provider == "SETTINGS"
| filter contains(resource, "SYNTHETIC")
| filter contains(resource, "SYNTHETIC_TEST")
| filter contains (details.dt.settings.schema_id, "SYNTHETIC")
| filterOut details.source == "system"
| fields timestamp, details.json_after, details.source
| fieldsAdd user = jsonPath(details.json_after, "$.auditInfo.user")
| fieldsRemove details.json_after
01 Jul 2026 04:15 PM
Instead of synthetic use
MULTIPROTOCOL_MONITOR
01 Jul 2026 04:52 PM
fetch dt.system.events
| filter event.kind == "AUDIT_EVENT"
| filter event.provider == "SETTINGS"
//| filter contains(resource, "SYNTHETIC")
//| filter matchesPhrase(resource,"multi-protocol")
we have tried to fetch data using above DQL but we are unable to see any multi protocol or NAM related data under resource column or any other column.
could you please suggest working DQL query or any settings part to check?
Featured Posts