CARVIEW |
Select Language
HTTP/2 200
date: Thu, 17 Jul 2025 21:13:21 GMT
content-type: text/html; charset=utf-8
cf-ray: 960cbe232b5cc1c9-BLR
cf-cache-status: DYNAMIC
age: 37668
cache-control: public, max-age=0, must-revalidate
strict-transport-security: max-age=31536000
vary: accept-encoding
content-security-policy: default-src 'self' *; script-src 'self' 'unsafe-inline' 'unsafe-eval' *; style-src 'self' 'unsafe-inline' *; img-src * 'self' blob: data:; connect-src *; font-src *; frame-src *; object-src 'none'; base-uri 'self' https://static-2v.gitbook.com; form-action 'self' https://static-2v.gitbook.com *; frame-ancestors https: ;
referrer-policy: no-referrer-when-downgrade
x-content-type-options: nosniff
x-gitbook-route-site: docs.fluentd.org/
x-gitbook-route-type: static
x-gitbook-target: 2v
x-matched-path: /sites/static/[mode]/[siteURL]/[siteData]/[pagePath]
x-nextjs-prerender: 1
x-nextjs-stale-time: 300
x-vercel-cache: HIT
x-vercel-id: bom1::iad1::njjtn-1752786801536-f226dc248606
server: cloudflare
content-encoding: gzip
alt-svc: h3=":443"; ma=86400
apache_error | Fluentd
CtrlK
1.0
apache_error
The apache_error
parser plugin parses apache error logs.
Parameters
See Parse Section Configurations.
Regexp patterns
This is regexp pattern of this plugin:
expression /^\[[^ ]* (?<time>[^\]]*)\] \[(?<level>[^\]]*)\](?: \[pid (?<pid>[^\]]*)\])? \[client (?<client>[^\]]*)\] (?<message>.*)$/
level
, pid
, client
and message
are included in the event record. time
is used for the event time.
Example
This incoming event:
[Wed Oct 11 14:32:52 2000] [error] [client 127.0.0.1] client denied by server configuration
is parsed as:
time:
971242372 (Wed Oct 11 14:32:52 2000)
record:
{
"level" : "error",
"client" : "127.0.0.1",
"message": "client denied by server configuration"
}
If this article is incorrect or outdated, or omits critical information, please let us know. Fluentd is an open-source project under Cloud Native Computing Foundation (CNCF). All components are available under the Apache 2 License.
Last updated
Was this helpful?