Hi,
Thanks for FMS Log Analyzer. I have a couple of suggestions :
1.) In the README, you should specify that the Logger.xml may need to be changed. My default install of FMS did not have all the required fields, so I needed to change the Logger.xml fields config to :
<Fields>x-category;x-event;date;time;tz;c-client-id;x-pid;c-ip;cs-bytes;sc-bytes;x-duration;x-sname;sc-stream-bytes;x-file-size;x-file-length;x-file-name;x-status</Fields>
2.) The process.php file tries to analyse all log files. In my default install of FMS, the logs directory also contains the admin, application, edge and other logs. This caused errors with process.php. I changed the following line in process.php :
if ($file != "." && $file != "..") {
to this :
if (preg_match("/access\.[0-9]+\.log/",$file)) {
Then it only read access.XX.log files.
Thanks again!
-Mark