User field in my log contains dots, because users are web sites via api, and logins are domain names.
Nginx is OK with this, so any log parsing software must support this.
Now I changed 'user' field from %u to (?P<user>(?:-|[\w-\.]+)) in my config string, to avoid creating fork.
User field in my log contains dots, because users are web sites via api, and logins are domain names. Nginx is OK with this, so any log parsing software must support this.
Now I changed 'user' field from
%u
to(?P<user>(?:-|[\w-\.]+))
in my config string, to avoid creating fork.