add different conditions that constraint the list of top IPs - [x] select the type of data user wants to see: infclen / requests / body_bytes_sent - [x] filter minimum value of datatype in table -> prevents loading big table. User want to see the top IPs - [ ] filter service - [x] all: `service_id IS NULL` - [x] single: `service_id = ...` - [ ] multiple: `SUM(...)` + `service_id IN (...)` + `GROUP BY` - [x] start and end inspected period - [x] inspected period level ???
add different conditions that constraint the list of top IPs
service_id IS NULLservice_id = ...SUM(...)+service_id IN (...)+GROUP BY