Respostas:
Você pode usar tcpdump
.
# tcpdump filter for HTTP GET
sudo tcpdump -s 0 -A 'tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420'
# tcpdump filter for HTTP POST
sudo tcpdump -s 0 -A 'tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)'
Para uma solução usando, tshark
consulte:
https://serverfault.com/questions/84750/monitoring-http-traffic-using-tcpdump
Eu tenho usado tcpflow
para verificar solicitações recebidas em instâncias do aws, talvez haja uma maneira de agregar solicitações durante o dia.
PASSO 1 - instalação
# yum install --nogpgcheck http://pkgs.repoforge.org/tcpflow/tcpflow-0.21-1.2.el6.rf.x86_64.rpm
PASSO 2 - rastrear solicitações GET / POST na porta 80
# tcpflow -p -c -i eth0 port 80 | grep -oE '(GET|POST|HEAD) .* HTTP/1.[01]|Host: .*'