|
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package testdata
|
|
|
|
import "go.opentelemetry.io/collector/pdata/pcommon"
|
|
|
|
func initResource(r pcommon.Resource) {
|
|
r.Attributes().PutStr("resource-attr", "resource-attr-val-1")
|
|
}
|