Welcome! Log In Create A New Profile

Advanced

Re: How write at access log only part of $request?

Maxim Dounin
March 02, 2015 07:54AM
Hello!

On Mon, Mar 02, 2015 at 05:32:34AM -0500, ertyi wrote:

> Hi All,
>
> I have next question:
> is it possible at nginx access log file decrease stored $request to smaller
> size?
>
> We have very big traffic, and $request part is significant for us only at
> some start substring of $request value.
>
> Is it possible write at log for example some kind of SubString( $request, 0,
> someLengthFromStart ) instead of full $request length ?

For example, you can do something like this using map:

map $request $request_truncated {
"~(?<tmp>.{0,100})" $tmp;
}

See log_format directive description for details on how to
configure custom access logging formats.

http://nginx.org/r/map
http://nginx.org/r/log_format

--
Maxim Dounin
http://nginx.org/

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

How write at access log only part of $request?

ertyi March 02, 2015 05:32AM

Re: How write at access log only part of $request?

Maxim Dounin March 02, 2015 07:54AM

Re: How write at access log only part of $request?

ertyi March 02, 2015 08:09AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 322
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready