Configure the targets
Both targets are set per workspace in Settings. Enter one or both:SIEM HTTP endpoint
An HTTP intake for a SIEM such as Splunk, Datadog, or Microsoft Sentinel. Passport POSTs a JSON body of the shape
{ "source": "mcp-passport", "events": [ ... ] }.OTLP endpoint
An OpenTelemetry collector base URL. Passport POSTs OTLP/JSON logs to
<endpoint>/v1/logs, one log record per event, with a resource attribute service.name = mcp-passport.Delivery behavior
Export is best-effort and batched, tuned so a slow or down endpoint never affects the gateway hot path.- Events are queued and flushed on a 5 second tick, up to 200 events per batch.
- A batch stays in the queue until it is delivered, so a transient outage retries rather than losing events (at-least-once).
- When both targets are configured, a batch counts as delivered only once every configured target accepts it.
- If an endpoint stays down, Passport backs off up to about 5 minutes between attempts.
- The queue is bounded at 2000 events. If it overflows because the endpoint is slow or down, the oldest events are dropped to protect memory, and a warning is written to the server log so the gap is visible rather than silent.
Gaps are surfaced, not hidden. The exporter tracks queue depth, dropped-event count, consecutive failures, and the last error, so an operator can see when a stream is unhealthy.