mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
12 lines
244 B
Go
12 lines
244 B
Go
package log
|
|
|
|
import (
|
|
"go.opentelemetry.io/otel/attribute"
|
|
)
|
|
|
|
const (
|
|
KeelServiceTypeKey = attribute.Key("keel.service.type")
|
|
KeelServiceNameKey = attribute.Key("keel.service.name")
|
|
KeelServiceInstKey = attribute.Key("keel.service.inst")
|
|
)
|