From a17f84459be9c6d2d597dfae52d01eab23997873 Mon Sep 17 00:00:00 2001 From: Yash Mehrotra Date: Tue, 17 Sep 2024 18:25:54 +0530 Subject: [PATCH] fix: add health to component topology select clause --- query/topology.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query/topology.go b/query/topology.go index 6cfc73ea..dbceda55 100644 --- a/query/topology.go +++ b/query/topology.go @@ -33,7 +33,7 @@ func (opt TopologyOptions) selectClause() string { } // parents & (incidents, analysis, checks) columns need to fetched to create the topology tree even though they may not be essential to the UI. - return "name, namespace, id, is_leaf, status, status_expr, health_expr, status_reason, icon, summary, topology_type, labels, team_names, type, parent_id, parents, incidents, analysis, checks" + return "name, namespace, id, is_leaf, status, status_expr, health, health_expr, status_reason, icon, summary, topology_type, labels, team_names, type, parent_id, parents, incidents, analysis, checks" } func (opt TopologyOptions) componentWhereClause() string {