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
installation: update to use new one line install and other fixes (#696)
* installation: update to use new one line install and other fixes
Signed-off-by: Patrick Stephens <[email protected]>
* installation: minor tweak
Signed-off-by: Patrick Stephens <[email protected]>
* Update installation/linux/raspbian-raspberry-pi.md
Co-authored-by: José Lecaros <[email protected]>
* Update installation/linux/ubuntu.md
Co-authored-by: José Lecaros <[email protected]>
Co-authored-by: José Lecaros <[email protected]>
Copy file name to clipboardExpand all lines: installation/linux/amazon-linux.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,18 @@
2
2
3
3
## Install on Amazon Linux 2
4
4
5
-
Fluent Bit is distributed as **td-agent-bit** package and is available for the latest Amazon Linux 2. The following architectures are supported
5
+
Fluent Bit is distributed as **fluent-bit** package and is available for the latest Amazon Linux 2. The following architectures are supported
6
6
7
7
* x86\_64
8
8
* aarch64 / arm64v8
9
9
10
10
## Configure Yum
11
11
12
-
We provide **td-agent-bit** through a Yum repository. In order to add the repository reference to your system, please add a new file called _td-agent-bit.repo_ in _/etc/yum.repos.d/_ with the following content:
12
+
We provide **fluent-bit** through a Yum repository. In order to add the repository reference to your system, please add a new file called _fluent-bit.repo_ in _/etc/yum.repos.d/_ with the following content:
The default configuration of **td-agent-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/messages_ file.
55
+
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/messages_ file.
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:
15
+
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 [Ubuntu release name](https://wiki.ubuntu.com/Releases) (e.g. `focal` for Ubuntu 20.04):
16
16
17
-
#### Debian 10 \(Buster\)
18
-
19
-
```text
20
-
deb https://packages.fluentbit.io/debian/buster buster main
21
-
```
22
-
23
-
#### Debian 9 \(Stretch\)
24
-
25
-
```text
26
-
deb https://packages.fluentbit.io/debian/stretch stretch main
17
+
```bash
18
+
deb [signed-by=/usr/share/keyrings/fluentbit-keyring.gpg] https://packages.fluentbit.io/debian/${CODENAME}${CODENAME} main
27
19
```
28
20
29
-
###Update your repositories database
21
+
## Update your repositories database
30
22
31
23
Now let your system update the _apt_ database:
32
24
@@ -38,36 +30,35 @@ $ sudo apt-get update
38
30
We recommend upgrading your system (```sudo apt-get upgrade```). This could avoid potential issues with expired certificates.
39
31
{% endhint %}
40
32
33
+
## Install Fluent Bit
41
34
42
-
## Install TD Agent Bit
43
-
44
-
Using the following _apt-get_ command you are able now to install the latest _td-agent-bit_:
35
+
Using the following _apt-get_ command you are able now to install the latest _fluent-bit_:
45
36
46
37
```text
47
-
$ sudo apt-get install td-agent-bit
38
+
$ sudo apt-get install fluent-bit
48
39
```
49
40
50
41
Now the following step is to instruct _systemd_ to enable the service:
51
42
52
43
```bash
53
-
$ sudo service td-agent-bit start
44
+
$ sudo service fluent-bit start
54
45
```
55
46
56
47
If you do a status check, you should see a similar output like this:
The default configuration of **td-agent-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.
63
+
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.
Copy file name to clipboardExpand all lines: installation/linux/raspbian-raspberry-pi.md
+20-15Lines changed: 20 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,9 @@
1
1
# Raspbian / Raspberry Pi
2
2
3
-
Fluent Bit is distributed as **td-agent-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 **fluent-bit** package and is available for the Raspberry, specifically for [Raspbian](http://raspbian.org) distribution, the following versions are supported:
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:
18
+
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.
19
+
20
+
#### Raspbian 11 \(Bullseye\)
21
+
22
+
```text
23
+
deb https://packages.fluentbit.io/raspbian/bullseye bullseye main
24
+
```
20
25
21
26
#### Raspbian 10 \(Buster\)
22
27
@@ -37,35 +42,35 @@ We recommend upgrading your system (```sudo apt-get upgrade```). This could avoi
37
42
{% endhint %}
38
43
39
44
40
-
## Install TD-Agent Bit
45
+
## Install Fluent Bit
41
46
42
-
Using the following _apt-get_ command you are able now to install the latest _td-agent-bit_:
47
+
Using the following _apt-get_ command you are able now to install the latest _fluent-bit_:
43
48
44
49
```text
45
-
$ sudo apt-get install td-agent-bit
50
+
$ sudo apt-get install fluent-bit
46
51
```
47
52
48
53
Now the following step is to instruct _systemd_ to enable the service:
49
54
50
55
```bash
51
-
$ sudo service td-agent-bit start
56
+
$ sudo service fluent-bit start
52
57
```
53
58
54
59
If you do a status check, you should see a similar output like this:
The default configuration of **td-agent-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.
75
+
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.
Copy file name to clipboardExpand all lines: installation/linux/redhat-centos.md
+16-17Lines changed: 16 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,55 +2,54 @@
2
2
3
3
## Install on Redhat / CentOS
4
4
5
-
Fluent Bit is distributed as **td-agent-bit** package and is available for the latest stable CentOS system. The following architectures are supported
5
+
Fluent Bit is distributed as **fluent-bit** package and is available for the latest stable CentOS system. The following architectures are supported
6
6
7
7
* x86\_64
8
8
* aarch64 / arm64v8
9
9
10
10
## Configure Yum
11
11
12
-
We provide **td-agent-bit** through a Yum repository. In order to add the repository reference to your system, please add a new file called _td-agent-bit.repo_ in _/etc/yum.repos.d/_ with the following content:
12
+
We provide **fluent-bit** through a Yum repository. In order to add the repository reference to your system, please add a new file called _fluent-bit.repo_ in _/etc/yum.repos.d/_ with the following content:
The default configuration of **td-agent-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/messages_ file.
54
+
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/messages_ file.
Copy file name to clipboardExpand all lines: installation/linux/snap.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,8 @@
2
2
3
3
If you use any Linux distribution [supported by](https://snapcraft.io/docs/installing-snapd) Snapcraft, you can get Fluent Bit as a Snap in your system.
4
4
5
-
6
-
7
5
[](https://snapcraft.io/fluent-bit)
0 commit comments