Skip to content

Commit

Permalink
fix: transfer fta 清洗 dedupe_keys 需要补充 tags 前缀 (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
unique0lai authored Feb 26, 2024
1 parent 5ff6d2a commit 4ccb918
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/transfer/template/etl/fta/fta_alert.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ package fta

import (
"context"
"fmt"
"sort"
"time"

Expand Down Expand Up @@ -79,7 +80,7 @@ func ExtractTags(
if len(k) == 0 {
continue
}
dedupeKeys = append(dedupeKeys, k)
dedupeKeys = append(dedupeKeys, fmt.Sprintf("tags.%s", k))
dimensions[k] = v
}
default:
Expand Down

0 comments on commit 4ccb918

Please sign in to comment.