# # Nihuo Web Log Analyzer hit filter file # # Description: # Just analyze activities happend in weekend (sunday and satuday). # # The data of day of week filter is stored in a byte ( 8bit ), field name # is "flags" # # Hex Dec # SUN 0x01 1 # MON 0x02 2 # TUE 0x04 4 # WED 0x08 8 # THU 0x10 16 # FRI 0x20 32 # SAT 0x40 64 # # SUN + SAT = 1 + 64 = 65 # MON + TUE + WED + THU + FRI = 2 + 4 + 8 + 16 + 32 = 62 # # # Usage: # ./nwla -f=logfile --hitfilter=./filters/weekend.hfml # # # If you have any questions about filters and our products, please contact # us at support@loganalyzer.net, we wil feedback ASAP. # # Online tutorial of filters is available in # http://www.loganalyzer.net/tutorial.html#filter # # Hit Filter: Day of Week = as specified type=6 flags=65