From 8a579c42a8f8ce9057dc6d0c7f010a1d6c9d793a Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Thu, 5 Oct 2023 10:30:29 +0100 Subject: [PATCH] chore: track log entries lag along with other tables (#17766) --- posthog/celery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/celery.py b/posthog/celery.py index 3189ccf11ae2b..9ba61c2cefa51 100644 --- a/posthog/celery.py +++ b/posthog/celery.py @@ -456,7 +456,7 @@ def pg_row_count(): pass -CLICKHOUSE_TABLES = ["events", "person", "person_distinct_id2", "session_replay_events"] +CLICKHOUSE_TABLES = ["events", "person", "person_distinct_id2", "session_replay_events", "log_entries"] if not is_cloud(): CLICKHOUSE_TABLES.append("session_recording_events")