20 Sep 2023
11:16 AM
- last edited on
21 Sep 2023
07:49 AM
by
MaciejNeumann
Hi friends
I want a Dashboard where I can see the list of processes under the host, please help me
thanks
Solved! Go to Solution.
Hi,
You can use the Table tile on the dashboard and, once you have selected the correct measure, split it by host name or host group:
Thank you so much, man.
Very lucky and happy to see you again.
You're welcome 🙂
Here is another way looking for process that starts with admin:
builtin:tech.generic.mem.usage
:filter(and(or(in("dt.entity.process_group_instance",entitySelector("type(process_group_instance),entityName.startsWith(~"admin~")")))))
:parents
:splitBy("dt.entity.process_group_instance","dt.entity.host")
:sort(value(auto,descending))
:limit(100)
Hi, friend.
This is really good.