Johan B.W. de Vries 0d0af0e728 clickhouse logging
2023-04-14 14:45:34 +02:00

18 lines
314 B
SQL

CREATE DATABASE IF NOT EXISTS phasm_platform;
USE phasm_platform;
CREATE TABLE routing_logs
(
timestamp DateTime64(6, 'UTC'),
from_service String,
from_container String,
from_method String,
to_service String,
to_container String,
to_method String,
result String,
)
ENGINE = MergeTree
ORDER BY timestamp;