This package has been deprecated in favor of the official Datadog Flutter SDK. Please see the announcement or skip ahead to the new, official repo.
Community implementation of native bindings for Datadog's SDK. This is not an official package.
await DatadogFlutter.initialize(
clientToken: myDatadogClientToken,
serviceName: 'my-app-name',
environment: 'production',
)
await DatadogFlutter.setUserInfo(id: <YOUR_USER_ID>);
TrackingConsent
at initialization or later within your application. Events will not be logged until trackingConsent
is .granted
. This value can be updated via DatadogFlutter.updateTrackingConsent
.:warning: Your Podfile must have use_frameworks!
(Flutter includes this by default) and your minimum iOS target must be >= 11. This is a requirement from the Datadog SDK.
The Datadog scripts need to be inserted in your index.html
document. Please add both the logging script and the RUM script to their own <script>
tags. DO NOT add the .init
on .onReady
code.
In its default implementation, log data will only be transmitted to Datadog through Logger
records. print
statements are not guaranteed to be captured.
ddLogger = DatadogLogger(loggerName: 'orders');
// optionally set a value for HOST
// ddLogger.addAttribute('hostname', <DEVICE IDENTIFIER>);
ddLogger.addTag('restaurant_type', 'pizza');
ddLogger.removeTag('restaurant_type');
// add attribute to every log
ddLogger.addAttribute('toppings', 'extra_cheese');
// add atttributes to some logs
ddLogger.log('time to cook pizza', Level.FINE, attributes: {
'durationInMilliseconds': timer.elapsedMilliseconds,
});
addTag
and removeTag
are not invoked and resolve silently when using Flutter web. This is a missing feature in Datadog's JS SDK.RUM adds support for error, event, and screen tracking. The integration requires additional configuration for each service.
initialize
:
await DatadogFlutter.initialize(
clientToken: myDatadogClientToken,
serviceName: 'my-app-name',
environment: 'production',
iosRumApplicationId: myiOSRumApplicationId,
androidRumApplicationId: myAndroidRumApplicationId,
webRumApplicationId: myWebRumApplicationId,
)
MaterialApp(
// ...your material config...
home: HomeScreen(),
navigatorObservers: [
DatadogObserver(),
],
);
Automatically report errors (on iOS deployments be sure to upload your dSYMs):
void main() async {
// Capture Flutter errors automatically:
FlutterError.onError = DatadogRum.instance.addFlutterError;
// Catch errors without crashing the app:
runZonedGuarded(() {
runApp(MyApp());
}, (error, stackTrace) {
DatadogRum.instance.addError(error, stackTrace);
});
}
RUMAction.custom
events):
GestureDetector(onTap: () {
DatadogRum.instance.addUserAction('EventTapped');
})
try {
throw StateError();
} catch (e, st) {
DatadogRum.instance.addError(e, st);
}
await DatadogRum.startResourceLoading(
aUniqueIdentifier,
url: 'https://example.com',
method: RUMResources.get,
);
await DatadogRum.stopResourceLoading(
aUniqueIdentifier,
statusCode: 500,
errorMessage: 'Internal Server Error' ,
)
addUserAction
ignores the action
when using Flutter web.updateTrackingConsent
is not invoked and fails silently when using Flutter web. This is a missing feature in Datadog's JS SDK.stopView
is not invoked and fails silently when using Flutter web. This is a missing feature in Datadog's JS SDK.startUserAction
and stopStopUserAction
are not invoked and fail silently when using Flutter web. This is a missing feature in Datadog's JS SDK.startResourceLoading
and stopResourceLoading
are not invoked and resolve silently when using Flutter web. This is a missing feature in Datadog's JS SDK.setUserInfo
does not support custom attributes when using Flutter web. This is due to Dart's method of strongly typing JS. Only name
, id
, and email
are supported.Associate your HTTP requests with your backend service. Be sure to setup (usually immediately after DatadogFlutter.initialize
):
await DatadogTracing.initialize();
For one-off requests, instantiate a fresh client:
final httpClient = DatadogTracingHttpClient();
// make requests
final response = await httpClient.get(Uri(string: 'http://example.com');
For frameworks that use an internal client like Brick, compose the client:
RestProvider(
client: DatadogTracingHttpClient();
)
// or compose if another client is already being used:
RestProvider(
client: DatadogTracingHttpClient(GZipHttpClient());
)
By default, the DatadogFlutter
default constructor will send all logs from Logger
to Datadog. To ignore, set bindOnRecord
:
DatadogLogger(bindOnRecord: false)
And log conditionally later:
Logger.root.onRecord.listen((record) async {
if (shouldSendToDatadog) {
ddLogger.onRecordCallback(record)
} else {
print(record);
}
});