summaryrefslogtreecommitdiff
path: root/pod/nginx/ngx_stream_log_module.pod
blob: 889aebfdb6a75dc8aba3d82aa50dc8cdf988d536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
=encoding utf-8

=head1 NAME

ngx_stream_log_module - Module ngx_stream_log_module




=head1



The C<ngx_stream_log_module> module (1.11.4) writes session logs
in the specified format.




=head1 Example Configuration




    
    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;






=head1 Directives

=head2 access_log


B<syntax:> access_log I<
    I<C<path>>
    I<C<format>>
    [C<buffer>=I<C<size>>]
    [C<gzip[=I<C<level>>]>]
    [C<flush>=I<C<time>>]
    [C<if>=I<C<condition>>]>


B<syntax:> access_log I<C<off>>


B<default:> I<off>


B<context:> I<stream>


B<context:> I<server>





Sets the path, format,
and configuration for a buffered log write.
Several logs can be specified on the same configuration level.
Logging to L<syslog|syslog>
can be configured by specifying
the “C<syslog:>” prefix in the first parameter.
The special value C<off> cancels all
C<access_log> directives on the current level.





If either the C<buffer> or C<gzip>
parameter is used, writes to log will be buffered.

B<NOTE>

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:

=over




=item *

if the next log line does not fit into the buffer;



=item *

if the buffered data is older than specified by the C<flush>
parameter;



=item *

when a worker process is L<re-opening|control> log
files or is shutting down.



=back







If the C<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 “C<zcat>” at any time.





Example:

    
    access_log /path/to/log.gz basic gzip flush=5m;








B<NOTE>

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:

=over




=item *

the L<ngx_core_module>
whose credentials are used by worker processes should
have permissions to create files in a directory with
such logs;



=item *

buffered writes do not work;



=item *

the file is opened and closed for each log write.
However, since the descriptors of frequently used files can be stored
in a cache, writing to the old file
can continue during the time specified by the L</open_log_file_cache>
directive’s C<valid> parameter



=back







The C<if> parameter enables conditional logging.
A session will not be logged if the I<C<condition>> evaluates to “0”
or an empty string.







=head2 log_format


B<syntax:> log_format I<
    I<C<name>>
    [C<escape>=C<default>E<verbar>C<json>E<verbar>C<none>]
    I<C<string>> ...>


B<default:> I<>


B<context:> I<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 C<escape> parameter (1.11.8) allows setting
C<json> or C<default> characters escaping
in variables, by default, C<default> escaping is used.
The C<none> parameter (1.13.10) disables escaping.





For C<default> escaping,
characters “C<">”, “C<\>”,
and other characters with values less than 32 or above 126
are escaped as “C<\xXX>”.
If the variable value is not found,
a hyphen (“C<->”) will be logged.





For C<json> escaping,
all characters not allowed
in JSON L<strings|https://datatracker.ietf.org/doc/html/rfc8259#section-7>
will be escaped:
characters “C<">” and
“C<\>” are escaped as
“C<\">” and “C<\\>”,
characters with values less than 32 are escaped as
“C<\n>”,
“C<\r>”,
“C<\t>”,
“C<\b>”,
“C<\f>”, or
“C<\u00XX>”.







=head2 open_log_file_cache



B<syntax:> open_log_file_cache I<
C<max>=I<C<N>>
[C<inactive>=I<C<time>>]
[C<min_uses>=I<C<N>>]
[C<valid>=I<C<time>>]>


B<syntax:> open_log_file_cache I<C<off>>


B<default:> I<off>


B<context:> I<stream>


B<context:> I<server>





Defines a cache that stores the file descriptors of frequently used logs
whose names contain variables.
The directive has the following parameters:

=over



=item C<max>




sets the maximum number of descriptors in a cache;
if the cache becomes full the least recently used (LRU)
descriptors are closed



=item C<inactive>




sets the time after which the cached descriptor is closed
if there were no access during this time;
by default, 10 seconds



=item C<min_uses>




sets the minimum number of file uses during the time
defined by the C<inactive> parameter
to let the descriptor stay open in a cache;
by default, 1



=item C<valid>




sets the time after which it should be checked that the file
still exists with the same name; by default, 60 seconds



=item C<off>




disables caching




=back







Usage example:

    
    open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;