Resolved OTLP export settings, or `undefined` when export is off.
| 30 | |
| 31 | /** Resolved OTLP export settings, or `undefined` when export is off. */ |
| 32 | interface 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 |
nothing calls this directly
no outgoing calls
no test coverage detected