0

I'm searching for a tool designed for LAMP server that combines server Error log, Access log, slow query log, takes time of execution of PHP scripts,traffic and req per sec statistics (for example from RRDTool) and put it all into one chronological list.

Do you know this kind of tool?

Tom Smykowski
  • 1,115
  • 5
  • 19
  • 27

1 Answers1

1

Splunk is a great tool for this, and free for limited processing. However, if you're looking for a homegrown solution, I would just standardize the date format, cat them all together, and then pipe them through sort. I.e.,

cat ALL_LOGS | sort on standard field
Andrew M.
  • 10,982
  • 2
  • 34
  • 29