30 Sep 2024 10:04 PM - last edited on 08 Oct 2024 10:28 AM by GosiaMurawska
Hi,
i have more than 10 HTTP Monitor tile in a dashboard, each HTTP Monitor is a call api test.
is there a tile that i can add in the dashboard to have a visual result if one of my HTTP Monitor fails?
The problem is:
i have multiple HTTP Monitors in my dashboard and it's difficult to have a general view of all HTTP monitors result,
i can see in each HTTP Monitor but it would be easier to have a tile where i can se all HTTP Monitor result at one place.
Thanks
Solved! Go to Solution.
01 Oct 2024 01:20 AM
Hey Pseg,
If you're using SaaS and the new dashboards you could use the following query and then a honeycomb visualization.
timeseries availability = avg(dt.synthetic.http.availability), by: {dt.entity.http_check}
| fields dt.entity.http_check, availability =
if(arrayAvg(availability) == 100, "Good", else:
if(arrayAvg(availability) > 80, "Acceptable", else: "Bad"))
In the above query you can change what you consider to be good, acceptable and bad by modifying the comparisons on line 3 and 4. In the honeycomb visualization ensure the data mapping value is set to the availability and the displayed field is the http check so that the "open with" feature will work.
Hope this helps!
01 Oct 2024 03:34 AM
In the data explorer can see the honeycomb but i don't have :
timeseries availability
01 Oct 2024 04:50 AM
Hi @pseg1984 , the above screenshots are from the new dashbaords, please try the below
https://docs.dynatrace.com/docs/observe-and-explore/dashboards-and-notebooks/dashboards-new
01 Oct 2024 06:12 AM
Hey Pseg,
The above is only for SaaS and the new dashboards. To access the new dashboards search for dashboards and select "Dashboards" and not "Dashboards Classic" as seen below. The docs that @p_devulapalli mentioned are a good place to start if you have access.
Otherwise if you are constrained to Dynatrace managed or dashboards classic then below would do the trick and then you can pin it to a dashboard from that view.