firebase_performance 0.0.1 firebase_performance: ^0.0.1 copied to clipboard
Flutter plugin for Google Performance Monitoring for Firebase, an app measurement solution that monitors traces and HTTP/S network requests on Android and iOS.
Google Performance Monitoring for Firebase #
A Flutter plugin to use the Google Performance Monitoring for Firebase API.
For Flutter plugins for other Firebase products, see FlutterFire.md.
Note: This plugin is still under development, and some APIs might not be available yet. Feedback and Pull Requests are most welcome!
Usage #
To use this plugin, add firebase_performance
as a dependency in your pubspec.yaml file. You must also configure firebase performance monitoring for each platform project: Android and iOS (see the example folder or https://codelabs.developers.google.com/codelabs/flutter-firebase/#4 for step by step details).
Define a Custom Trace #
A custom trace is a report of performance data associated with some of the code in your app. To learn more about custom traces, see the Performance Monitoring overview.
Trace myTrace = FirebasePerformance.instance.newTrace("test_trace");
myTrace.start();
Item item = cache.fetch("item");
if (item != null) {
myTrace.incrementCounter("item_cache_hit");
} else {
myTrace.incrementCounter("item_cache_miss");
}
myTrace.stop();
Getting Started #
See the example
directory for a complete sample app using Google Performance Monitoring for Firebase.