Skip to content

Commit

Permalink
[exporter/dynatrace] Fix docs for TLS settings (open-telemetry#7568)
Browse files Browse the repository at this point in the history
* [exporter/dynatrace] Fix docs for TLS settings

Fixes open-telemetry#7566.

* Add changelog

* Fix comment
  • Loading branch information
arminru authored and tomsanbear committed Mar 2, 2022
1 parent 90548a9 commit 5c3e668
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## 💡 Enhancements 💡

- `dynatraceexporter`: Write error logs using plugin logger (#7360)
- `dynatraceexporter`: Fix docs for TLS settings (#7568)
- `tanzuobservabilityexporter`: Turn on metrics exporter (#7281)
- `attributesprocessor` `resourceprocessor`: Add `from_context` value source
- `resourcedetectionprocessor`: check cluster config to verify resource is on aws for eks resources (#7186)
Expand Down
10 changes: 6 additions & 4 deletions exporter/dynatraceexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ exporters:
write_buffer_size: 4000
timeout: 30s
tls:
insecure_skip_verify: true
insecure_skip_verify: false # (default=false)
retry_on_failure:
enabled: true
initial_interval: 5s
Expand Down Expand Up @@ -195,10 +195,12 @@ https://golang.org/pkg/net/http/#Client

Default: `0`

### insecure_skip_verify (Optional)
### tls.insecure_skip_verify (Optional)

Additionally you can configure TLS to be enabled but skip verifying the server's certificate chain. This cannot be combined with insecure since insecure won't use TLS at all.
See [TLS and mTLS settings](https://github.com/open-telemetry/opentelemetry-collector/blob/main/config/configtls/README.md) for configurations.
Additionally you can configure TLS to be enabled but skip verifying the server's certificate chain.
This cannot be combined with `insecure` since `insecure` won't use TLS at all.
More details can be found in the collector readme for
[TLS and mTLS settings](https://github.com/open-telemetry/opentelemetry-collector/blob/main/config/configtls/README.md).

Default: `false`

Expand Down

0 comments on commit 5c3e668

Please sign in to comment.