alicloud_apm 1.1.1 copy "alicloud_apm: ^1.1.1" to clipboard
alicloud_apm: ^1.1.1 copied to clipboard

Alibaba Cloud EMAS APM Flutter plugin providing crash analysis, performance metrics, and native channel integrations for apps.

example/lib/main.dart

import 'package:alicloud_apm/alicloud_apm.dart';
import 'package:flutter/material.dart';

import 'app.dart';
import 'storage/apm_options_store.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();

  const store = ApmOptionsStore();
  final options = await store.loadForStartup();
  if (options != null) {
    final customColdLaunchEndTime = await store.loadCustomColdLaunchEndTime();
    await LaunchConfiguration.setCustomColdLaunchEndTime(
      customColdLaunchEndTime,
    );
    await Apm.start(options);
  }

  runApp(const ExampleApp(store: store));
}
7
likes
135
points
325
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Alibaba Cloud EMAS APM Flutter plugin providing crash analysis, performance metrics, and native channel integrations for apps.

Homepage

Topics

#apm #monitoring #crash-analysis #performance #remote-log

License

Apache-2.0 (license)

Dependencies

flutter, stack_trace

More

Packages that depend on alicloud_apm

Packages that implement alicloud_apm