-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] move attributes func into separate file
No functional change, just moving it into its own file to clean up the tracer config since the meter provider will also use attributes. Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
80 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package telemetry // import "go.opentelemetry.io/collector/service/telemetry" | ||
|
||
import semconv "go.opentelemetry.io/otel/semconv/v1.4.0" | ||
|
||
func attributes(set Settings, cfg Config) map[string]interface{} { | ||
attrs := map[string]interface{}{ | ||
string(semconv.ServiceNameKey): set.BuildInfo.Command, | ||
string(semconv.ServiceVersionKey): set.BuildInfo.Version, | ||
} | ||
for k, v := range cfg.Resource { | ||
if v != nil { | ||
attrs[k] = *v | ||
} | ||
|
||
// the new value is nil, delete the existing key | ||
if _, ok := attrs[k]; ok && v == nil { | ||
delete(attrs, k) | ||
} | ||
} | ||
return attrs | ||
} |
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,56 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package telemetry // import "go.opentelemetry.io/collector/service/telemetry" | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
"go.opentelemetry.io/collector/component" | ||
"go.opentelemetry.io/collector/service/telemetry/internal" | ||
) | ||
|
||
func TestAttributes(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
cfg Config | ||
buildInfo component.BuildInfo | ||
wantAttributes map[string]interface{} | ||
}{ | ||
{ | ||
name: "no build info and no resource config", | ||
cfg: Config{}, | ||
wantAttributes: map[string]interface{}{"service.name": "", "service.version": ""}, | ||
}, | ||
{ | ||
name: "build info and no resource config", | ||
cfg: Config{}, | ||
buildInfo: component.BuildInfo{Command: "otelcoltest", Version: "0.0.0-test"}, | ||
wantAttributes: map[string]interface{}{"service.name": "otelcoltest", "service.version": "0.0.0-test"}, | ||
}, | ||
{ | ||
name: "no build info and resource config", | ||
cfg: Config{Resource: map[string]*string{"service.name": ptr("resource.name"), "service.version": ptr("resource.version"), "test": ptr("test")}}, | ||
wantAttributes: map[string]interface{}{"service.name": "resource.name", "service.version": "resource.version", "test": "test"}, | ||
}, | ||
{ | ||
name: "build info and resource config", | ||
buildInfo: component.BuildInfo{Command: "otelcoltest", Version: "0.0.0-test"}, | ||
cfg: Config{Resource: map[string]*string{"service.name": ptr("resource.name"), "service.version": ptr("resource.version"), "test": ptr("test")}}, | ||
wantAttributes: map[string]interface{}{"service.name": "resource.name", "service.version": "resource.version", "test": "test"}, | ||
}, | ||
{ | ||
name: "deleting a nil value", | ||
buildInfo: component.BuildInfo{Command: "otelcoltest", Version: "0.0.0-test"}, | ||
cfg: Config{Resource: map[string]*string{"service.name": nil, "service.version": ptr("resource.version"), "test": ptr("test")}}, | ||
wantAttributes: map[string]interface{}{"service.version": "resource.version", "test": "test"}, | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
attrs := attributes(internal.Settings{BuildInfo: tt.buildInfo}, tt.cfg) | ||
require.Equal(t, tt.wantAttributes, attrs) | ||
}) | ||
} | ||
} |
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