=pod =head1 NAME B - Print traffic summary across time =head1 SYNOPSIS rwcount [--bin-size=SIZE] [--load-scheme=LOADSTYLE] [--start-epoch=TIME] [--epoch-slots] [--bin-slots] [--skip-zeroes] [--no-titles] [--no-columns] [--column-separator=CHAR] [{--delimited | --delimited=CHAR}] [--print-filenames] [--copy-input=PATH] [--output-path=PATH] [--pager=PAGER_PROG] [--site-config-file=FILENAME] [{--legacy-timestamps | --legacy-timestamps=NUM}] [FILES...] =head1 DESCRIPTION B summarizes SiLK flow records across time. It counts the records in the input stream, and groups their byte and packet totals into time bins. B produces textual output with a row for each bin. When input files are not specified on the command line, B will read records from the standard input. =head1 OPTIONS Option names may be abbreviated if the abbreviation is unique or is an exact match for an option. A parameter to an option may be specified as B<--arg>=I or B<--arg> I, though the first form is required for options that take optional parameters. =over 4 =item B<--bin-size>=I Denotes the size of each time bin, in seconds; defaults to 30 seconds. =item B<--load-scheme>=I Determines how the duration of each flow is mapped onto the time bins. I can be one of the following: =over 4 =item 0 Assumes the traffic is evenly distributed across the bins that contain any part of the flow's duration. For a flow whose duration spans five bins, each bin's packet- and byte-counts will be incremented with 1/5 of the values for the entire flow. The traffic is NOT evenly distributed across the flow's duration, since, when using a bin-size of 30 seconds, a particularly placed 32 second flow will span three bins, and each bin will receive 1/3 of the flow. Compare with option B<4>. =item 1 Assumes all of the traffic occurs in the initial second of the flow's duration. For a flow whose duration spans five bins, the first bin's packet- and byte-counts will be incremented with the values for the entire flow. =item 2 Assumes all of the traffic occurs in the last second of the flow's duration. For a flow whose duration spans five bins, the fifth bin's packet- and byte-counts will be incremented with the values for the entire flow. =item 3 Assumes all of the traffic occurs in the middle second of the flow's duration. For a flow whose duration spans five bins, the third bin's packet- and byte-counts will be incremented with the values for the entire flow. =item 4 Assumes the traffic is evenly distributed during each second that the flow is active. For a flow whose duration spans five bins, each bin will receive a portion of the flow-, packet-, and byte-counts weighted by the amount of time the flow spent in each bin. When using 30 second bins, a particularly placed 32 second flow will add 1/32 of its value to the first and last bins, and 30/32 to the middle bin. =back The default I is 4. =item B<--start-epoch>=I