Minor Changes
- 8351d63: Add OIDC-based bearer token authentication for the OTLP receiver in standalone mode, as an alternative to the existing static
OTLP_AUTH_TOKEN. SetOIDC_ISSUER_URLandOIDC_AUDIENCEto validate incoming OTLP requests against an OIDC provider's published JWKS instead of a single long-lived shared secret.
Patch Changes
- 58a467a: Use the OpAMP supervisor's native
passthrough_logsfor collector log
forwarding instead of a backgroundtailprocess. The old approach had
the supervisor and the tailer writing to the same stdout fd with no
synchronization, so log lines were getting mangled by the two streams
interleaving mid-line. The native approach has the supervisor re-emitting
the collector's output through its own logger to avoid this.