In message <[email protected]>, Tung Nguyen writes: >Hey guys, > >In the the varnishlog output > >https://gist.github.com/8b163cc29fbd5e3141f6 > >Where can I find out more info on what the columns mean, >So what does the 7 vs 10 mean in the first column? >What does the b vs c mean in the second column?
The first column is a magic number for each transaction. This is what allows you collect all the messages that belong to the same transaction. For the time being, it is also the file descriptor number of the socket, but this is not guaranteed to always be the case. The 'b' means "backend transaction, and 'c' client side transaction. > 7 VCL_return c pass >10 BackendOpen b default 127.0.0.1 57141 0.0.0.0 3000 > 7 Backend c 10 default default >10 TxRequest b HEAD -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 [email protected] | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. _______________________________________________ varnish-misc mailing list [email protected] http://projects.linpro.no/mailman/listinfo/varnish-misc
