ignore non-actionable errors in grafana agent (#54824)

This commit is contained in:
Domas 2022-09-08 16:19:38 +03:00 committed by GitHub
parent c684babecc
commit 9dd4eab553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,11 @@ export class GrafanaJavascriptAgentBackend
},
instrumentations,
transports: [new EchoSrvTransport()],
ignoreErrors: [
'ResizeObserver loop limit exceeded',
'ResizeObserver loop completed',
'Non-Error exception captured with keys',
],
};
this.agentInstance = initializeAgent(grafanaJavaScriptAgentOptions);