Why MCP Manager can’t send logs directly
Splunk Observability Cloud’s documented OTLP/HTTP exporter exposes only a traces endpoint and a metrics endpoint — there is no logs endpoint. In the Splunk product split, logs live in Splunk Cloud Platform (or Splunk Enterprise), not in Observability Cloud; Observability Cloud’s Log Observer Connect feature queries those logs where they already reside rather than ingesting them over OTLP. Splunk’s own logs ingestion path is the HTTP Event Collector (HEC), for examplehttps://<host>:8088/services/collector, which is a different protocol from OTLP.
The practical consequence: MCP Manager’s single OTLP/HTTP logs forwarder has no Splunk Observability Cloud endpoint to target for logs.
What to do instead: translate OTLP logs to HEC with a Collector
Run a self-hosted OpenTelemetry Collector that receives OTLP logs from MCP Manager and exports them to Splunk via thesplunk_hec exporter. MCP Manager points at your Collector; your Collector translates and forwards to HEC.
In this setup:
- MCP Manager → Collector uses the OTLP/HTTP logs endpoint described in the self-hosted Collector guide (
https://<your-collector-host>:4318/v1/logs). - Collector → Splunk uses the
splunk_hecexporter pointed at your HEC endpoint (https://<host>:8088/services/collector) with a HEC token.
https://ingest.<realm>.observability.splunkcloud.com/v2/trace/otlp) with an X-SF-Token access-token header, no Collector required. Because MCP Manager sends OTLP/HTTP JSON and Splunk’s trace intake documents protobuf, verify delivery before relying on it (and fall back to a self-hosted Collector if JSON is rejected). For logs, the Collector-to-HEC path above remains the only route.
Find your realm
Every Splunk Observability Cloud host is realm-specific (for exampleus0, us1, eu0, eu1, ap0). Your realm determines the ingest host https://ingest.<realm>.observability.splunkcloud.com. Find your realm in the Splunk Observability Cloud UI before configuring any endpoint.
Further reading
Self-hosted Collector
Stand up the Collector that receives OTLP logs and exports them to Splunk HEC.
Export to SIEM
What MCP Manager sends, how forwarding behaves, and general troubleshooting.
External sources
Splunk OTLP/HTTP exporter reference
Shows the
/v2/trace/otlp and /v2/datapoint/otlp paths with X-SF-Token auth — and no logs endpoint.Find your realm and API endpoints
How to find your realm, which determines every ingest host.
Introduction to Log Observer Connect
How Splunk queries logs that live in Splunk Cloud Platform rather than Observability Cloud.

