mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-31 22:23:12 +08:00
14 lines
319 B
Python
14 lines
319 B
Python
from . import SpanTypes
|
|
|
|
# [TODO] Deprecated, remove when we remove AppTypes
|
|
TYPE = SpanTypes.ELASTICSEARCH
|
|
SERVICE = 'elasticsearch'
|
|
APP = 'elasticsearch'
|
|
|
|
# standard tags
|
|
URL = 'elasticsearch.url'
|
|
METHOD = 'elasticsearch.method'
|
|
TOOK = 'elasticsearch.took'
|
|
PARAMS = 'elasticsearch.params'
|
|
BODY = 'elasticsearch.body'
|