I install self host sentry by docker. In my flutter Application by using runZonedGuarded
:
void main() => runZonedGuarded(() async {
await SentryFlutter.init(
(options) {
options.dsn =
"http://2f4c84df6ec249dab1fe96c1b8309f7e@127.0.0.1:9000/2";
options.debug = true;
},
appRunner: () => runApp(MyApp()),
);
}, (exception, StackTrace stackTrace) async {
await Sentry.captureException(
exception,
stackTrace: stackTrace,
);
});
I am trying to report exception on Android emulator but i got:
java.net.ConnectException: Failed to connect to /127.0.0.1:9000
How can i change 127.0.0.1 on sentry ?It is possible to change from dashboard?