--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Kiyoto<source>type tailpath /var/log/httpd/ssl-access_logpos_file /var/log/td-agent/tmp/apache.access.postag apache.accessformat apache2</source><source>type tailpath /var/log/httpd/ssl-error_logpos_file /var/log/td-agent/tmp/apache.error.postag apache.accessformat apache2</source>The bold tag should be "apache.error"
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
format /^\[[^ ]* (?<time>[^\]]*)\] \[(?<level>[^\]]*)\] \[pid (?<pid>[^\]]*)\] \[client (?<client>[^\]]*)\] (?<message>.*)$/
As for apache.access, looking at your events here: http://pastebin.com/mPWw1JSB, I believe the following regular expression should work:
format /^(?<host>[^ ]*) [^ ]* (?<user>[^ ]*) \[(?<time>[^\]]*)\] (?<some_field>[^ ]*) "(?<method>\S+)(?: +(?<path>[^ ]*) +\S*)?" "(?<url_string>[^"]*)" (?<code>[^ ]*) (?<size>[^ ]*)(?: "(?<referer>[^\"]*)" "(?<agent>[^\"]*)")?$/
I am not 100% sure what the number after the timestamp is, so it's currently called "some_field", but I believe you know what it is.
>[warn]: temporarily failed to flush the buffer. next_retry=2014-08-05 15 :33:46 -0400 error_class="RuntimeError" error="no one nodes with valid ssl session" instance=69916014863360
>
>and both sides require a restart to get going again.
The warning is expected: if the receiver is restarted, then the SSL connection is interrupted so data transfer needs to be retried (this is where Fluentd's memory- or file-based buffering comes in handy. I believe reconnection should be handled automatically though.
Are you also saying that if the sender is restarted, the receiver also needs to be restarted? That sounds weird to me.
Kiyoto
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Fluentd Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fluentd+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Kiyoto,