Commit b99c4686 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Polish

parent 0a8d3915
......@@ -32,7 +32,8 @@
#include "vut_options.h"
#define HIS_OPT_g \
VOPT("g:", "[-g <request|vxid>]", "Grouping mode (default: vxid)", \
VOPT("g:", "[-g <request|vxid>]", \
"Grouping mode (default: vxid)", \
"The grouping of the log records. The default is to group" \
" by vxid." \
)
......@@ -42,14 +43,14 @@
"Specified the number of seconds between screen refreshes." \
" Default is 1 second, and can be changed at runtime by" \
" pressing the [0-9] keys (powers of 2 in seconds" \
" or + and - (double/halve the speed)" \
" or + and - (double/halve the speed)." \
)
#define HIS_OPT_P \
VOPT("P:", "[-P <[cb:]tag:field_num:min:max>]", \
VOPT("P:", "[-P <[cb:]tag:field_num:min:max>]", \
"Custom profile definition", \
" Graph the given custom definition defined as: an optional"\
" (c)lient or (b)ackend filter (defaults to client), the " \
"Graph the given custom definition defined as: an optional" \
" (c)lient or (b)ackend filter (defaults to client), the" \
" tag we'll look for, and the field number of the value we" \
" are interested in. min and max are the boundaries of the" \
" graph (these are power of ten)." \
......@@ -81,7 +82,7 @@ HIS_OPT_p
VOPT("P:", "[-P " name "]", \
"Predefined " cb " profile", \
"Predefined " cb " profile: " doc \
" (Field " #field " of " #tag " " prefix " log tags)" \
" (field " #field " of " #tag " " prefix " VSL tag)." \
)
#include "varnishhist_profiles.h"
#undef HIS_NO_PREFIX
......
......@@ -31,25 +31,25 @@
// client
HIS_PROF(
"responsetime", // name
HIS_CLIENT, // HIS_CLIENT | HIS_BACKEND
HIS_CLIENT, // HIS_CLIENT | HIS_BACKEND
SLT_Timestamp, // tag
"Process:", // prefix
"Process:", // prefix
3, // field
-6, // hist_low
-6, // hist_low
3, // hist_high
"Graph the total time from start of request processing"
"graph the total time from start of request processing"
" (first byte received) until ready to deliver the"
" client response."
" client response"
)
HIS_PROF(
"size", // name
HIS_CLIENT, // HIS_CLIENT | HIS_BACKEND
HIS_CLIENT, // HIS_CLIENT | HIS_BACKEND
SLT_ReqAcct, // tag
HIS_NO_PREFIX, // prefix
5, // field
1, // hist_low
8, // hist_high
"Graph the size of responses"
"graph the size of responses"
)
// backend
HIS_PROF(
......@@ -58,9 +58,9 @@ HIS_PROF(
SLT_Timestamp, // tag
"Bereq:", // prefix
3, // field
-6, // hist_low
-6, // hist_low
3, // hist_high
"Graph the time from beginning of backend processing"
"graph the time from beginning of backend processing"
" until a backend request is sent completely"
)
HIS_PROF(
......@@ -69,9 +69,9 @@ HIS_PROF(
SLT_Timestamp, // tag
"Beresp:", // prefix
3, // field
-6, // hist_low
-6, // hist_low
3, // hist_high
"Graph the time from beginning of backend processing"
"graph the time from beginning of backend processing"
" until the response headers are being received completely"
)
HIS_PROF(
......@@ -80,9 +80,9 @@ HIS_PROF(
SLT_Timestamp, // tag
"BerespBody:", // prefix
3, // field
-6, // hist_low
-6, // hist_low
3, // hist_high
"Graph the time from beginning of backend processing"
"graph the time from beginning of backend processing"
" until the response body has been received"
)
HIS_PROF(
......@@ -93,5 +93,5 @@ HIS_PROF(
5, // field
1, // hist_low
8, // hist_high
"Graph the backend response body size"
"graph the backend response body size"
)
......@@ -40,6 +40,7 @@ SEE ALSO
* :ref:`varnishncsa(1)`
* :ref:`varnishstat(1)`
* :ref:`varnishtop(1)`
* :ref:`vsl(7)`
HISTORY
=======
......
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