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.