mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-08-01 09:13:23 +08:00
Move DD code into its own directory (#6)
This commit is contained in:
13
reference/ddtrace/ext/cassandra.py
Normal file
13
reference/ddtrace/ext/cassandra.py
Normal file
@ -0,0 +1,13 @@
|
||||
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'
|
Reference in New Issue
Block a user