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

How to display SRG validation results on Dashboard

heramb_sawant
Organizer

Hi ,
I want to run Guardian  validation using Workflow and display the guardian results( Guardian objectives and its results) on Dashboard

Can somebody please help to implement this in best approach.

Regards,
Heramb Sawant

1 REPLY 1

JohannesBraeuer
Dynatrace Participant
Dynatrace Participant

Hello Heramb, 

the raw data of a validation result is stored in events. You get one result event for the validation itself, and an individual event for each validated objective. 

  • Validation result: 

fetch bizevents

| filter event.type == "guardian.validation.finished"

  • Objective results

fetch bizevents
| filter event.type == "guardian.validation.objective"

 

Please use the above-mentioned DQL queries in a Dashboard to get the needed data. More details about the queries can be found here: https://docs.dynatrace.com/docs/platform-modules/automations/site-reliability-guardian/execution-con...

BR, Johannes

Featured Posts