NAME
reslog - Reverse-resolve IP in Apache log files
SYNOPSIS
reslog [options] [logfile...]
reslog [-h|-v]
DESCRIPTION
reslog resolves IPs in Apache(8) log files. The result can then be analyzed by another program, like Analog. You can think of it as a replacement of the Apache(8) HostNameLookups
directive, in the sense that it resolves client IPs altogether once a day.
Resolving takes long time. This is mainly caused by resolving: Network packets may be filtered by firewalls; DNS servers may not be correctly configured; may not be up working; may sit in slow network sections; may be old slow machines; may have traffic jam... etc. All these reasons are out of our control.
If it stops in the middle of its execution, as when the user hits a Ctrl-Break
, it may leave a temporary working file. The next time it runs, it will stop when it sees that temporary working file at the first sight. Please process that file first. You can resolve it again, just like an ordinary log file.
This prorgam needs temporary working space. Between memory and disk space, I choose disk space, since it is cheaper and may be available in more environments. However, this means that it needs free temporary disk space about 2 times of the size of the source log log file (10 times if using memory). Please make sure you have that much free space.
OPTIONS
- logfile
-
The log file to be resolved. If not specified, it will read from
STDIN
and output toSTDOUT
. You can also specify-
to read fromSTDIN
. Multiple log files are supported. If one of these files areSTDIN
, it will output toSTDOUT
. Gzipped files are supported, too. - -k,--keep=mode
-
What to keep in the source file. Currently the following modes are supported:
- -o,--override=mode
-
Whether we should overwrite the existing resolved files. Currently the following modes are supported:
- -s,--suffix=suf
-
The suffix to be appended to the output file. If not specified, the default is
.resolved
. - -t,--trim-suffix=suf
-
The suffix to be trimmed from the input file name before appending the above suffix. Default is none. If you are running several log file filters, this can help you trim the suffix of the previous one.
- -n,--num-threads=n
-
Number of threads to run simultaneously. The default is 10. Use 0 to disable threading. This option has no effect on systems that does not support threading.
- -c, --stdout
-
Output the result to
STDOUT
. - -d, --debug
-
Show the detailed debugging messages.
- -q, --quiet
-
Shihhhhhh. Only yell when errors.
- -h, --help
-
Display the help message and exit.
- -v, --version
-
Output version information and exit.
VERSION
3.00
COPYRIGHT
Copyright (c) 2001-2005 imacat. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
AUTHOR
imacat <imacat@mail.imacat.idv.tw>
BUGS
Please report if any. ^_*'
TODO
Currently none. You can tell me. ^_*'
SEE ALSO
Compress::Zlib(3), Compress::Bzip2(3), perlthrtut(1), gzip(1), zlib(3), bzip2(1).