Actions
Development #321
open
PS
OPTYMALIZACJA
Development #321:
OPTYMALIZACJA
Status:
Backlog
Priority:
Low
Assignee:
-
Start date:
04/02/2026
Due date:
% Done:
0%
Estimated time:
Description
lista endpointów ponetcjalnych do opytmalizacji
SELECT
endpoint,
COUNT(*) AS requests_count,
MAX(execution_time) AS max_execution_time,
AVG(execution_time) AS avg_execution_time,
MAX(start_time) AS last_start_time
FROM request_log
WHERE start_time >= '2026-07-23'
GROUP BY endpoint
HAVING AVG(execution_time) > 10
ORDER BY avg_execution_time DESC;
Actions