cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

the tile showing HTTP Monitor result

pseg1984
Participant

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

 

4 REPLIES 4

Fin_Ubels
Dynatrace Champion
Dynatrace Champion

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"))

Fin_Ubels_0-1727741156120.png

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.

Fin_Ubels_1-1727741378044.png

Hope this helps!

pseg1984
Participant

In the data explorer can see the honeycomb but i don't have :

timeseries availability

 

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

 

 

Phani Devulapalli

Fin_Ubels
Dynatrace Champion
Dynatrace Champion

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.

Fin_Ubels_0-1727759361415.png

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.

Fin_Ubels_1-1727759464328.png

 

Featured Posts