mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 05:32:30 +08:00
20 lines
383 B
Python
20 lines
383 B
Python
from . import SpanTypes
|
|
|
|
# defaults
|
|
APP = 'redis'
|
|
DEFAULT_SERVICE = 'redis'
|
|
|
|
# [TODO] Deprecated, remove when we remove AppTypes
|
|
# type of the spans
|
|
TYPE = SpanTypes.REDIS
|
|
|
|
# net extension
|
|
DB = 'out.redis_db'
|
|
|
|
# standard tags
|
|
RAWCMD = 'redis.raw_command'
|
|
CMD = 'redis.command'
|
|
ARGS_LEN = 'redis.args_length'
|
|
PIPELINE_LEN = 'redis.pipeline_length'
|
|
PIPELINE_AGE = 'redis.pipeline_age'
|