mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 00:12:05 +01: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/
		
			
				
	
	
		
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #!/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
 | |
| }
 |