-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sanitize spans with null process or empty service name (#3631)
* Sanitize spans with null process or empty service name Signed-off-by: Yuri Shkuro <[email protected]> * cleanup Signed-off-by: Yuri Shkuro <[email protected]> * review comments Signed-off-by: Yuri Shkuro <[email protected]> * wait longer Signed-off-by: Yuri Shkuro <[email protected]> * add tests Signed-off-by: Yuri Shkuro <[email protected]>
- Loading branch information
1 parent
998c9d4
commit 7ad154e
Showing
12 changed files
with
175 additions
and
21 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
41 changes: 41 additions & 0 deletions
41
cmd/collector/app/sanitizer/empty_service_name_sanitizer.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,41 @@ | ||
// Copyright (c) 2022 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 sanitizer | ||
|
||
import ( | ||
"github.com/jaegertracing/jaeger/model" | ||
) | ||
|
||
const ( | ||
serviceNameReplacement = "empty-service-name" | ||
nullProcessServiceName = "null-process-and-service-name" | ||
) | ||
|
||
// NewEmptyServiceNameSanitizer returns a function that replaces empty service name | ||
// with a string "empty-service-name". | ||
// If the whole span.Process is null, it creates one with "null-process-and-service-name". | ||
func NewEmptyServiceNameSanitizer() SanitizeSpan { | ||
return sanitizeEmptyServiceName | ||
} | ||
|
||
// Sanitize sanitizes the service names in the span annotations. | ||
func sanitizeEmptyServiceName(span *model.Span) *model.Span { | ||
if span.Process == nil { | ||
span.Process = &model.Process{ServiceName: nullProcessServiceName} | ||
} else if span.Process.ServiceName == "" { | ||
span.Process.ServiceName = serviceNameReplacement | ||
} | ||
return span | ||
} |
32 changes: 32 additions & 0 deletions
32
cmd/collector/app/sanitizer/empty_service_name_sanitizer_test.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,32 @@ | ||
// Copyright (c) 2022 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 sanitizer | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"github.com/jaegertracing/jaeger/model" | ||
) | ||
|
||
func TestEmptyServiceNameSanitizer(t *testing.T) { | ||
s := NewEmptyServiceNameSanitizer() | ||
s1 := s(&model.Span{}) | ||
assert.NotNil(t, s1.Process) | ||
assert.Equal(t, nullProcessServiceName, s1.Process.ServiceName) | ||
s2 := s(&model.Span{Process: &model.Process{}}) | ||
assert.Equal(t, serviceNameReplacement, s2.Process.ServiceName) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright (c) 2022 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 sanitizer | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"github.com/jaegertracing/jaeger/model" | ||
) | ||
|
||
func TestNewStandardSanitizers(t *testing.T) { | ||
NewStandardSanitizers() | ||
} | ||
|
||
func TestChainedSanitizer(t *testing.T) { | ||
var s1 SanitizeSpan = func(span *model.Span) *model.Span { | ||
span.Process = &model.Process{ServiceName: "s1"} | ||
return span | ||
} | ||
var s2 SanitizeSpan = func(span *model.Span) *model.Span { | ||
span.Process = &model.Process{ServiceName: "s2"} | ||
return span | ||
} | ||
c1 := NewChainedSanitizer(s1) | ||
sp1 := c1(&model.Span{}) | ||
assert.Equal(t, "s1", sp1.Process.ServiceName) | ||
c2 := NewChainedSanitizer(s1, s2) | ||
sp2 := c2(&model.Span{}) | ||
assert.Equal(t, "s2", sp2.Process.ServiceName) | ||
} |
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