haproxy_log_analysis icon indicating copy to clipboard operation
haproxy_log_analysis copied to clipboard

HAProxy log analyzer

Results 10 haproxy_log_analysis issues
Sort by recently updated
recently updated
newest added

The raw lines are being processed by a huge regular expression that needs to capture every small detail of it. This is the main factor of the slowness, as checked...

This way one does not need to remember all the filters and commands that exist ✨ How difficult is that, though? 😅

It would be cool to have `REPL`, so one can keep issuing commands over the same log file to further analyze. Something like calling `haproxy_log_analysis -l mylogfile.log -i` (`-i` for...

Allow users to add custom fields to logs at the end of the line and still using haproxy_log_analysis. Line Example adding encrypt and protocol at the end: Dec 18 13:29:38...

Some log lines don't contain a 'path' field, so filter_path fails when it is used. Checking the value first prevents it from bailing out.

While developing/debugging, it is useful to see the progress and how much time it took to process the file, but while using the tool it gets a bit on the...

Right now one can run a given number of commands **after** a list of filters have trimmed the complete log file. This is usually fine, but limits its flexibility, specially...

A given backend server can typically only handle a certain number of requests before it becomes overloaded. The haproxy maxconn setting can be used to limit the number of connections...

Adds a counter, top and filter for http host. The http host must be the second captured request header. ``capture request header X-Forwarded-For len 20`` ``capture request header Host len...

Version is 2.0b0. I have haproxy 1.5.12 capturing and logging the Host header, but I have not changed the httplog format at all. This is the added command to capture...