mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
13 lines
513 B
Go
13 lines
513 B
Go
package telemetrytraces
|
|
|
|
const (
|
|
DBName = "signoz_traces"
|
|
SpanIndexV3TableName = "distributed_signoz_index_v3"
|
|
SpanIndexV3LocalTableName = "signoz_index_v3"
|
|
TagAttributesV2TableName = "distributed_tag_attributes_v2"
|
|
TagAttributesV2LocalTableName = "tag_attributes_v2"
|
|
TopLevelOperationsTableName = "distributed_top_level_operations"
|
|
TraceSummaryTableName = "distributed_trace_summary"
|
|
SpanAttributesKeysTblName = "distributed_span_attributes_keys"
|
|
)
|