From 72e64bc4a04100183dbb321f78a3c42efaa3f9fe Mon Sep 17 00:00:00 2001 From: Attila Szakacs Date: Tue, 17 Sep 2024 17:29:30 +0200 Subject: [PATCH] news: add entries for #276 Signed-off-by: Attila Szakacs --- news/feature-276-1.md | 11 +++++++++++ news/feature-276-2.md | 18 ++++++++++++++++++ news/feature-276-3.md | 1 + 3 files changed, 30 insertions(+) create mode 100644 news/feature-276-1.md create mode 100644 news/feature-276-2.md create mode 100644 news/feature-276-3.md diff --git a/news/feature-276-1.md b/news/feature-276-1.md new file mode 100644 index 000000000..3826c2df2 --- /dev/null +++ b/news/feature-276-1.md @@ -0,0 +1,11 @@ +`opentelemetry()`, `axosyslog-otlp()`, `syslog-ng-otlp()`: Added `keep-alive()` options. + +Keepalive can be configured with the `time()`, `timeout()` +and `max-pings-without-data()` options of the `keep-alive()` block. + +``` +opentelemetry( + ... + keep-alive(time(20000) timeout(10000) max-pings-without-data(0)) +); +``` diff --git a/news/feature-276-2.md b/news/feature-276-2.md new file mode 100644 index 000000000..105075eef --- /dev/null +++ b/news/feature-276-2.md @@ -0,0 +1,18 @@ +`bigquery()`: Added `auth()` options. + +Similarly to other gRPC based destination drivers, the `bigquery()` +destination now accepts different authentication methods, like +`adc()`, `alts()`, `insecure()` and `tls()`. + +``` +bigquery ( + ... + auth( + tls( + ca-file("/path/to/ca.pem") + key-file("/path/to/key.pem") + cert-file("/path/to/cert.pem") + ) + ) +); +``` diff --git a/news/feature-276-3.md b/news/feature-276-3.md new file mode 100644 index 000000000..f33ecd28b --- /dev/null +++ b/news/feature-276-3.md @@ -0,0 +1 @@ +`loki()`: Added `batch-bytes()` and `compression()` options.