-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add doc for STEAMPIPE_OTEL_INSECURE env var
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
title: STEAMPIPE_OTEL_INSECURE | ||
sidebar_label: STEAMPIPE_OTEL_INSECURE | ||
--- | ||
# STEAMPIPE_OTEL_INSECURE | ||
|
||
To utilize a local, insecure OpenTelemetry server, please configure your environment by setting the `STEAMPIPE_OTEL_INSECURE` environment variable. | ||
|
||
Set the `STEAMPIPE_OTEL_INSECURE` to bypass the default secure connection requirements. This enables steampipe to communicate with the OpenTelemetry server without needing SSL/TLS encryption. This can be useful for local testing or when operating within a secure, isolated network where encryption may not be deemed necessary. | ||
|
||
## Usage | ||
|
||
If you are connecting to a local insecure OpenTelemetry server: | ||
|
||
```bash | ||
export OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:16686/ | ||
export STEAMPIPE_OTEL_INSECURE=true | ||
``` |