07 Apr 2025 09:51 AM
Hi ,
if anyone could help me with this :
want to fetch the data given here using usql .
Thanks in advance .
Solved! Go to Solution.
07 Apr 2025 02:13 PM - edited 07 Apr 2025 02:14 PM
Hi, usql alone will not do the job fully, but you can extract apdexcategory data for timeslots (in this usql it's 5 minute slot) for entry actions and then count externally via apdex formula (https://en.wikipedia.org/wiki/Apdex) for each slot:
SELECT DATETIME(startTime, "yyyy-MM-dd hh:mm", "5m") AS time, apdexCategory, COUNT(apdexCategory) FROM useraction WHERE application IS "yourappname" AND isEntryAction IS true group by time, apdexCategory ORDER BY time ASC