Commit 7aa05486 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Turn some descriptions into intended RST format.

parent 24d426d5
...@@ -38,32 +38,55 @@ ...@@ -38,32 +38,55 @@
* Arguments: * Arguments:
* Tag-Name * Tag-Name
* Short Description (1 line, max ?? chars) * Short Description (1 line, max ?? chars)
* Long Description (Multi line) * Long Description (in RST "definition list" format)
*/ */
SLTM(Debug, "", "") SLTM(Debug, "Debug messages",
SLTM(Error, "", "") "Debug messages can normally be ignored, but are sometimes\n"
SLTM(CLI, "CLI communication", "CLI communication between master and child process.") "helpful during trouble-shooting. Most debug messages must\n"
"be explicitly enabled with parameters."
)
SLTM(Error, "Error messages",
"Error messages are stuff you probably want to know."
)
SLTM(CLI, "CLI communication",
"CLI communication between master and child process."
)
SLTM(StatSess, "Session statistics", "") SLTM(StatSess, "Session statistics", "")
SLTM(ReqEnd, "Client request end", "Client request end. The first number is the XID. \n"
"The second is the time when processing of the request started.\n" SLTM(ReqEnd, "Client request end",
"The third is the time the request completed.\n" "Marks the end of client request.\n\n"
"The forth is is the time elapsed between the request actually being accepted and\n" "xid\n Transaction id.\n\n"
"the start of the request processing.\n" "Trxd\n Timestamp when the request started.\n\n"
"The fifth number is the time elapsed from the start of the request processing \n" "Tidle\n Timestamp when the request ended.\n\n"
"until we start delivering the object to the client.\n" "dTrx\n Time to receive request\n\n"
"The sixth and last number is the time from we start delivering the object\n" "dTproc\n Time to process request\n\n"
"until the request completes. ") "dTtx\n Time to transmit response\n\n"
SLTM(SessionOpen, "Client connection opened", "") )
SLTM(SessionClose, "Client connection closed", "SessionClose tells you why HTTP\n"
"client-connections are closed. These can be:\n" SLTM(SessionOpen, "Client connection opened",
"timeout - No keep-alive was received within sess_timeout\n" "The first record for a client connection, with the\n"
"Connection: close - The client specifed that keepalive should be disabled by sending a 'Connection: close' header.\n" "socket-endpoints of the connection.\n\n"
"no request - No initial request was received within sess_timeout.\n" "caddr\n Client IPv4/6 address\n\n"
"EOF - ???\n" "cport\n Client TCP port\n\n"
"remote closed - ???\n" "lsock\n Listen socket name\n\n"
"error - Processing reached vcl_error even if the status code indicates success\n" "laddr\n Local IPv4/6 address ('-' if $log_local_addr not set)\n\n"
"blast - ???") "lport\n Local TCP port ('-' if $log_local_addr not set)\n\n"
)
SLTM(SessionClose, "Client connection closed",
"SessionClose tells you why HTTP client-connections are closed. "
"These can be: "
"'timeout' - No keep-alive was received within sess_timeout. "
"'Connection: close' - The client specifed that keepalive should "
"be disabled by sending a 'Connection: close' header. "
"'no request' - No initial request was received within sess_timeout. "
"'EOF' - ??? "
"'remote closed' - ??? "
"'error' - Processing reached vcl_error even if the status code "
"indicates success. "
"' blast' - ???"
)
SLTM(BackendOpen, "Backend connection opened", "") SLTM(BackendOpen, "Backend connection opened", "")
SLTM(BackendXID, "The unique ID of the backend transaction", "") SLTM(BackendXID, "The unique ID of the backend transaction", "")
SLTM(BackendReuse, "Backend connection reused", "") SLTM(BackendReuse, "Backend connection reused", "")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment