Ziton Error
A Flutter package for error monitoring and reporting. Listen for common flutter errors & push error details along with Stack trace, platform & screen information to ziton project dashboard when it occurs at debug level. Production level errors are reported using reportError Function where user can specify custom error message and description, platform and screen information along with error message pushed to ziton dashboard.
Features
- Error information with context
- Platform and screen information
- Error file info with lines causing error
- Project panel for collaboration
- Assign & share errors
- Report error in production mode
Getting Started
0. Create project
Create a flutter project in Ziton dashboard and copy down the dsn for that project
1. Depend on it
Add package name with version to your package's pubspec.yaml file:
dependencies:
ziton_error 0.0.3
2. Install it
Install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter pub get
3. Import it
Import in Dart contains runApp function, you can use:
import 'package:ziton_error/ziton_error.dart';
Usage in debug level
Import package ziton_error and Listen for errors with ZitonError function
//call FlutterError function inside main()
void main() {
FlutterError.onError = (FlutterErrorDetails errorDetails){
//report error to ziton
ZitonError("your dsn",errorDetails);
};
runApp(const MyApp());
}
Usage in production level
Import package ziton_error add reportError in catch block with error message and description
try {
//something won't work
}
catch (error) {
//call report error function with parameters dsn,name, filename, description.
ReportError(
"https://OokNpSGVsSrzqesUiHBTXHnzFDtGMVoViJdgtXcFNCUmYwhQhwXiouYWbTFy.ziton.live",
"error function does not exist",
"main.dart",
"error in running this code.this code produces error that must be reported to the ziton live"
);
}
dsn is the unique key provided to each project, look something like this
https://OokNpSGxxxxxxxxxxxxxxxxxxxxxcFNCUmYwhQhwXiouYWbTFy.ziton.live
Dashboard Error View
xError Listing with tracking number of occurance sort out based on time
xIndividual Error with meta data and detailed clean view of stack trace
Create project and generate dsn
xHead on to ziton.live homepage
xLogin to ziton.live
xclick on create new project
xadd name and description of the project
xchoose the stack whether flutter/django
xhere you go 🥳 copy your dsn and add to project 😍
Project info
xselect red mark on top right side of the project card
xproject dsnxdeleting projectxadd collaberators
can be done from this screen
Additional information
head on to Ziton Home for further information.