Fluent Bit: Official Manual
Slack
GitHub
Discussions
Community Meetings
Search…
1.9
Fluent Bit v1.9 Documentation
About
What is Fluent Bit?
A Brief History of Fluent Bit
Fluentd & Fluent Bit
License
Concepts
Key Concepts
Buffering
Data Pipeline
Installation
Getting Started with Fluent Bit
Upgrade Notes
Supported Platforms
Requirements
Sources
Linux Packages
Docker
Containers on AWS
Amazon EC2
Kubernetes
macOS
Windows
Yocto / Embedded Linux
Administration
Configuring Fluent Bit
Security
Buffering & Storage
Backpressure
Scheduling and Retries
Networking
Memory Management
Monitoring
Dump Internals / Signal
HTTP Proxy
Local Testing
Validating your Data and Structure
Running a Logging Pipeline Locally
Data Pipeline
Pipeline Monitoring
Inputs
Prometheus Scrape Metrics
Node Exporter Metrics
Windows Exporter Metrics
Collectd
CPU Log Based Metrics
Disk I/O Log Based Metrics
Docker Log Based Metrics
Docker Events
Dummy
Exec
Fluent Bit Metrics
Forward
Head
HTTP
Health
Kernel Logs
Memory Metrics
MQTT
Network I/O Log Based Metrics
Process Log Based Metrics
Random
Serial Interface
Standard Input
StatsD
Syslog
Systemd
Tail
TCP
Thermal
Windows Event Log
Windows Event Log (winevtlog)
Parsers
Filters
Outputs
Stream Processing
Introduction to Stream Processing
Overview
Changelog
Getting Started
Fluent Bit for Developers
C Library API
Ingest Records Manually
Golang Output Plugins
Developer guide for beginners on contributing to Fluent Bit
Powered By
GitBook
Collectd
The
collectd
input plugin allows you to receive datagrams from collectd service.
Configuration Parameters
The plugin supports the following configuration parameters:
Key
Description
Default
Listen
Set the address to listen to
0.0.0.0
Port
Set the port to listen to
25826
TypesDB
Set the data specification file
/usr/share/collectd/types.db
Configuration Examples
Here is a basic configuration example.
1
[
INPUT
]
2
Name collectd
3
Listen
0.0.0.0
4
Port
25826
5
TypesDB
/
usr
/
share
/
collectd
/
types
.
db
,
/
etc
/
collectd
/
custom
.
db
6
​
7
[
OUTPUT
]
8
Name stdout
9
Match
*
Copied!
With this configuration, Fluent Bit listens to
0.0.0.0:25826
, and outputs incoming datagram packets to stdout.
You must set the same types.db files that your collectd server uses. Otherwise, Fluent Bit may not be able to interpret the payload properly.
Previous
Windows Exporter Metrics
Next
CPU Log Based Metrics
Last modified
4mo ago
Export as PDF
Copy link
Contents
Configuration Parameters
Configuration Examples