Skip to content

Commit

Permalink
news: add entries for #276
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Szakacs <[email protected]>
  • Loading branch information
alltilla committed Oct 4, 2024
1 parent 827a773 commit 72e64bc
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
11 changes: 11 additions & 0 deletions news/feature-276-1.md
Original file line number Diff line number Diff line change
@@ -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))
);
```
18 changes: 18 additions & 0 deletions news/feature-276-2.md
Original file line number Diff line number Diff line change
@@ -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")
)
)
);
```
1 change: 1 addition & 0 deletions news/feature-276-3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`loki()`: Added `batch-bytes()` and `compression()` options.

0 comments on commit 72e64bc

Please sign in to comment.