Sending Telemetry
Observy receives OpenTelemetry logs, metrics, and traces over insecure OTLP/gRPC. There is no REST ingestion endpoint.
Configure an OpenTelemetry SDK or collector to send data to Observy:
export OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317export OTEL_EXPORTER_OTLP_PROTOCOL=grpcexport OTEL_EXPORTER_OTLP_INSECURE=trueUse the configured OTLP port if you override otlp_grpc_port.
Try With Sample Telemetry
telemetrygen logs --otlp-endpoint localhost:4317 --otlp-insecure --logs 10telemetrygen metrics --otlp-endpoint localhost:4317 --otlp-insecure --metrics 10telemetrygen traces --otlp-endpoint localhost:4317 --otlp-insecure --traces 10View The Data
Open http://localhost:8080 after sending telemetry.
- Logs are available at
/logs/. - Metrics are available at
/metrics/. - Traces are available at
/traces/.
Each explorer includes an optional OQL editor for direct query control.