mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 05:32:30 +08:00
14 lines
354 B
Python
14 lines
354 B
Python
from . import SpanTypes
|
|
|
|
# [TODO] Deprecated, remove when we remove AppTypes
|
|
# the type of the spans
|
|
TYPE = SpanTypes.CASSANDRA
|
|
|
|
# tags
|
|
CLUSTER = 'cassandra.cluster'
|
|
KEYSPACE = 'cassandra.keyspace'
|
|
CONSISTENCY_LEVEL = 'cassandra.consistency_level'
|
|
PAGINATED = 'cassandra.paginated'
|
|
ROW_COUNT = 'cassandra.row_count'
|
|
PAGE_NUMBER = 'cassandra.page_number'
|