From 3d6d3461d967491d2305ece201523e8a3399052c Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 26 Dec 2024 15:28:37 +0100 Subject: [PATCH] orchestrator/clickhouse: also sets TTL for `system.text_log` table --- console/data/docs/99-changelog.md | 1 + orchestrator/clickhouse/http.go | 1 + 2 files changed, 2 insertions(+) diff --git a/console/data/docs/99-changelog.md b/console/data/docs/99-changelog.md index 73e83d11..a7d16328 100644 --- a/console/data/docs/99-changelog.md +++ b/console/data/docs/99-changelog.md @@ -15,6 +15,7 @@ identified with a specific icon: - 🔒 *docker*: do not expose the /debug endpoint on the public entrypoint - 🩹 *console*: fix synchronization of saved filters from configuration file +- 🌱 *orchestrator*: also sets TTL for ClickHouse `system.text_log` table ## 1.11.2 - 2024-11-01 diff --git a/orchestrator/clickhouse/http.go b/orchestrator/clickhouse/http.go index 2457d3cc..14186104 100644 --- a/orchestrator/clickhouse/http.go +++ b/orchestrator/clickhouse/http.go @@ -97,6 +97,7 @@ func (c *Component) registerHTTPHandlers() error { "part_log", "query_log", "query_thread_log", + "text_log", "trace_log", }, PrometheusEndpoint: c.config.PrometheusEndpoint,