30 Oct 2024 02:53 PM
I need to pull up all the hosts that are running on a specific service but I am not able to pull it up through dql.
30 Oct 2024 11:00 PM
@Pabloabad , here is a example DQL you can use
fetch dt.entity.process_group_instance
| fieldsAdd entity.name, runs[dt.entity.service], belongs_to[dt.entity.host]
| filter isNotNull(runs[dt.entity.service])