Live
9,303 Calls
GET /bikestore/runSQL.jsp
Trace ID: af2f51f6a6ed0675
Sub Calls
7
Erroneous Calls
0
Error Logs
0
Warn Logs
0
Duration
5.00min
Timeline
Started: 2024-03-21, 14:15:01
5.00min
GET /bikestore/runSQL.jsp
CONNECT
select avg(a.orders) items_per_customer FROM (SELECT customer_id, count(*) orders from orders GROUP BY customer_id ) a
select distinct order_status from orders
select c.customer_id, c.first_name, c.last_name, o.order_status from customers c, orders o where c.customer_id = o.customer_id and o.order_status = 1
select count(*) from order_items
select avg(a.items) items_per_order FROM (SELECT order_id, count(*) items from order_items group by order_id) a
Calls

Started: 2024-03-21, 14:15:01

Root call latency 5.00min

5.00min
GET /bikestore/runSQL.jspHTTP
300,001ms
CONNECTDATABASE
75ms
select avg(a.orders) items_per_customer FROM (SELECT customer_id, count(*) orders from orders GROUP BY customer_id ) aDATABASE
299,727ms
select distinct order_status from ordersDATABASE
141ms
select c.customer_id, c.first_name, c.last_name, o.order_status from customers c, orders o where c.customer_id = o.customer_id and o.order_status = 1DATABASE
8ms
select count(*) from order_itemsDATABASE
45ms
select avg(a.items) items_per_order FROM (SELECT order_id, count(*) items from order_items group by order_id) aDATABASE
5ms