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

КОМЕНТАРІ • 11

  • @shashikanthdidugu8750
    @shashikanthdidugu8750 Місяць тому

    Hello sir … do you give training sessions or any course you offer in dynatrace .. pls let me know

  • @marvellousfrederick9315
    @marvellousfrederick9315 Місяць тому

    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?

    • @apm-dt
      @apm-dt  Місяць тому

      @@marvellousfrederick9315 will check and let you know

    • @marvellousfrederick9315
      @marvellousfrederick9315 Місяць тому

      @ thank you, will be waiting for your reply

    • @marvellousfrederick9315
      @marvellousfrederick9315 27 днів тому

      @@apm-dt hello, were you able to check?

    • @apm-dt
      @apm-dt  27 днів тому

      @@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()

    • @apm-dt
      @apm-dt  27 днів тому

      this query also you can try fetch dt.davis.problems
      | summarize {countIf(event.status == "ACTIVE")}