30 Jan 2024 04:15 PM
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
Solved! Go to Solution.
22 Feb 2024 08:24 AM - edited 22 Feb 2024 08:25 AM
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.
fetch bizevents
| filter event.type == "guardian.validation.finished"
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