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
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.
38
+
For the 1.9.0 and 1.8.15 and later releases, the
39
+
[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.
49
+
The previous key is [still available](https://packages.fluentbit.io/fluentbit-legacy.key)
50
+
and might be required to install previous versions.
42
51
43
52
The GPG Key fingerprint of the old key is:
44
53
45
54
```text
46
55
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
47
56
```
48
57
49
-
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
58
+
Refer to the [supported platform documentation](../supported-platforms.md) to see
59
+
which platforms are supported in each release.
50
60
51
61
## Update your sources lists
52
62
53
-
On Debian, 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 - ensure to set `CODENAME` to your specific [Debian release name](https://wiki.debian.org/DebianReleases#Production\_Releases) (e.g. `bookworm` for Debian 12):
63
+
For Debian, you must add the Fluent Bit APT server entry to your sources lists.
64
+
Add the following content at bottom of your `/etc/apt/sources.list` file.
54
65
55
-
```bash
66
+
```bash copy
56
67
deb [signed-by=/usr/share/keyrings/fluentbit-keyring.gpg] https://packages.fluentbit.io/debian/${CODENAME}${CODENAME} main
We recommend upgrading your system (`sudo apt-get upgrade`). This could avoid potential issues with expired certificates.
83
+
Fluent Bit recommends upgrading your system (`sudo apt-get upgrade`). This could
84
+
avoid potential issues with expired certificates.
69
85
{% endhint %}
70
86
71
87
## Install Fluent Bit
72
88
73
-
Using the following _apt-get_ command you are able now to install the latest _fluent-bit_:
89
+
1. Use the following `apt-get` command to install the latest Fluent Bit:
74
90
75
-
```bash
76
-
sudo apt-get install fluent-bit
77
-
```
91
+
```bash copy
92
+
sudo apt-get install fluent-bit
93
+
```
78
94
79
-
Now the following step is to instruct _systemd_ to enable the service:
95
+
1. Instruct `systemd` to enable the service:
80
96
81
-
```bash
82
-
sudo systemctl start fluent-bit
83
-
```
97
+
```bash copy
98
+
sudo systemctl start fluent-bit
99
+
```
84
100
85
-
If you do a status check, you should see a similar output like this:
101
+
If you do a status check, you should see a similar output similar to:
86
102
87
103
```bash
88
104
sudo service fluent-bit status
@@ -98,4 +114,6 @@ sudo service fluent-bit status
98
114
...
99
115
```
100
116
101
-
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.
117
+
The default Fluent Bit configuration collect metrics of CPU usage and sends the
118
+
records to the standard output. You can see the outgoing data in your
0 commit comments