Ronnie,
The filter is tcp.len>0 and tcp.dstport==4176 and the
COUNT(*) variable is "tcp".
The graph is a flat line at 0.
If I apply the filter
as a display filter, I get lots of packets displayed, so I know the count isn't
really zero.
What did I miss?
Chuck
If you want to count how many packets there were just specify
"tcp" (or any field really would work) and it will count how many frames there
are containing tcp.
If you want to count how many bytes were carried
inside tcp use SUM(tcp.len) since this will add toghether all tcp.len fields it
finds.