Flutter SDK observability reference
This LaunchDarkly observability plugin is available for early access
This LaunchDarkly observability plugin is currently available in Early Access, and APIs are subject to change until a 1.x version is released.
This topic documents how to get started with the LaunchDarkly observability plugin for the Flutter SDK.
The launchdarkly_flutter_observability package provides error monitoring, logging, tracing, and session replay through a single public facade named LDObserve.
SDK quick links
LaunchDarkly SDKs are open source. In addition to this reference guide, we provide source, API reference documentation, and a sample application:
Prerequisites and dependencies
This reference guide assumes you are familiar with the LaunchDarkly Flutter SDK.
The observability plugin requires the LaunchDarkly Flutter SDK version 4.17.0 or later.
The Flutter observability plugin is compatible with iOS, Android, and web platforms. Session replay is supported only on iOS and Android. Web session replay is not yet available.
Get started
Follow these steps to get started:
- Install the package
- Initialize observability
- Configure plugin options
- Configure session replay
- Explore supported features
- Review observability data in LaunchDarkly
Install the package
Add both the LaunchDarkly Flutter SDK and the observability package to your pubspec.yaml:
Then run:
For iOS, install the native pod dependencies from your app’s ios/ directory:
No extra setup is required for Android. Gradle resolves the plugin automatically.
After you install the dependencies, import the packages into your code:
Initialize observability
To initialize, you need your LaunchDarkly environment’s mobile key. This authorizes your application to connect to a particular environment within LaunchDarkly. To learn more, read Initialize the client in the Flutter SDK reference guide.
Flutter observability mobile and web builds use different credential types
The Flutter observability SDK uses a mobile key for iOS and Android builds. For web builds, use a client-side ID instead. Keys are specific to each project and environment. They are available on the SDK keys page under Settings. To learn more about key types, read Keys.
Mobile keys are not secret and you can expose them in your client-side code without risk. However, never embed a server-side SDK key into a client-side application.
There are two initialization variants. Use LDObserve.init if you are using the LaunchDarkly client, or LDObserve.initStandalone to initialize without a client.
Initialize with a LaunchDarkly client
Pass your LDClient to LDObserve.init. This registers the observability plugin on the client so feature flag evaluations are correlated with your telemetry:
Initialize standalone
To initialize without creating a LaunchDarkly client, pass your mobile key directly to LDObserve.initStandalone:
Configure plugin options
Pass an ObservabilityOptions object to LDObserve.init or LDObserve.initStandalone to configure observability behavior:
These ObservabilityOptions configuration options are available on all platforms:
- isEnabled: Enables or disables observability. Defaults to
true. - serviceName: The service name for telemetry. Defaults to
"observability-flutter". - serviceVersion: The service version, commonly a Git SHA or semantic version string. Defaults to
"0.1.0". - instrumentation: An
InstrumentationOptionsobject that controls automatic instrumentation. To learn more, read Instrumentation options. - otlpEndpoint: The OTLP endpoint for reporting OpenTelemetry data. Defaults to
https://otel.observability.app.launchdarkly.com:4318. You do not need to change this for most configurations. - backendUrl: The LaunchDarkly back-end URL. Defaults to
https://pub.observability.app.launchdarkly.com. You do not need to change this for most configurations. - contextFriendlyName: A display name to identify the user’s session in the observability UI.
- attributes: A map of additional resource attributes to include in telemetry.
The following ObservabilityOptions configuration options are available only on Android and iOS:
- customHeaders: Extra HTTP headers added to OTLP exports, for example for proxies or authentication. Defaults to
{}. - sessionBackgroundTimeout: How long the app can stay in the background before the session ends. Defaults to 15 minutes.
- logsApiLevel: The minimum severity of logs forwarded to the logs pipeline. Use
ObservabilityLogLevel.noneto disable logs. Defaults toObservabilityLogLevel.info. - traces: A
TracesOptionsobject that controls automatic trace generation. TogglesincludeErrorsandincludeSpans. Both default totrue. - metricsEnabled: Whether metrics are exported. Defaults to
true. - productAnalytics: A
ProductAnalyticsOptionsobject that controls telemetry for product analytics events:- taps: Emits a span for each user click or tap. Defaults to
false. - pageViews (Android only): Emits spans for screen and page view lifecycle events. Defaults to
true. - trackEvents (Android only): Emits a span when a custom metric event is created with
track(). Defaults totrue. To learn more, read Product analytics events.
- taps: Emits a span for each user click or tap. Defaults to
For more information on plugin options, read Configuration for client-side observability.
Instrumentation options
The InstrumentationOptions class controls which automatic instrumentation features are active. Pass it to the instrumentation parameter of ObservabilityOptions.
These instrumentation options are available on all platforms:
- networkRequests: When
true, automatically instruments HTTP network requests. Defaults totrue. - launchTimes: When
true, measures and reports application launch time. Defaults totrue. - debugPrint: Controls whether
debugPrintcalls are automatically captured as log events:DebugPrintSetting.releaseOnly()(the default) capturesdebugPrintcalls only in release builds.DebugPrintSetting.always()capturesdebugPrintcalls in all build configurations. When enabled,debugPrintoutput does not appear in the Flutter console.DebugPrintSetting.disabled()does not instrumentdebugPrint.
The following InstrumentationOptions configuration option is available only on Android and iOS:
- crashReporting: When
true, reports uncaught exceptions as errors. Defaults totrue.
Intercept print statements
To capture the output from print statements, pass LDObserve.zoneSpecification() to runZonedGuarded:
Map contexts to friendly names
Use contextFriendlyName to set a human-readable display name for the user’s session when displayed in the observability User Interface (UI):
Configure session replay
Session replay is in Early Access
Session replay for Flutter is available in Early Access. APIs are subject to change until a 1.x version is released.
Session replay captures screen recordings of user actions to help you understand how users interact with your application. It is included in the launchdarkly_flutter_observability package and uses native iOS and Android libraries to capture and upload recordings.
Session replay for Flutter is supported only on iOS and Android. Web session replay is not yet available.
Initialize session replay
To enable session replay, pass a SessionReplayOptions object to the replay parameter of LDObserve.init or LDObserve.initStandalone, and wrap your app in SessionReplayCapture:
SessionReplayCapture widget
Wrap your top-level widget in SessionReplayCapture to allow the native session replay library to capture screen content. On web, SessionReplayCapture is a no-op pass-through, so it is safe to use on every platform:
Session replay configuration options
Pass a SessionReplayOptions object to LDObserve.init or LDObserve.initStandalone to control session replay behavior:
These SessionReplayOptions configuration options are available on all platforms:
- isEnabled: Controls whether session recording starts. Defaults to
true. - privacy: A
PrivacyOptionsobject that controls which UI elements are masked. To learn more, read Privacy options.
The following SessionReplayOptions configuration option is available only on Android and iOS:
- frameRate: Target capture rate in frames per second. Defaults to
1.0.
Privacy options
Use PrivacyOptions to control which elements are masked in session replay recordings. By default, text inputs are masked to protect user data.
The available privacy options are:
- maskTextInputs: Masks all text input fields. Defaults to
true. - maskWebViews: Masks the contents of web views. When enabled, web views appear as blank rectangles in recordings. Defaults to
false. - maskLabels: Masks all text labels. Defaults to
false. - maskImages: Masks all images. Defaults to
false. - minimumAlpha: (iOS only) Minimum alpha value for a view to be captured. Views with a lower alpha are not recorded. Defaults to
0.02.
Per-widget masking
In addition to screen-wide PrivacyOptions, you can redact individual widgets using LDMask and LDUnmask.
Use LDMask to redact a widget’s subtree in all captured frames:
Use LDUnmask to exempt a subtree from global masking rules such as maskTextInputs. For example, to reveal one non-sensitive field on a page where every input is masked:
LDUnmask only overrides global masking. It does not override an explicit LDMask. An LDUnmask nested inside an LDMask stays masked.
LDMask and LDUnmask are active on iOS and Android. On web they render their child unchanged.
To learn more about session replay configuration, read Configuration for session replay.
Explore supported features
The observability plugin supports the following features. After the SDK and plugins are initialized, you can access these from within your application:
Review observability data in LaunchDarkly
After you initialize the SDK and observability plugin, your application automatically starts sending observability data back to LaunchDarkly, including errors and logs. You can review this information in the LaunchDarkly user interface. To learn how, read Observability.