From e180fb54146fec37fce8dd7e76cfefe3076f0589 Mon Sep 17 00:00:00 2001 From: goodroot <9484709+goodroot@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:32:19 -0800 Subject: [PATCH] add missing config options for table creates --- documentation/configuration.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/documentation/configuration.md b/documentation/configuration.md index 5a485e43..168423a8 100644 --- a/documentation/configuration.md +++ b/documentation/configuration.md @@ -210,9 +210,11 @@ PostgresSQL wire protocol. This section describes ingestion settings for incoming messages using InfluxDB Line Protocol. -| Property | Default | Description | -| ------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| line.default.partition.by | DAY | Table partition strategy to be used with tables that are created automatically by InfluxDB Line Protocol. Possible values are: `HOUR`, `DAY`, `WEEK`, `MONTH`, and `YEAR`. | +| Property | Default | Description | +| ---------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| line.default.partition.by | DAY | Table partition strategy to be used with tables that are created automatically by InfluxDB Line Protocol. Possible values are: `HOUR`, `DAY`, `WEEK`, `MONTH`, and `YEAR`. | +| line.auto.create.new.columns | true | When enabled, automatically creates new columns when they appear in the ingested data. When disabled, messages with new columns will be rejected. | +| line.auto.create.new.tables | true | When enabled, automatically creates new tables when they appear in the ingested data. When disabled, messages for non-existent tables will be rejected. | #### HTTP specific settings