20 Jun 2024 03:40 PM
Hello, I am trying to run the following DQL query to retrieve the runs_on property for all my process_group_instance. I am hoping to be able to get information about the host on which the process_group_instance runs. When I run the below in a notebook, the runs_on property returns null. Is this expected behavior? Is my syntax wrong? I would like to hear your thoughts Community. Thanks.
fetch dt.entity.process_group_instance
| fieldsAdd runs_on
Solved! Go to Solution.
20 Jun 2024 04:59 PM
The one you're looking for should be "belongs_to":
fetch dt.entity.process_group_instance
| fieldsAdd belongs_to[dt.entity.host]