18 Aug 2025 11:33 AM
Hi all,
Is there any way that we can get the count for running processes using DQL or any other source?
Solved! Go to Solution.
18 Aug 2025 01:35 PM
timeseries { sum(process.thread.count), value.A = avg(process.thread.count, scalar: true) }, by: { host.name }
18 Aug 2025 01:42 PM
Hi @sooryamuthuraj ,
You can use something like:
fetch dt.entity.process_group_instance
| fields metadata, entity.name, id, lifetime, runs, runs_on
Not sure if runs == null means that the process is not running ...
Regards, Deni