02 Feb 2026
08:15 PM
- last edited on
11 Feb 2026
06:11 AM
by
GosiaMurawska
have the cluster name and namespace details. Can I get the below details through DQL?
Solved! Go to Solution.
02 Feb 2026 09:39 PM
@ashokpjana Example DQL for Pod state
fetch dt.entity.cloud_application_instance
| fieldsAdd id, cloudApplicationInstancePhase,currentCondition,
cluster.id = clustered_by[dt.entity.kubernetes_cluster],
namespace.id = belongs_to[dt.entity.cloud_application_namespace],
workload.id = instance_of[dt.entity.cloud_application],
node.id = runs_on[dt.entity.kubernetes_node]
| filter cloudApplicationInstancePhase == "PENDING"
Featured Posts