Create SRE Dashboard in Dynatrace Using DQL Query - Part 1
Вставка
- Опубліковано 9 лют 2025
- Hello,
I am a instructor and I teach for Dynatrace/Appdynamics/Instana/Datadog/ELK/Prometheus/Grafana.
I'll try to get my workout video up here.Love my network, subscribe to it and share it. It gives me an incentive to post videos.
If you require training assistance or would like a video on a particular topic, please email me at APM-DT@outlook.com for an instant response. please whatsapp me on below Number +91-9958967702
Hello sir … do you give training sessions or any course you offer in dynatrace .. pls let me know
hi, please how can i filter the active problems using entity tags, I have so many unwanted hosts here so I want to filter them, can you show?
@@marvellousfrederick9315 will check and let you know
@ thank you, will be waiting for your reply
@@apm-dt hello, were you able to check?
@@marvellousfrederick9315 fetch dt.davis.problems
| sort timestamp desc
| filter event.status == "CLOSED"
| filter dt.davis.is_frequent_event == false and dt.davis.is_duplicate == false and maintenance.is_under_maintenance == false
| fields event.category, event.start, event.end, resolved_problem_duration, event.id
| summarize AVG = avg(resolved_problem_duration), by:{Category = event.category}, Number = count()
this query also you can try fetch dt.davis.problems
| summarize {countIf(event.status == "ACTIVE")}