Skip to content

Fluentd output plugin to send logs to an HTTP endpoint

License

Notifications You must be signed in to change notification settings

soylent/fluent-plugin-http

Repository files navigation

Fluentd out_http plugin

Buffered output plugin for sending event records to an HTTP endpoint.

Build Status

Configuration

<match foo.bar>
  @type http

  # Post event records to this URL
  url https://example.org/

  # Acceptable response status codes (default: 200)
  accept_status_code 200,204,303

  # Keep the connection open for n seconds (default: 60)
  keep_alive_timeout 60

  # Enable token auth
  # authorization_token secret

  # Or enable basic auth
  # username user
  # password secret
</match>

Contributing

Bug reports and pull requests are very welcome!