Solutions
OpenTelemetry logs, without locking the backend.
Instrument once. Export logs through the OpenTelemetry Collector to LogHouse over documented HTTP ingest, and optionally dual-export a filtered subset to Datadog or Grafana.
POST https://api.loghouse.ai/v1/logs
Authorization: Basic lht_…
content-type: application/json
[
{
"severity": "info",
"service_name": "api",
"message": "hello from LogHouse"
}
]Recommended shape
Put routing policy in the Collector: batch, redact, and export. Applications emit structured logs with resource attributes. LogHouse stores and searches the high-volume path; other vendors receive only what their workflows require.
FAQ
Do I need a proprietary LogHouse agent?
No. Use OpenTelemetry SDKs, log bridges, and the Collector. LogHouse is a backend for that pipeline.
