Skip to content

Commit d6d37f5

Browse files
committed
news: add entries for axoflow#276
Signed-off-by: Attila Szakacs <[email protected]>
1 parent 818cab9 commit d6d37f5

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

news/feature-276-1.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
`opentelemetry()`, `axosyslog-otlp()`, `syslog-ng-otlp()`: Added `keep-alive()` options.
2+
3+
Keepalive can be configured with the `time()`, `timeout()`
4+
and `max-pings-without-data()` options of the `keep-alive()` block.
5+
6+
```
7+
opentelemetry(
8+
...
9+
keep-alive(time(20000) timeout(10000) max-pings-without-data(0))
10+
);
11+
```

news/feature-276-2.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
`bigquery()`: Added `auth()` options.
2+
3+
Similarly to other gRPC based destination drivers, the `bigquery()`
4+
destination now accepts different authentication methods, like
5+
`adc()`, `alts()`, `insecure()` and `tls()`.
6+
7+
```
8+
bigquery (
9+
...
10+
auth(
11+
tls(
12+
ca-file("/path/to/ca.pem")
13+
key-file("/path/to/key.pem")
14+
cert-file("/path/to/cert.pem")
15+
)
16+
)
17+
);
18+
```

news/feature-276-3.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
`loki()`: Added `batch-bytes()` and `compression()` options.

0 commit comments

Comments
 (0)