Fluent Bit: Official Manual
SlackGitHubCommunity MeetingsSandbox and LabsWebinars
1.0
1.0
  • Introduction
  • About
    • Why ?
    • Fluentd & Fluent Bit
    • License
  • Installation
    • Supported Platforms
    • Requirements
    • Download Sources
    • Build and Install
    • Build with Static Configuration
    • Docker Images
    • Kubernetes
    • TD Agent Bit
    • Debian Packages
    • Ubuntu Packages
    • CentOS Packages
    • Raspberry Pi
    • Yocto Project
    • Unit Tests
  • Getting Started
    • Service
    • Input
    • Parser
    • Filter
    • Buffer
    • Routing
    • Output
  • Configuration
    • Configuration Schema
    • Configuration File
    • Configuration Variables
    • Configuration Commands
    • Buffering / Storage
    • Monitoring
    • Unit Sizes
    • TLS / SSL
    • Backpressure
    • Memory Usage
    • Upstream Servers
    • Scheduler
  • Service
  • Input Plugins
    • CPU Usage
    • Disk Usage
    • Dummy
    • Exec
    • Forward
    • Head
    • Health
    • Kernel Log Buffer
    • Memory Usage
    • MQTT
    • Network Traffic
    • Process
    • Random
    • Serial Interface
    • Standard Input
    • Syslog
    • Systemd
    • Tail
    • TCP
  • Parsers
    • JSON Parser
    • Regular Expression Parser
    • Decoders
  • Filter Plugins
    • Grep
    • Kubernetes
    • Lua
    • Parser
    • Record Modifier
    • Standard Output
    • Throttle
    • Nest
    • Modify
  • Output Plugins
    • Azure
    • BigQuery
    • Counter
    • Elasticsearch
    • File
    • FlowCounter
    • Forward
    • HTTP
    • InfluxDB
    • Kafka
    • Kafka REST Proxy
    • NATS
    • Null
    • Stackdriver
    • Standard Output
    • Splunk
    • Treasure Data
  • Fluent Bit for Developers
    • Library API
    • Ingest Records Manually
Powered by GitBook
On this page

Was this helpful?

Export as PDF

Service

Last updated 6 years ago

Was this helpful?

The SERVICE defines the global behaviour of the engine.

name

type

description

Buffer_Path

Str

Path to write buffered chunks if enabled

Buffer_Workers

Int

Number of workers to operate on buffer chunks

Config_Watch

Bool

If true, exit on change in config directory

Daemon

Bool

If true go to background on start

Flush

Int

Interval to flush output (seconds)

Grace

Int

Wait time (seconds) on exit

HTTP_Listen

Str

Address to listen (e.g. 0.0.0.0)

HTTP_Port

Int

Port to listen (e.g. 8888)

HTTP_Server

Bool

If true enable statistics HTTP server

Log_File

Str

File to log diagnostic output

Log_Level

Int

Diagnostic level (error/warning/info/debug/trace)

Parsers_File

Str

Optional 'parsers' config file (can be multiple)

Plugins_File

Str

Optional 'plugins' config file (can be multiple)

The Parsers_File and Plugins_File are both relative to the directory the main config file is in.

Example

[SERVICE]
    Flush        5
    Daemon       Off
    Config_Watch On
    Parsers_File parsers.conf
    Parsers_File custom_parsers.conf
Fluent Bit