From 8d86037af9653e320c68a5f54d8f11622111a0b0 Mon Sep 17 00:00:00 2001 From: santileira Date: Mon, 16 Dec 2024 14:48:42 -0300 Subject: [PATCH] [EMBR-4663] ANR Duration custom metric --- docs/custom-metrics-api/supported_metrics.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/custom-metrics-api/supported_metrics.md b/docs/custom-metrics-api/supported_metrics.md index 051ca949..5c2853c8 100644 --- a/docs/custom-metrics-api/supported_metrics.md +++ b/docs/custom-metrics-api/supported_metrics.md @@ -16,6 +16,7 @@ The following metrics are supported as Custom Metrics. Metrics with the suffix " | Metric | Description | Filters | Group by granularity | Time granularity | |--------------------------------------------|----------------------------------------------|----------------------------------------------------------------------------------------------|-------------------------------------------------------------------------|----------------------------| | anrs_total | Number of anrs | method, sample_type | | five_minute, hourly, daily | +| anrs_duration_total | Sum of anrs durations | method, sample_type | | five_minute, hourly, daily | | crashes_total | Number of crashes | msg, tag_name, tag_value, | | five_minute, hourly, daily | | flutter_exceptions_total | Number of flutter exceptions | group_id, is_handled, msg, state | group_id, msg | five_minute, hourly, daily | | logs_total | Number of logs | log_property_key, log_property_value, msg, type | log_property_value | five_minute, hourly, daily | @@ -25,8 +26,8 @@ The following metrics are supported as Custom Metrics. Metrics with the suffix " | network_requests_total | Number of network requests | domain, method, path, status_code | status_code, top_n_domian, top_n_path | five_minute, hourly, daily | | sessions_total | Number of sessions | has_anr, session_property_key, sessions_property_value | session_property_value | five_minute, hourly, daily | | sessions_duration_total | Sum of sessions durations | has_anr, session_property_key, sessions_property_value | session_property_value | five_minute, hourly, daily | -| root_spans_total | Number of root spans | root_span_attribute_key, root_span_attribute_value, root_span_duration_bucket, root_span_name, root_span_outcome | root_span_attribute_value, root_span_duration_bucket, root_span_name, root_span_outcome | five_minute, hourly, daily | -| root_spans_duration_total | Sum of root spans duration | root_span_attribute_key, root_span_attribute_value, root_span_name, root_span_outcome | root_span_attribute_value, root_span_name, root_span_outcome | five_minute, hourly, daily | +| root_spans_total | Number of root spans | root_span_attribute_key, root_span_attribute_value, root_span_duration_bucket, root_span_name, root_span_outcome | root_span_attribute_value, root_span_duration_bucket, root_span_name, root_span_outcome | five_minute, hourly, daily | +| root_spans_duration_total | Sum of root spans duration | root_span_attribute_key, root_span_attribute_value, root_span_name, root_span_outcome | root_span_attribute_value, root_span_name, root_span_outcome | five_minute, hourly, daily | | unity_exceptions_total | Number of unity exceptions | group_id, is_handled, msg, state | group_id, msg | five_minute, hourly, daily | :::info