Apache 错误日志分析器 - 哪个最好?

Apache 错误日志分析器 - 哪个最好?

我的服务器上预装了 3 个日志分析工具。您认为这 3 个分析工具中哪一个最好?

我的目标:基本上分析错误日志文件

安装的软件:

* Analog
* Awstats
* Webalizer

我确实读过这个问题-->Apache 日志分析器

谢谢。

答案1

您列出的三个日志分析器(模拟统计信息系统&Webalizer) 对 Apache 错误日志没有太多帮助。

我用过扫描错误日志总结 Apache error_log 文件已有好几年了。我每天从 Cron 运行它一两次,它会记住它完成的位置,以便能够拾取并添加到输出中。通常,我会让它生成一个 HTML 页面,其中包含问题的数量和 URL。但我可以生成其他格式。

答案2

四处寻找 Apache 错误日志解析器,直到我找到命令将按错误发生顺序解析您的错误文件:

sed 's^\[.*\]^^g' error.log | sed 's^\, referer: [^\n]*^^g' | sort | uniq -c | sort -n

输出:错误发生 - 错误文本

1 AH00126: Invalid URI in request GET HTTP/1.1
1 PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 32 bytes) in /var/www/con/libraries/joomla/database/driver/mysql.php on line 425
108 PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 512 bytes) in /var/www/es/libraries/joomla/database/driver/mysql.php on line 425
156 PHP Notice: Undefined index: select in /var/www/con/cli/form_output.php on line 3
156 PHP Notice: Undefined index: inputfrom_value in /var/www/con/cli/form_output.php on line 2
157 PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 83 bytes) in /var/www/es/libraries/joomla/database/driver/mysql.php on line 425
202 PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 32 bytes) in /var/www/es/libraries/joomla/database/driver/mysql.php on line 425
218 PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 80 bytes) in /var/www/es/libraries/joomla/database/driver/mysql.php on line 425
316 PHP Notice: Undefined index: in /var/www/con/cli/unit.php on line 513
520 PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 81 bytes) in /var/www/es/libraries/joomla/database/driver/mysql.php on line 425

要旨:https://gist.github.com/marcanuy/a08d5f2d9c19ba621399

相关内容