You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exporter/clickhouseexporter/README.md
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
<!-- end autogenerated section -->
14
14
15
15
16
-
This exporter supports sending OpenTelemetry data to [ClickHouse](https://clickhouse.com/).
16
+
This exporter supports sending OpenTelemetry data to [ClickHouse](https://clickhouse.com/).
17
17
> ClickHouse is an open-source, high performance columnar OLAP database management system for real-time analytics using
18
18
> SQL.
19
19
> Throughput can be measured in rows per second or megabytes per second.
@@ -302,6 +302,18 @@ Processing:
302
302
-`max_elapsed_time` (default = 300s): The maximum amount of time spent trying to send a batch; ignored if `enabled`
303
303
is `false`
304
304
305
+
Cluster definition:
306
+
307
+
-`cluster_name` (default = ): The cluster name allows to create database or table on cluster. When set '`ON CLUSTER cluster_name`' string is present in creation query.
308
+
309
+
Table engine:
310
+
311
+
-`table_engine`
312
+
-`name` (default = MergeTree)
313
+
-`params` (default = )
314
+
315
+
Modifies `ENGINE` definition when table is created. If not set then `ENGINE` defaults to `MergeTree` Combined with `cluster_name` allows to implement [replication for fault tolerance scenario](https://clickhouse.com/docs/en/architecture/replication).
316
+
305
317
## TLS
306
318
307
319
The exporter supports TLS. To enable TLS, you need to specify the `secure=true` query parameter in the `endpoint` URL or
@@ -334,6 +346,10 @@ exporters:
334
346
initial_interval: 5s
335
347
max_interval: 30s
336
348
max_elapsed_time: 300s
349
+
# Uncomment if there is a need for replication accross cluster instances
0 commit comments