2025-04-11 15:13:04 +05:30
|
|
|
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"
|
2025-06-23 09:39:19 +05:30
|
|
|
TraceSummaryTableName = "distributed_trace_summary"
|
2025-08-12 18:10:35 +05:30
|
|
|
SpanAttributesKeysTblName = "distributed_span_attributes_keys"
|
2025-04-11 15:13:04 +05:30
|
|
|
)
|