Created
May 14, 2020 20:27
-
-
Save OdinsHat/78133f419547b51ae4856a107d55b03a to your computer and use it in GitHub Desktop.
Installing fluent bit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget -qO - https://packages.fluentbit.io/fluentbit.key | sudo apt-key add - | |
sudo echo "deb https://packages.fluentbit.io/raspbian/buster buster main" > /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install td-agent-bit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget -qO - https://packages.fluentbit.io/fluentbit.key | sudo apt-key add - | |
sudo echo "deb https://packages.fluentbit.io/raspbian/stretch stretch main" > /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install td-agent-bit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment