Forum: NGINX Give it a solution for nginx to support cronolog like apache2

Posted by Markus \"bionix(-it)\" (Guest)
on 2013-01-24 21:54
(Received via mailing list)
Hello guys,

I'm looking for a good (maybe native) solution to use cronolog with 
nginx.
I found only these two links [1]+[2], but I'm looking for a better
solution like a module or a code upgrade.

Is a native solution in development or maybe give it a nginx patch?

Regards,

Markus "bionix"

[1] http://pjkh.com/articles/nginx-and-cronolog/
[2] https://gist.github.com/2891895
Posted by Piotr Karbowski (Guest)
on 2013-01-24 22:13
(Received via mailing list)
On 01/24/2013 09:53 PM, Markus "bionix(-it)" wrote:
> Markus "bionix"
>
> [1] http://pjkh.com/articles/nginx-and-cronolog/
> [2] https://gist.github.com/2891895

Well you could try make a log (error/access) format with
vhost/domain/whatever there and setup single access_log/error_log
location, which would be a fifo with cronolog cronolog connected to it,
note that I have no idea whatever nginx can write to fifo (or will
replace it with a file instead) but worth trying, to not slow down nginx
because of the read-fifo flow you could use ftee (find ftee.c somewhere
on the internet) and open fifo with it forwarding stdout to cronolog.

The above solution sounds like a overkill but if you want realtime
cronolog...

-- Piotr.
Posted by Weibin Yao (yaoweibin)
on 2013-01-25 04:30
(Received via mailing list)
Maybe tengine is a solution. It can support pipe natively The 
documentation
is here: http://tengine.taobao.org/document/http_log.html

You can configure the cronolog ilke this:

error_log "pipe:/path/to/sbin/cronolog
/path/to/logs/%Y/%m/%Y-%m-%d-error_log" warn;
access_log "pipe:/path/to/sbin/cronolog
/path/to/logs/%Y/%m/%Y-%m-%d-access_log" format;

2013/1/25 Piotr Karbowski <jabberuser@gmail.com>
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.