dart-sdk/pkg/telemetry
Konstantin Shcheglov baff77f7cb Allow adding attachments to CrashReportSender.sendReport()
R=devoncarew@google.com

Change-Id: I2925a88190a545e16d97cb7baf985cfbc4bddd0d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/138180
Reviewed-by: Devon Carew <devoncarew@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
2020-03-04 20:09:16 +00:00
..
lib Allow adding attachments to CrashReportSender.sendReport() 2020-03-04 20:09:16 +00:00
test Allow adding attachments to CrashReportSender.sendReport() 2020-03-04 20:09:16 +00:00
analysis_options.yaml Test out no_implicit_casts on the analyzer source base. 2018-06-28 02:20:43 +00:00
LICENSE
pubspec.yaml [analyzer] fix an exception when run on platforms w/o home dirs 2019-06-28 18:31:49 +00:00
README.md Fix spelling errors in telemetry README. 2017-07-07 10:57:58 -07:00

telemetry

A library to facilitate reporting analytics and crash reports.

Analytics

This library is designed to allow all Dart SDK tools to easily send analytics information and crash reports. The tools share a common setting to configure sending analytics data. To use this library for a specific tool:

import 'package:telemetry/telemetry.dart';
import 'package:usage/usage.dart';

main() async {
  final String myAppTrackingID = ...;
  final String myAppName = ...;

  Analytics analytics = createAnalyticsInstance(myAppTrackingID, myAppName);
  ...
  analytics.sendScreenView('home');
  ...
  await analytics.waitForLastPing();
}

The analytics object reads from the correct user configuration file automatically without any additional configuration. Analytics will not be sent if the user has opted-out.

Crash reporting

To use the crash reporting functionality, import crash_reporting.dart, and create a new CrashReportSender instance:

import 'package:telemetry/crash_reporting.dart';

main() {
  Analytics analytics = ...;
  CrashReportSender sender = new CrashReportSender(analytics);
  try {
    ...
  } catch (e, st) {
    sender.sendReport(e, st);
  }
}

Crash reports will only be sent if the cooresponding [Analytics] object is configured to send analytics.