-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into zoid/use-proxy-env-vars
- Loading branch information
Showing
8 changed files
with
349 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
plugin/storage/cassandra/spanstore/dbmodel/tag_filter_exact_match.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
// Copyright (c) 2019 The Jaeger Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dbmodel | ||
|
||
import ( | ||
"github.com/jaegertracing/jaeger/model" | ||
) | ||
|
||
// ExactMatchTagFilter filters out all tags in its tags slice | ||
type ExactMatchTagFilter struct { | ||
tags map[string]struct{} | ||
dropMatches bool | ||
} | ||
|
||
// newExactMatchTagFilter creates a ExactMatchTagFilter with the provided tags. Passing | ||
// dropMatches true will exhibit blacklist behavior. Passing dropMatches false | ||
// will exhibit whitelist behavior. | ||
func newExactMatchTagFilter(tags []string, dropMatches bool) ExactMatchTagFilter { | ||
mapTags := make(map[string]struct{}) | ||
for _, t := range tags { | ||
mapTags[t] = struct{}{} | ||
} | ||
return ExactMatchTagFilter{ | ||
tags: mapTags, | ||
dropMatches: dropMatches, | ||
} | ||
} | ||
|
||
// NewBlacklistFilter is a convenience method for creating a blacklist ExactMatchTagFilter | ||
func NewBlacklistFilter(tags []string) ExactMatchTagFilter { | ||
return newExactMatchTagFilter(tags, true) | ||
} | ||
|
||
// NewWhitelistFilter is a convenience method for creating a whitelist ExactMatchTagFilter | ||
func NewWhitelistFilter(tags []string) ExactMatchTagFilter { | ||
return newExactMatchTagFilter(tags, false) | ||
} | ||
|
||
// FilterProcessTags implements TagFilter | ||
func (tf ExactMatchTagFilter) FilterProcessTags(span *model.Span, processTags model.KeyValues) model.KeyValues { | ||
return tf.filter(processTags) | ||
} | ||
|
||
// FilterTags implements TagFilter | ||
func (tf ExactMatchTagFilter) FilterTags(span *model.Span, tags model.KeyValues) model.KeyValues { | ||
return tf.filter(tags) | ||
} | ||
|
||
// FilterLogFields implements TagFilter | ||
func (tf ExactMatchTagFilter) FilterLogFields(span *model.Span, logFields model.KeyValues) model.KeyValues { | ||
return tf.filter(logFields) | ||
} | ||
|
||
func (tf ExactMatchTagFilter) filter(tags model.KeyValues) model.KeyValues { | ||
var filteredTags model.KeyValues | ||
for _, t := range tags { | ||
if _, ok := tf.tags[t.Key]; ok == !tf.dropMatches { | ||
filteredTags = append(filteredTags, t) | ||
} | ||
} | ||
return filteredTags | ||
} |
Oops, something went wrong.