MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / TelemetryTarget

Interface TelemetryTarget

apps/host-selfhost/src/telemetry.ts:32–37  ·  view source on GitHub ↗

Resolved OTLP export settings, or `undefined` when export is off.

Source from the content-addressed store, hash-verified

30
31/** Resolved OTLP export settings, or `undefined` when export is off. */
32interface TelemetryTarget {
33 readonly tracesUrl: string;
34 /** `undefined` when log export is off, or when no URL can be built for it. */
35 readonly logsUrl: string | undefined;
36 readonly headers: Record<string, string> | undefined;
37}
38
39// Signal URLs follow the OTLP spec: OTEL_EXPORTER_OTLP_ENDPOINT is a base that
40// each signal appends its own path to, while OTEL_EXPORTER_OTLP_<SIGNAL>_ENDPOINT

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected