mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 13:43:03 +08:00
19 lines
350 B
Python
19 lines
350 B
Python
from . import SpanTypes
|
|
|
|
# [TODO] Deprecated, remove when we remove AppTypes
|
|
# type of the spans
|
|
TYPE = SpanTypes.WORKER
|
|
|
|
SERVICE = 'kombu'
|
|
|
|
# net extension
|
|
VHOST = 'out.vhost'
|
|
|
|
# standard tags
|
|
EXCHANGE = 'kombu.exchange'
|
|
BODY_LEN = 'kombu.body_length'
|
|
ROUTING_KEY = 'kombu.routing_key'
|
|
|
|
PUBLISH_NAME = 'kombu.publish'
|
|
RECEIVE_NAME = 'kombu.receive'
|