1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2019-Present Datadog, Inc.
use serde::de::{Error, MapAccess, Visitor};
use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};
/// The `clickhouse` destination sends log events to a ClickHouse database table over HTTP.
///
/// **Supported pipeline types:** logs.
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct ObservabilityPipelineClickhouseDestination {
/// HTTP Basic Authentication credentials for the ClickHouse destination.
/// When `strategy` is `basic`, provide `username_key` and `password_key` that reference environment variables or secrets containing the credentials.
#[serde(rename = "auth")]
pub auth: Option<crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationAuth>,
/// Batching configuration for ClickHouse inserts.
#[serde(rename = "batch")]
pub batch: Option<crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationBatch>,
/// Batch encoding configuration for the ClickHouse destination.
/// Required when `format` is `arrow_stream`. The `codec` field must be set to `arrow_stream`.
#[serde(rename = "batch_encoding")]
pub batch_encoding:
Option<crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationBatchEncoding>,
/// Configuration for buffer settings on destination components.
#[serde(rename = "buffer")]
pub buffer: Option<crate::datadogV2::model::ObservabilityPipelineBufferOptions>,
/// Compression setting for outbound HTTP requests to ClickHouse.
/// Can be specified as a shorthand string (`"gzip"` or `"none"`) or as an object
/// with an `algorithm` field and an optional `level` (gzip only, 1–9).
#[serde(rename = "compression")]
pub compression:
Option<crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationCompression>,
/// Optional ClickHouse database name. If omitted, the user's default database on the ClickHouse server is used.
#[serde(rename = "database")]
pub database: Option<String>,
/// When `true`, enables flexible DateTime parsing on the ClickHouse server side.
#[serde(rename = "date_time_best_effort")]
pub date_time_best_effort: Option<bool>,
/// Name of the environment variable or secret that contains the ClickHouse HTTP endpoint URL.
/// Defaults to `DESTINATION_CLICKHOUSE_ENDPOINT_URL` (prefixed with `DD_OP_` at runtime).
#[serde(rename = "endpoint_url_key")]
pub endpoint_url_key: Option<String>,
/// 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`.
#[serde(rename = "format")]
pub format: Option<crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationFormat>,
/// The unique identifier for this component.
#[serde(rename = "id")]
pub id: String,
/// A list of component IDs whose output is used as the `input` for this component.
#[serde(rename = "inputs")]
pub inputs: Vec<String>,
/// When `true`, fields not present in the target table schema are dropped instead of causing insert errors.
/// When unset, the ClickHouse server's own `input_format_skip_unknown_fields` setting applies.
#[serde(
rename = "skip_unknown_fields",
default,
with = "::serde_with::rust::double_option"
)]
pub skip_unknown_fields: Option<Option<bool>>,
/// Target ClickHouse table name. Events are inserted into this table.
#[serde(rename = "table")]
pub table: String,
/// Configuration for enabling TLS encryption between the pipeline component and external services.
#[serde(rename = "tls")]
pub tls: Option<crate::datadogV2::model::ObservabilityPipelineTls>,
/// The destination type. The value must be `clickhouse`.
#[serde(rename = "type")]
pub type_: crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationType,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl ObservabilityPipelineClickhouseDestination {
pub fn new(
id: String,
inputs: Vec<String>,
table: String,
type_: crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationType,
) -> ObservabilityPipelineClickhouseDestination {
ObservabilityPipelineClickhouseDestination {
auth: None,
batch: None,
batch_encoding: None,
buffer: None,
compression: None,
database: None,
date_time_best_effort: None,
endpoint_url_key: None,
format: None,
id,
inputs,
skip_unknown_fields: None,
table,
tls: None,
type_,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn auth(
mut self,
value: crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationAuth,
) -> Self {
self.auth = Some(value);
self
}
pub fn batch(
mut self,
value: crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationBatch,
) -> Self {
self.batch = Some(value);
self
}
pub fn batch_encoding(
mut self,
value: crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationBatchEncoding,
) -> Self {
self.batch_encoding = Some(value);
self
}
pub fn buffer(
mut self,
value: crate::datadogV2::model::ObservabilityPipelineBufferOptions,
) -> Self {
self.buffer = Some(value);
self
}
pub fn compression(
mut self,
value: crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationCompression,
) -> Self {
self.compression = Some(value);
self
}
pub fn database(mut self, value: String) -> Self {
self.database = Some(value);
self
}
pub fn date_time_best_effort(mut self, value: bool) -> Self {
self.date_time_best_effort = Some(value);
self
}
pub fn endpoint_url_key(mut self, value: String) -> Self {
self.endpoint_url_key = Some(value);
self
}
pub fn format(
mut self,
value: crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationFormat,
) -> Self {
self.format = Some(value);
self
}
pub fn skip_unknown_fields(mut self, value: Option<bool>) -> Self {
self.skip_unknown_fields = Some(value);
self
}
pub fn tls(mut self, value: crate::datadogV2::model::ObservabilityPipelineTls) -> Self {
self.tls = Some(value);
self
}
pub fn additional_properties(
mut self,
value: std::collections::BTreeMap<String, serde_json::Value>,
) -> Self {
self.additional_properties = value;
self
}
}
impl<'de> Deserialize<'de> for ObservabilityPipelineClickhouseDestination {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct ObservabilityPipelineClickhouseDestinationVisitor;
impl<'a> Visitor<'a> for ObservabilityPipelineClickhouseDestinationVisitor {
type Value = ObservabilityPipelineClickhouseDestination;
fn expecting(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.write_str("a mapping")
}
fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
where
M: MapAccess<'a>,
{
let mut auth: Option<
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationAuth,
> = None;
let mut batch: Option<
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationBatch,
> = None;
let mut batch_encoding: Option<crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationBatchEncoding> = None;
let mut buffer: Option<
crate::datadogV2::model::ObservabilityPipelineBufferOptions,
> = None;
let mut compression: Option<
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationCompression,
> = None;
let mut database: Option<String> = None;
let mut date_time_best_effort: Option<bool> = None;
let mut endpoint_url_key: Option<String> = None;
let mut format: Option<
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationFormat,
> = None;
let mut id: Option<String> = None;
let mut inputs: Option<Vec<String>> = None;
let mut skip_unknown_fields: Option<Option<bool>> = None;
let mut table: Option<String> = None;
let mut tls: Option<crate::datadogV2::model::ObservabilityPipelineTls> = None;
let mut type_: Option<
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationType,
> = None;
let mut additional_properties: std::collections::BTreeMap<
String,
serde_json::Value,
> = std::collections::BTreeMap::new();
let mut _unparsed = false;
while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
match k.as_str() {
"auth" => {
if v.is_null() {
continue;
}
auth = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"batch" => {
if v.is_null() {
continue;
}
batch = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"batch_encoding" => {
if v.is_null() {
continue;
}
batch_encoding =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"buffer" => {
if v.is_null() {
continue;
}
buffer = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
if let Some(ref _buffer) = buffer {
match _buffer {
crate::datadogV2::model::ObservabilityPipelineBufferOptions::UnparsedObject(_buffer) => {
_unparsed = true;
},
_ => {}
}
}
}
"compression" => {
if v.is_null() {
continue;
}
compression =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
if let Some(ref _compression) = compression {
match _compression {
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationCompression::UnparsedObject(_compression) => {
_unparsed = true;
},
_ => {}
}
}
}
"database" => {
if v.is_null() {
continue;
}
database = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"date_time_best_effort" => {
if v.is_null() {
continue;
}
date_time_best_effort =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"endpoint_url_key" => {
if v.is_null() {
continue;
}
endpoint_url_key =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"format" => {
if v.is_null() {
continue;
}
format = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
if let Some(ref _format) = format {
match _format {
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationFormat::UnparsedObject(_format) => {
_unparsed = true;
},
_ => {}
}
}
}
"id" => {
id = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"inputs" => {
inputs = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"skip_unknown_fields" => {
skip_unknown_fields =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"table" => {
table = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"tls" => {
if v.is_null() {
continue;
}
tls = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"type" => {
type_ = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
if let Some(ref _type_) = type_ {
match _type_ {
crate::datadogV2::model::ObservabilityPipelineClickhouseDestinationType::UnparsedObject(_type_) => {
_unparsed = true;
},
_ => {}
}
}
}
&_ => {
if let Ok(value) = serde_json::from_value(v.clone()) {
additional_properties.insert(k, value);
}
}
}
}
let id = id.ok_or_else(|| M::Error::missing_field("id"))?;
let inputs = inputs.ok_or_else(|| M::Error::missing_field("inputs"))?;
let table = table.ok_or_else(|| M::Error::missing_field("table"))?;
let type_ = type_.ok_or_else(|| M::Error::missing_field("type_"))?;
let content = ObservabilityPipelineClickhouseDestination {
auth,
batch,
batch_encoding,
buffer,
compression,
database,
date_time_best_effort,
endpoint_url_key,
format,
id,
inputs,
skip_unknown_fields,
table,
tls,
type_,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(ObservabilityPipelineClickhouseDestinationVisitor)
}
}