The ngx_stream_log_module
module (1.11.4) writes session logs in the specified format.
log_format basic '$remote_addr [$time_local] ' '$protocol $status $bytes_sent $bytes_received ' '$session_time'; access_log /spool/logs/nginx-access.log basic buffer=32k;
Syntax: | access_log
path
format
[buffer=size]
[gzip[=level]]
[flush=time]
[if=condition]; access_log off; |
---|---|
Default: | access_log off; |
Context: | stream , server |
Sets the path, format, and configuration for a buffered log write. Several logs can be specified on the same level. Logging to syslog can be configured by specifying the “syslog:
” prefix in the first parameter. The special value off
cancels all access_log
directives on the current level.
If either the buffer
or gzip
parameter is used, writes to log will be buffered.
The buffer size must not exceed the size of an atomic write to a disk file. For FreeBSD this size is unlimited.
When buffering is enabled, the data will be written to the file:
flush
parameter; If the gzip
parameter is used, then the buffered data will be compressed before writing to the file. The compression level can be set between 1 (fastest, less compression) and 9 (slowest, best compression). By default, the buffer size is equal to 64K bytes, and the compression level is set to 1. Since the data is compressed in atomic blocks, the log file can be decompressed or read by “zcat
” at any time.
Example:
access_log /path/to/log.gz basic gzip flush=5m;
For gzip compression to work, nginx must be built with the zlib library.
The file path can contain variables, but such logs have some constraints:
valid
parameter The if
parameter enables conditional logging. A session will not be logged if the condition
evaluates to “0” or an empty string.
Syntax: | log_format
name
[escape=default|json]
string ...; |
---|---|
Default: | — |
Context: | stream |
Specifies the log format, for example:
log_format proxy '$remote_addr [$time_local] ' '$protocol $status $bytes_sent $bytes_received ' '$session_time "$upstream_addr" ' '"$upstream_bytes_sent" "$upstream_bytes_received" "$upstream_connect_time"';
The escape
parameter (1.11.8) allows setting json
or default
characters escaping in variables, by default, default
escaping is used.
Syntax: | open_log_file_cache
max=N
[inactive=time]
[min_uses=N]
[valid=time]; open_log_file_cache off; |
---|---|
Default: | open_log_file_cache off; |
Context: | stream , server |
Defines a cache that stores the file descriptors of frequently used logs whose names contain variables. The directive has the following parameters:
max
inactive
min_uses
inactive
parameter to let the descriptor stay open in a cache; by default, 1 valid
off
Usage example:
open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
© 2002-2017 Igor Sysoev
© 2011-2017 Nginx, Inc.
Licensed under the BSD License.
https://nginx.org/en/docs/stream/ngx_stream_log_module.html