https://github.com/benzid-wael/xvisitors
XVisitors, a fast web log analyzer. This is a fork of Visitors v0.7 (See http://www.hping.org/visitors/)
https://github.com/benzid-wael/xvisitors
apache log-analyzer
Last synced: 7 months ago
JSON representation
XVisitors, a fast web log analyzer. This is a fork of Visitors v0.7 (See http://www.hping.org/visitors/)
- Host: GitHub
- URL: https://github.com/benzid-wael/xvisitors
- Owner: benzid-wael
- License: other
- Created: 2014-04-24T09:29:48.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-19T10:44:11.000Z (about 12 years ago)
- Last Synced: 2025-02-25T14:54:36.126Z (over 1 year ago)
- Topics: apache, log-analyzer
- Language: C
- Homepage:
- Size: 363 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README
- Changelog: Changelog
- License: COPYING
- Security: SECURITY
Awesome Lists containing this project
README
WELCOME TO VISITORS 0.7
-----------------------
Hello, this is Visitors,
a fast and easy to use web log analyzer.
For more usage information, documentation and examples
please visit:
http://www.hping.org/visitors
or check the docs.html file in this directory
for the reference documentation.
DEPENDENCIES
------------
* libglib2.0-dev
HOW TO COMPILE
--------------
Under UNIX systems just type:
% make
Under WIN32 you need MINGW and MSYS, then follow the above
istructions.
For compliation problems please write an email to
with the exact problem, version of Visitors, environment, GCC used, and so
on.
HOW TO USE WITH IIS LOGS
------------------------
Use the iis2apache.pl perl script to do the conversion, like:
cat yourIISLogFile.txt | perl iis2apache.pl > yourConvertedFile.txt
Then run visitors against "yourConvertedFile.txt".
There is an alternative way to convert logs using a program
that does not require Perl, with Windows and Linux binaries.
This program is called RConvLog and it's possible to
download it at http://www.rebex.net/RConvLog/
HOW TO GET SCREEN RESOLUTION INFORMATION
----------------------------------------
Log files don't contain information about the screen resolution
so in order to generate the screen resolution report Visitors needs
that you add the following code in your home page, after the
tag:
document.write("<div style=\"visiblity:hidden;display:none;\"><img src=\"visitors-screen-res-check.jpg?"+screen.width+"x"+screen.height+"x"+screen.colorDepth+"\" /></div>");
Without this code the screen resolution report will not work.