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.
|
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...)
|
|
}
|