Skip to content

Commit

Permalink
[feature] querier datasource, L7FlowLogTracing api post body remove t…
Browse files Browse the repository at this point in the history
…ags that not support select

**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)
  • Loading branch information
twou12031 authored and travilyu committed Mar 26, 2024
1 parent 49de256 commit 986bf1c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deepflow-querier-datasource/src/utils/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,9 @@ export function getTracingQuery({ metrics, tags }: any) {
})

const _tags = tags
.filter((e: any) => {
return !e.not_supported_operators.includes('select')
})
.map((e: any) => {
const isEnumLikely = isEnumLikelyTag(e)
const isJSONTag = JSON_TAGS.find(jsonTag => {
Expand Down

0 comments on commit 986bf1c

Please sign in to comment.