You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fluent Bit is distributed as **fluent-bit** package and is available for the Raspberry, specifically for [Raspbian](http://raspbian.org) distribution, the following versions are supported:
3
+
Fluent Bit is distributed as the `fluent-bit` package and is available for the
4
+
Raspberry, specifically for [Raspbian](http://raspbian.org) distribution. The
5
+
following versions are supported:
4
6
5
-
* Raspbian Bullseye \(11\)
6
-
* Raspbian Buster \(10\)
7
+
* Raspbian Bullseye (11)
8
+
* Raspbian Buster (10)
7
9
8
10
## Server GPG key
9
11
10
-
The first step is to add our server GPG key to your keyring, on that way you can get our signed packages:
12
+
The first step is to add the Fluent Bit server GPG key to your keyring so you
From the 1.9.0 and 1.8.15 releases please note that the GPG key has been updated at [https://packages.fluentbit.io/fluentbit.key](https://packages.fluentbit.io/fluentbit.key) so ensure this new one is added.
21
+
For the 1.9.0 and 1.8.15 and later releases, the
22
+
[GPG key has been updated](https://packages.fluentbit.io/fluentbit.key). Ensure
The previous key is still available at [https://packages.fluentbit.io/fluentbit-legacy.key](https://packages.fluentbit.io/fluentbit-legacy.key) and may be required to install previous versions.
32
+
The previous key is [still available](https://packages.fluentbit.io/fluentbit-legacy.key)
33
+
and might be required to install previous versions.
28
34
29
35
The GPG Key fingerprint of the old key is:
30
36
31
37
```text
32
38
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
33
39
```
34
40
35
-
Refer to the [supported platform documentation](./../supported-platforms.md) to see which platforms are supported in each release.
41
+
Refer to the [supported platform documentation](./../supported-platforms.md) to see
42
+
which platforms are supported in each release.
36
43
37
44
## Update your sources lists
38
45
39
-
On Debian and derivative systems such as Raspbian, you need to add our APT server entry to your sources lists, please add the following content at bottom of your **/etc/apt/sources.list** file.
46
+
On Debian and derivative systems such as Raspbian, you need to add the Fluent Bit
47
+
APT server entry to your sources lists.
48
+
49
+
Add the following content at bottom of your `/etc/apt/sources.list` file.
40
50
41
-
### Raspbian 11 \(Bullseye\)
51
+
### Raspbian 11 (Bullseye)
42
52
43
53
```text
44
54
deb https://packages.fluentbit.io/raspbian/bullseye bullseye main
45
55
```
46
56
47
-
### Raspbian 10 \(Buster\)
57
+
### Raspbian 10 (Buster)
48
58
49
59
```text
50
60
deb https://packages.fluentbit.io/raspbian/buster buster main
51
61
```
52
62
53
63
### Update your repositories database
54
64
55
-
Now let your system update the _apt_ database:
65
+
Now let your system update the `apt` database:
56
66
57
67
```bash
58
68
sudo apt-get update
59
69
```
60
70
61
71
{% hint style="info" %}
62
-
We recommend upgrading your system (```sudo apt-get upgrade```). This could avoid potential issues with expired certificates.
72
+
Fluent Bit recommends upgrading your system (`sudo apt-get upgrade`) to avoid
73
+
potential issues with expired certificates.
63
74
{% endhint %}
64
75
65
76
## Install Fluent Bit
66
77
67
-
Using the following _apt-get_ command you are able now to install the latest _fluent-bit_:
78
+
1. Use the following `apt-get` command to install the latest Fluent Bit:
68
79
69
-
```text
70
-
sudo apt-get install fluent-bit
71
-
```
80
+
```shell
81
+
sudo apt-get install fluent-bit
82
+
```
72
83
73
-
Now the following step is to instruct _systemd_ to enable the service:
84
+
1. Instruct `systemd` to enable the service:
74
85
75
-
```bash
76
-
sudo service fluent-bit start
77
-
```
86
+
```bash
87
+
sudo service fluent-bit start
88
+
```
78
89
79
90
If you do a status check, you should see a similar output like this:
80
91
@@ -92,4 +103,6 @@ sudo service fluent-bit status
92
103
...
93
104
```
94
105
95
-
The default configuration of **fluent-bit** is collecting metrics of CPU usage and sending the records to the standard output, you can see the outgoing data in your _/var/log/syslog_ file.
106
+
The default configuration of Fluent Bit collects metrics for CPU usage and
107
+
sends the records to the standard output. You can see the outgoing data in your
0 commit comments