You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
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. Set OIDC_ISSUER_URL and OIDC_AUDIENCE to 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_logs for collector log
forwarding instead of a background tail process. 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.