We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6ec341 commit 97eff4aCopy full SHA for 97eff4a
doc/_admin-guide/060_Sources/102_OpenTelemetry/000_opentelemetry_source_options.md
@@ -43,18 +43,20 @@ The `tls()` option accepts the following nested sub-options.
43
* ca-file()
44
* key-file()
45
* cert-file()
46
+* peer-verify()
47
48
#### Example: configure an OpenTelemetry source using auth(tls())
49
50
```config
-destination {
51
+source {
52
opentelemetry(
- url("your-otel-server:1234")
53
+ port(1234)
54
auth(
55
tls(
56
ca-file("/path/to/ca.pem")
57
key-file("/path/to/key.pem")
58
cert-file("/path/to/cert.pem")
59
+ peer-verify(yes)
60
)
61
62
);
0 commit comments