We are trying to forward logs from Render Log Drain to SigNoz, but are facing an authentication problem. Render seems to handle authentication differently: instead of passing the authentication key or token (SigNoz ingestion key) in the header, it includes the token within the log body. We are using the syslogreceiver from OpenTelemetry, which does not support authentication on its side. Because of this, we cannot authenticate the log stream properly. Example: Token: abcd Log Body Received: abcd <6>1 2025-08-26T15:11:13Z go-gin-web-server-1-x7ae http-request 1 http-request - {"clientIP":"49.207.233.182","host":"go-gin-web-server-1-x7ae.onrender.com","method":"GET","path":"/room/hn","requestId":"a535bb98-ea04-41f4","responseBytes":2790,"responseTimeMS":1,"statusCode":200,"time":"2025-08-26T15:11:13Z","userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36"} Because the token is embedded in the log body instead of sent as a header, SigNoz's ingestion key authentication fails.