13 Dec 2023 02:51 PM
Hi,
Is there any way to pin to the dashboard how many services are running on a particular process and additionally report when this number changes?
Radek
Solved! Go to Solution.
21 Dec 2023 10:28 PM
Any idea?
22 Dec 2023 07:46 AM
Hi,
I would say trying with DQL but I do not have sufficient experience to provide you a query.
Best regards
22 Dec 2023 12:07 AM
No idea how I would do that in the UI.
It is possible to get it through API calls though, with the relationship approach. Have done it to pass data to a CMDB...
22 Dec 2023 04:46 PM - edited 22 Dec 2023 04:47 PM
Part 1 - This give you how many services
fetch dt.entity.service
| filter runs_on[dt.entity.process_group] == "PROCESS_GROUP-6E6F69FC1108F0E7"
| summarize count()
22 Dec 2023 09:09 PM
That just shows how impressive DQL is!
22 Dec 2023 04:50 PM
Part 2 - Pin to Dashboard
22 Dec 2023 05:07 PM
Part 3 - It's not and alert (Workaround) but you can set a threshold
Hope it helps!!!
22 Dec 2023 07:31 PM
@DanielS Thank you very much - let me tell you, I hadn't thought of that🫡