Create a trace in ClickHouse
(trace: Trace)
| 407 | |
| 408 | |
| 409 | async def clickhouse_create_trace(trace: Trace) -> None: |
| 410 | """Create a trace in ClickHouse""" |
| 411 | data = [span.to_clickhouse_dict() for span in trace.spans] |
| 412 | await clickhouse_create(data) |
| 413 | |
| 414 | |
| 415 | async def clickhouse_get_span_raw(span_id: str) -> dict: |
no test coverage detected
searching dependent graphs…