Helper to implements sentry with Angular.
import "package:angular/angular.dart";
import "package:angular_sentry/angular_sentry.dart";
main() {
bootstrap(MyApp, [
provide(SENTRY_DSN, useValue: "MY_SENTRY_DSN"),
provide(ExceptionHandler, useClass: AngularSentry)
]);
}
main() {
bootstrap(MyApp, [
AppSentry
]);
}
@Injectable()
class AppSentry extends AngularSentry {
AppSentry(Injector injector)
: super(injector, "MY_SENTRY_DSN");
SentryUser get user => new SentryUser();
String get environment => "production";
String get release => "1.0.0";
Map<String, String> get extra => {"location_url": window.location.href};
void onCatch(dynamic exception, Trace trace, [String reason]) {
if (exception is ClientException) {
log("Network error");
} else {
super.onCatch(exception, trace, reason);
}
}
}
sentry
package instead of sentry_client
Add this to your package's pubspec.yaml file:
dependencies:
angular_sentry: ^0.0.4
You can install packages from the command line:
with pub:
$ pub get
Alternatively, your editor might support pub get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:angular_sentry/angular_sentry.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.0.4 | Apr 16, 2018 |
|
|
0.0.3 | Apr 3, 2018 |
|
|
0.0.2 | Mar 6, 2018 |
|
|
0.0.1 | Feb 20, 2018 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0
|
Health:
Code health derived from static analysis.
[more]
|
--
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
--
|
Overall:
Weighted score of the above.
[more]
|
0
|
The package version is not analyzed, because it does not support Dart 2. Until this is resolved, the package will receive a health and maintenance score of 0.
Support Dart 2 in pubspec.yaml
.
The SDK constraint in pubspec.yaml
doesn't allow the Dart 2.0.0 release. For information about upgrading it to be Dart 2 compatible, please see https://www.dartlang.org/dart-2#migration.
Make sure dartdoc
successfully runs on your package's source files. (-10 points)
Dependencies were not resolved.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.20.1 <2.0.0 |