mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
Fluent Bit is an open source and multi-platform Log Forwarder which allows you to collect data/logs from different sources, unify and send them to multiple destinations. Fluent Bit is written in C, has a pluggable architecture supporting around 20 extensions. It's fast and lightweight and provides the required security for network operations through TLS. http://fluentbit.io/
14 lines
278 B
Text
14 lines
278 B
Text
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
|
|
description="Fast and Lightweight Log/Data Forwarder [fluent-bit]"
|
|
|
|
nice=19
|
|
pidfile="/run/$SVCNAME.sd.pid"
|
|
supervise_daemon_args="-p $pidfile -N $nice"
|
|
command=/usr/bin/td-agent-bit
|
|
command_args=${TD_OPTS}
|
|
|
|
depends() {
|
|
use net
|
|
}
|