Authentication
OpenTelemetry ingestion uses the same HTTP Basic Auth credentials as the Lakehouse API. Each environment has its own credentials boundary.
Get credentials
- Open the target environment in Altertable.
- Open Credentials.
- Copy the lakehouse username and password.
Build the Basic Auth token
Base64-encode your credentials in the format lakehouse_username:lakehouse_password:
echo -n "your_lakehouse_username:your_lakehouse_password" | base64
Then send the encoded value in the Authorization header:
Authorization: Basic <ALTERTABLE_BASIC_AUTH_TOKEN>
Endpoint host
Send OTLP/HTTP protobuf data to the standard paths on api.altertable.ai:
Signal | Endpoint | Content type |
|---|---|---|
Traces | POST https://api.altertable.ai/v1/traces | application/x-protobuf |
Logs | POST https://api.altertable.ai/v1/logs | application/x-protobuf |
Learn more
- Send logs: configure log export.
- Send traces: configure trace export.
- OpenTelemetry API: endpoint details for OTLP traces and logs.