Type alias ObservabilityPipelineClickhouseDestinationFormat

ObservabilityPipelineClickhouseDestinationFormat: typeof JSON_EACH_ROW | typeof JSON_AS_OBJECT | typeof JSON_AS_STRING | typeof ARROW_STREAM | UnparsedObject

Insert format for events sent to ClickHouse.

  • json_each_row: Maps event fields to columns by name (ClickHouse JSONEachRow).
  • json_as_object: Inserts each event into a single Object('json') / JSON column (ClickHouse JSONAsObject).
  • json_as_string: Inserts each event into a single String-typed column as raw JSON (ClickHouse JSONAsString).
  • arrow_stream: Batches events using Apache Arrow IPC streaming format. Requires batch_encoding.

Generated using TypeDoc