29 Jul 2025 05:33 AM
i need to get the requests response time average, min and max but i couldnt do it for the non key request , how can it be done either via DQL or data explore , Please share any JSON for dashboard or DQL Queries if possible
Solved! Go to Solution.
29 Jul 2025 08:00 AM
@sa_gopalm I think you need to first mark them as key requests to get the expected data and endpoint details or else they would be showing up as NON_KEY_REQUESTS in dashboard which is not much helpful . You can use a DQL query similar to below
timeseries { avg(dt.service.request.response_time), ResponseTime = avg(dt.service.request.response_time, scalar: true) }, by: { endpoint.name, dt.entity.service }
| fieldsAdd dt.entity.service.name = entityName(dt.entity.service)
29 Jul 2025 08:13 AM
In addition to @p_devulapalli answer (which is the recommended method), you might want to use spans as a source for your dashboards, or define span metrics in OpenPipeline.
08 Aug 2025 02:34 PM
Multidimensional analysis is an option for such cases