Hello Squid Users. I'm using squid 3.1.9 for reverse proxy for multiple domains. # squid.conf http_port 80 vhost cache_peer 1.1.1.1 parent 80 0 no-query originserver name=my_parent no-digest no-netdb-exchange cache_peer 2.2.2.2 parent 80 0 no-query originserver name=my_parent2 no-digest no-netdb-exchange acl s1_domain dstdomain www.abc.com acl s2_domain dstdomain www.xyz.com http_access allow s1_domain http_access allow s2_domain cache_peer_access my_parent allow s1_domain cache_peer_access my_parent2 allow s2_domain cache_peer_domain my_parent www.abc.com cache_peer_domain my_parent2 www.xyz.com #end I'd like to see each information per domain. www.abc.com and www.xyz.com Information means "Network usage(BPS)", "Concurrent connection", "HIT/MISS". Please let me know how to do it, or... If not possible, could you explain to me how to develop/modify it ? Thanks.