You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
284 B
Go
11 lines
284 B
Go
1 year ago
|
package trace
|
||
|
|
||
|
import "go.opentelemetry.io/otel/attribute"
|
||
|
|
||
|
var attrResources = make([]attribute.KeyValue, 0)
|
||
|
|
||
|
// AddResources add more resources in addition to configured trace name.
|
||
|
func AddResources(attrs ...attribute.KeyValue) {
|
||
|
attrResources = append(attrResources, attrs...)
|
||
|
}
|