Rename `gcCountBuffer` to `numberOfGcCycles`. (#101)

13 files changed
tree: 883c570e58d4b63e836b52d7063219ff261b2f9f
  1. .github/
  2. .vscode/
  3. doc/
  4. examples/
  5. pkgs/
  6. tool/
  7. .gitignore
  8. AUTHORS
  9. CODEOWNERS
  10. LICENSE
  11. README.md
README.md

Coming soon! See https://github.com/flutter/devtools/issues/3951 and https://github.com/flutter/devtools/issues/5606.

The text below is under construction.

CI

Memory Leak Tracker

TODO: replace links with absolute, to make them working on pub.dev

This is a framework for detecting memory issues in Dart and Flutter applications. It enables:

  1. Memory leak auto-detection for applications and tests.
  2. Memory usage tracking and auto-snapshotting.

Documentation:

  1. Understand leak tracking concepts
  2. Troubleshoot memory leaks

Packages

PackageDescriptionVersion
leak_trackerA framework for memory leak tracking for Dart and Flutter applications.pub package
leak_tracker_flutter_testTests for leak_tracker that depend on Flutter framework.
leak_tracker_testingLeak tracking code intended for usage in tests.pub package

How to enable logs

To temporary enable logs, add this line to main:

Logger.root.onRecord.listen((LogRecord record) => print(record.message));