sentry_file 7.0.0-alpha.5 copy "sentry_file: ^7.0.0-alpha.5" to clipboard
sentry_file: ^7.0.0-alpha.5 copied to clipboard

An integration which adds support for performance tracing for dart.io.File.


Sentry integration for dart.io.File #

package build pub likes popularity pub points
sentry_file build pub package likes popularity pub points

Usage

import 'package:sentry/sentry.dart';
import 'package:sentry_file/sentry_file.dart';
import 'dart:io';

Future<void> main() async {
  // or SentryFlutter.init
  await Sentry.init(
    (options) {
      options.dsn = 'https://[email protected]/example';
      // To set a uniform sample rate
      options.tracesSampleRate = 1.0;
    },
    appRunner: runApp, // Init your App.
  );
}

Future<void> runApp() async {
  final file = File('my_file.txt');
  // Call the Sentry extension method to wrap up the File
  final sentryFile = file.sentryTrace();

  // Start a transaction if there's no active transaction
  final transaction = Sentry.startTransaction(
    'MyFileExample',
    'file',
    bindToScope: true,
  );

  // create the File
  await sentryFile.create();
  // Write some content
  await sentryFile.writeAsString('Hello World');
  // Read the content
  final text = await sentryFile.readAsString();

  print(text);

  // Delete the file
  await sentryFile.delete();

  // Finish the transaction
  await transaction.finish(status: SpanStatus.ok());

  await Sentry.close();
}

Resources

  • Documentation
  • Forum
  • Discord
  • Stack Overflow
  • Twitter Follow
2
likes
0
pub points
75%
popularity

Publisher

verified publishersentry.io

An integration which adds support for performance tracing for dart.io.File.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta, sentry

More

Packages that depend on sentry_file