Ajay
Ajay

Reputation: 485

HAProxy stats page explanation

In the HAProxy stats page under the front end section what does Errors - Req mean?

Errors             |
Req   | Conn | Resp
31 758|      |

Upvotes: 0

Views: 1019

Answers (1)

mweiss
mweiss

Reputation: 1373

From the documentation, this value maps to the ereq column in the CSV stats page and means the following:

  1. ereq [LF..]: request errors. Some of the possible causes are:
    • early termination from the client, before the request has been sent.
    • read error from the client
    • client timeout
    • client closed connection
    • various bad requests from the client.
    • request was tarpitted.

Upvotes: 1

Related Questions