mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
698f46fe6a
* chore(backend): update dependencies * chore(pipeline): update golangci-lint
23 lines
555 B
Go
23 lines
555 B
Go
package otel
|
|
|
|
import (
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
semconv "go.opentelemetry.io/otel/semconv/v1.17.0"
|
|
|
|
"github.com/zitadel/zitadel/cmd/build"
|
|
)
|
|
|
|
func ResourceWithService() (*resource.Resource, error) {
|
|
attributes := []attribute.KeyValue{
|
|
semconv.ServiceNameKey.String("ZITADEL"),
|
|
}
|
|
if build.Version() != "" {
|
|
attributes = append(attributes, semconv.ServiceVersionKey.String(build.Version()))
|
|
}
|
|
return resource.Merge(
|
|
resource.Default(),
|
|
resource.NewWithAttributes("", attributes...),
|
|
)
|
|
}
|