Need Help!!
We have configure sentry dsn with proxy using below ways but we are not successful.
-
Configured proxy by using sentry.init
Sentry.init(sentryOptions → {
sentryOptions.setDsn(“dsn”);
SentryOptions.Proxy proxy = new SentryOptions.Proxy(“localhost”,“8585”,
null,null);
sentryOptions.setProxy(proxy); -
Configured using application.properties file
sentry.proxy.host=localhost
sentry.proxy.port=8585 -
Configured using vm args.
-Dhttp.proxyHost=localhost -Dhttp.proxyPort=8585
Still not able to connect dsn.
Thanks in advance!!