Synthetic Monitoring
Browser monitors, HTTP monitors, synthetic locations.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Regarding Synthetic NAM monitor details

sravanineriyan
Participant

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

5 REPLIES 5

AntonPineiro
DynaMight Guru
DynaMight Guru

Hi,

I would check audit log in case that settings changes appears.

Best regards

❤️ Emacs ❤️ Vim ❤️ Bash ❤️ Perl

PacoPorro
Dynatrace Leader
Dynatrace Leader

sravanineriyan
Participant

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

 

 

PacoPorro
Dynatrace Leader
Dynatrace Leader

Instead of synthetic use 

MULTIPROTOCOL_MONITOR

sravanineriyan
Participant

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