Slackbot
04/21/2023, 8:02 PMAnkit Nayan
Vishal Sharma
04/24/2023, 1:11 PMduration
grouped by http.method
You can replace http.method
with any other attribute.
Also remember to use legend and y axis units as shared in screenshot.
SELECT toStartOfInterval(timestamp, INTERVAL 60 SECOND) AS ts,
stringTagMap['http.method'] as `http.method`, avg(durationNano) as value
from signoz_traces.distributed_signoz_index_v2 where
timestamp > now() - INTERVAL 30 MINUTE
AND has(stringTagMap, 'http.method') group by http.method,ts order by http.method ASC,ts
Vishal Sharma
04/24/2023, 1:13 PMRomario Lopez C
04/24/2023, 5:20 PMVishal Sharma
04/24/2023, 8:00 PMRomario Lopez C
04/24/2023, 8:16 PM