From d3f3535cb590bf6cf3badf3e138e88cf6c7d8d59 Mon Sep 17 00:00:00 2001 From: Yefu Zhang Date: Tue, 21 Mar 2023 17:19:26 +0800 Subject: [PATCH] [feature] deepflow datasource, add 'SELECT_GROUP_BY_DISABLE_TAGS' **Phenomenon and reproduction steps** none **Root cause and solution** none **Impactions** none **Test method** none **Affected branch(es)** - main **Checklist** - [ ] Dependencies update required - [ ] Common bug (similar problem in other repo) --- deepflow-querier-datasource/src/consts.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/deepflow-querier-datasource/src/consts.ts b/deepflow-querier-datasource/src/consts.ts index 70b4412..831bc39 100644 --- a/deepflow-querier-datasource/src/consts.ts +++ b/deepflow-querier-datasource/src/consts.ts @@ -3,7 +3,13 @@ import { SelectOpts } from 'QueryEditor' import { uuid } from 'utils/tools' // 不支持做分组的 tag: 负载均衡监听器, ingress -export const SELECT_GROUP_BY_DISABLE_TAGS = ['lb_listener', 'pod_ingress'] +export const SELECT_GROUP_BY_DISABLE_TAGS = [ + 'lb_listener', + 'pod_ingress', + 'tap_port_host', + 'tap_port_chost', + 'tap_port_pod_node' +] export const DISABLE_TAGS = ['_id', 'time']