- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
If you have not set up the Datadog Flutter SDK for RUM yet, follow the in-app setup instructions or refer to the RUM Flutter setup documentation. Learn how to set up OpenTelemetry with RUM Flutter.
You can specify the following parameters in your configuration when intializing the SDK.
clientToken
env
env
to filter events by environment (for example, staging
or production
).site
us1
, us3
, us5
, eu1
, us1Fed
, and ap1
.nativeCrashReportEnabled
false
service
uploadFrequency
average
frequent
, average
, and rare
.batchSize
medium
small
, medium
, and large
.batchProcessingLevel
medium
Defines the maximum number of batches processed sequentially without a delay, within one reading and uploading cycle. With higher levels, more data is sent in a single upload cycle, and more CPU and memory are used to process the data. With lower levels, less data is sent in a single upload cycle, and less CPU and memory are used to process the data. Enum values: low
, medium
, and high
.version
version
is a Datadog tag, it must comply with the rules in Defining Tags.flavor
firstPartyHosts
firstPartyHostsWithTracinHeaders
. To specify different headers per host, use firstPartyHostsWithTracingHeaders
instead.firstPartyHostsWithTracingHeaders
final configuration = DatadogConfiguration(
clientToken: <CLIENT_TOKEN>,
env: `prod`,
site: DatadogSite.us1,
firstPartyHostsWithTracingHeaders: {
'example.com': {TracingHeaderType.b3},
},
);
The TracingHeaderType
enum has the following values:
datadog
: Datadog’s x-datadog-*
headerb3
: OpenTelemetry B3 single headerb3multi
: OpenTelemetry B3 multiple headerstracecontext
: W3C trace context headerrumConfiguration
Use the following parameters for the DatadogRumConfiguration
class.
applicationId
sessionSamplingRate
100.0
0.0
(no RUM events are sent) and 100.0
(all RUM events are sent).traceSampleRate
20.0
0.0
(no resources include APM tracing) and 100.0
(all resources include APM tracing).traceContextInjection
all
all
(inject trace context into all requests) or sampled
(inject trace context into only sampled requests).detectLongTasks
true
longTaskThreshold
0.1
0.02
. On Flutter Web, which always uses a value of 0.05
seconds, this argument is ignored.trackFrustrations
true
vitalUpdateFrequency
average
frequent
(100ms),average
(500ms), and rare
(1000ms). To disable mobile vitals collection, set this parameter to null
.reportFlutterPerformance
false
Enables reporting Flutter-specific performance metrics, including build and raster times.customEndpoint
telemetrySampleRate
20.0
The sampling rate for telemetry data, such as errors and debug logs.If you are using Flutter Navigator v2.0, your setup for automatic view tracking differs depending on your routing middleware. See Flutter Integrated Libraries for instructions on how to integrate with go_router, AutoRoute, and Beamer.
Flutter RUM automatically tracks attributes such as user activity, views (using the DatadogNavigationObserver
), errors, native crashes, and network requests (using the Datadog Tracking HTTP Client). See the RUM Data Collection documentation to learn about the RUM events and default attributes. You can further enrich user session information and gain finer control over the attributes collected by tracking custom events.
iOS RUM tracks the time it takes for your view to load. To notify the SDK that your view has finished loading, call the addViewLoadingTime
method on DatadogRum
.
Call this method when your view is fully loaded and ready to be displayed to the user:
DatadogSdk.instance.rum?.addViewLoadingTime(override);
Use the override
option to replace the previously calculated loading time for the current view.
After the loading time is sent, it is accessible as @view.loading_time
and is visible in the RUM UI.
Please note that this API is still experimental and might change in the future.
In addition to RUM’s default attributes, you can measure where your application is spending its time by using DdRum.addTiming
. The timing measure is relative to the start of the current RUM view.
For example, you can time how long it takes for your hero image to appear:
void _onHeroImageLoaded() {
DatadogSdk.instance.rum?.addTiming("hero_image");
}
Once you set the timing, it is accessible as @view.custom_timings.<timing_name>
. For example, @view.custom_timings.hero_image
.
To create visualizations in your dashboards, create a measure first.
You can track specific user actions such as taps, clicks, and scrolls using DdRum.addAction
.
To manually register instantaneous RUM actions such as RumActionType.tap
, use DdRum.addAction()
. For continuous RUM actions such as RumActionType.scroll
, use DdRum.startAction()
or DdRum.stopAction()
.
For example:
void _downloadResourceTapped(String resourceName) {
DatadogSdk.instance.rum?.addAction(
RumActionType.tap,
resourceName,
);
}
When using DdRum.startAction
and DdRum.stopAction
, the type
action must be the same for the Datadog Flutter SDK to match an action’s start with its completion.
In addition to tracking resources automatically using the Datadog Tracking HTTP Client, you can track specific custom resources such as network requests or third-party provider APIs using the following methods:
DdRum.startResource
DdRum.stopResource
DdRum.stopResourceWithError
DdRum.stopResourceWithErrorInfo
For example:
// in your network client:
DatadogSdk.instance.rum?.startResource(
"resource-key",
RumHttpMethod.get,
url,
);
// Later
DatadogSdk.instance.rum?.stopResource(
"resource-key",
200,
RumResourceType.image
);
The String
used for resourceKey
in both calls must be unique for the resource you are calling in order for the Flutter Datadog SDK to match a resource’s start with its completion.
To track specific errors, notify DdRum
when an error occurs with the message, source, exception, and additional attributes.
DatadogSdk.instance.rum?.addError("This is an error message.");
In addition to the default RUM attributes captured by the Datadog Flutter SDK automatically, you can choose to add additional contextual information (such as custom attributes) to your RUM events to enrich your observability within Datadog.
Custom attributes allow you to filter and group information about observed user behavior (such as the cart value, merchant tier, or ad campaign) with code-level information (such as backend services, session timeline, error logs, and network health).
To set a custom global attribute, use DdRum.addAttribute
.
DdRum.addAttribute
.DdRum.removeAttribute
.Adding user information to your RUM sessions makes it easy to:
The following attributes are optional, provide at least one of them:
Attribute | Type | Description |
---|---|---|
usr.id | String | Unique user identifier. |
usr.name | String | User friendly name, displayed by default in the RUM UI. |
usr.email | String | User email, displayed in the RUM UI if the user name is not present. It is also used to fetch Gravatars. |
To identify user sessions, use DatadogSdk.setUserInfo
.
For example:
DatadogSdk.instance.setUserInfo("1234", "John Doe", "john@doe.com");
You can add custom attributes to your user session. This additional information is automatically applied to logs, traces, and RUM events.
To remove an existing attribute, set it to null
.
For example:
DatadogSdk.instance.addUserExtraInfo({
'attribute_1': 'foo',
'attribute_2': null,
});
Use clearAllData
to clear all data that has not been sent to Datadog.
DatadogSdk.instance.clearAllData();
Note: This feature is not yet available for Flutter web applications.
To modify attributes of a RUM event before it is sent to Datadog or to drop an event entirely, use the Event Mappers API when configuring the Flutter RUM SDK:
final config = DatadogConfiguration(
// other configuration...
rumConfiguration: DatadogRumConfiguration(
applicationId: '<YOUR_APPLICATION_ID>',
rumViewEventMapper = (event) => event,
rumActionEventMapper = (event) => event,
rumResourceEventMapper = (event) => event,
rumErrorEventMapper = (event) => event,
rumLongTaskEventMapper = (event) => event,
),
);
Each mapper is a function with a signature of (T) -> T?
, where T
is a concrete RUM event type. This allows changing portions of the event before it is sent, or dropping the event entirely.
For example, to redact sensitive information in a RUM Resource’s url
, implement a custom redacted
function and use it in rumResourceEventMapper
:
rumResourceEventMapper = (event) {
var resourceEvent = resourceEvent
resourceEvent.resource.url = redacted(resourceEvent.resource.url)
return resourceEvent
}
Returning null
from the error, resource, or action mapper drops the event entirely; the event is not sent to Datadog. The value returned from the view event mapper must not be null
.
Depending on the event’s type, only some specific properties can be modified:
Event Type | Attribute key | Description |
---|---|---|
RumViewEvent | viewEvent.view.url | URL of the view. |
viewEvent.view.referrer | Referrer of the view. | |
RumActionEvent | actionEvent.action.target?.name | Name of the action. |
actionEvent.view.referrer | Referrer of the view linked to this action. | |
actionEvent.view.url | URL of the view linked to this action. | |
RumErrorEvent | errorEvent.error.message | Error message. |
errorEvent.error.stack | Stacktrace of the error. | |
errorEvent.error.resource?.url | URL of the resource the error refers to. | |
errorEvent.view.referrer | Referrer of the view linked to this action. | |
errorEvent.view.url | URL of the view linked to this error. | |
RumResourceEvent | resourceEvent.resource.url | URL of the resource. |
resourceEvent.view.referrer | Referrer of the view linked to this action. | |
resourceEvent.view.url | URL of the view linked to this resource. |
Retrieving the RUM session ID can be helpful for troubleshooting. For example, you can attach the session ID to support requests, emails, or bug reports so that your support team can later find the user session in Datadog.
You can access the RUM session ID at runtime without waiting for the sessionStarted
event:
final sessionId = await DatadogSdk.instance.rum?.getCurrentSessionId()
To enable the collection of Flutter-specific performance metrics, set reportFlutterPerformance: true
in DatadogRumConfiguration
. Widget build and raster times are displayed in Mobile Vitals.
The Datadog Tracking HTTP Client package and gRPC Interceptor package both support distributed traces through both automatic header generation and header ingestion. This section describes how to use OpenTelemetry with RUM Flutter.
When configuring your tracking client or gRPC Interceptor, you can specify the types of tracing headers you want Datadog to generate. For example, if you want to send b3
headers to example.com
and tracecontext
headers for myapi.names
, you can do so with the following code:
final hostHeaders = {
'example.com': { TracingHeaderType.b3 },
'myapi.names': { TracingHeaderType.tracecontext}
};
You can use this object during initial configuration:
// For default Datadog HTTP tracing:
final configuration = DatadogConfiguration(
// configuration
firstPartyHostsWithTracingHeaders: hostHeaders,
);
You can then enable tracing as usual.
This information is merged with any hosts set on DatadogConfiguration.firstPartyHosts
. Hosts specified in firstPartyHosts
generate Datadog Tracing Headers by default.
To determine if a specific URI is a first party host, use isFirstPartyHost
.
For example:
var host = 'example.com'
if (DatadogSdk.instance.isFirstPartyHost(host)){
print('$host is a first party host.');
}