From 919530593b99649064a4e5a593f0517c9b277198 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Mon, 26 Feb 2024 15:28:57 -0800 Subject: [PATCH] (feat) basic clickhouse logging setup --- litellm/integrations/clickhouse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/integrations/clickhouse.py b/litellm/integrations/clickhouse.py index 8e133544b..8c363a99c 100644 --- a/litellm/integrations/clickhouse.py +++ b/litellm/integrations/clickhouse.py @@ -152,7 +152,7 @@ class ClickhouseLogger: values.append(value) data = [values] - response = self.client.insert("spend_logs", data, column_names=keys) + response = self.client.insert("default.spend_logs", data, column_names=keys) # make request to endpoint with payload print_verbose(f"Clickhouse Logger - final response = {response}")