configurações do wirehark

# filter by uri with a regex
http
.request.uri matches "issue.php$"

# filter by hostname
http
.request.full_uri ~ "www.test.com"

# http request which goes to port 80
http
.request and tcp.dstport eq 80

# http response which is coming from port 80
http
.response and tcp.srcport eq 80