https://github.com/tommy-muehle/error-log-parser
Simple PHP library to parse Apache or Nginx error-log file entries for further usage.
https://github.com/tommy-muehle/error-log-parser
apache error-log formless nginx parser php
Last synced: 6 months ago
JSON representation
Simple PHP library to parse Apache or Nginx error-log file entries for further usage.
- Host: GitHub
- URL: https://github.com/tommy-muehle/error-log-parser
- Owner: tommy-muehle
- License: mit
- Archived: true
- Created: 2015-12-31T22:14:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-04-09T18:42:54.000Z (about 5 years ago)
- Last Synced: 2025-01-15T15:55:17.171Z (6 months ago)
- Topics: apache, error-log, formless, nginx, parser, php
- Language: PHP
- Homepage:
- Size: 22.5 KB
- Stars: 22
- Watchers: 5
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# error-log-parser
[](https://travis-ci.org/tommy-muehle/error-log-parser)
[](https://php.net/)
[](https://raw.githubusercontent.com/tommy-muehle/error-log-parser/master/LICENSE)
[](https://github.com/tommy-muehle/error-log-parser/issues)Simple PHP library to parse Apache or Nginx error-log file entries for further usage.
## Install
Using [Composer](https://getcomposer.org/)
$ composer require tm/error-log-parser
or manually add this to composer.json{
"require": {
"tm/error-log-parser": "~1.1"
}
}## Usage
Instantiate the class:
use TM\ErrorLogParser\Parser;
$parser = new Parser(Parser::TYPE_APACHE) // or TYPE_NGINX;
And then parse the lines:function getLines($file)
{
$f = fopen($file, 'r');
if (!$f) throw new Exception();
while ($line = fgets($f)) {
yield $line;
}
fclose($f);
}
foreach (getLines('/var/log/apache2/error.log') as $line) {
$entry = $parser->parse($line);
}
Where ```$entry``` hold all parsed data.
For Apache:stdClass Object (
[date] => "Tue Dec 29 08:14:45 2015"
[type] => "warn"
[client] => "193.158.15.243"
[message] => "mod_fcgid: stderr: PHP Warning: Division by zero in /var/www/kd/app.de/src/Calc.php on line 346, referer: https://www.app.de"
)And for Nginx:
stdClass Object (
[date] => "2011/06/10 13:30:10"
[type] => "error"
[message] => "*1 directory index of "/var/www/ssl/" is forbidden"
[client] => "86.186.86.232"
[server] => "hotelpublisher.com"
[request] => "GET / HTTP/1.1"
[host] => "hotelpublisher.com"
)Otherwise you can use the FormlessParser for formless log files:
stdClass Object (
[type] => "info"
[message] => "23263#0: *1 directory index of "/var/www/ssl/" is forbidden, client: 86.186.86.232, server: hotelpublisher.com, request: "GET / HTTP/1.1", host: "hotelpublisher.com""
)
## ContributingPlease refer to [CONTRIBUTING.md](CONTRIBUTING.md) for information on how to contribute.