Telemetry Forge Agent is a stable, secure by default, OSS (Apache-licensed) downstream distribution of Fluent Bit with predictable releases and long-term supported versions for 24 months.
See the code
The Telemetry Forge Agent is a hardened, stable, secure by default, OSS (Apache-licensed) downstream distribution of Fluent Bit with predictable releases and long-term supported versions for 24 months.
It also has built-in functionality for:
| Version | Release Date | Type | End of Support | Status | Branch |
|---|---|---|---|---|---|
| 27.4 | Apr 2027 | LTS | Apr 2029 | π‘ Planned | main |
| 26.10 | Oct 2026 | LTS | Oct 2028 | π’ Active | main |
| 26.4 | Apr 2026 | LTS | Apr 2028 | π’ Active | release/26.4-lts |
| 25.10 | Oct 2025 | LTS | Oct 2027 | π’ Active | release/25.10-lts |
| 25.07 | Jul 2025 | Regular | Jan 2026 | π΄ EOL |
Main releases follow a date-based format with Year.Month.Week forming the version.
Once it transitions to an LTS release then we maintain the major and minor versions from then on, only incrementing the patch version.
| Release Type | Frequency | Description |
|---|---|---|
| LTS Release | Twice yearly (April, October) | Long-term support for 24 months |
| Regular Release | Quarterly | 6-month support cycle |
| Security Updates | Monthly or as needed | CVE patches and critical fixes |
| Patch Release | As needed | Bug fixes and minor updates |
| Main Builds | Weekly | Latest development builds from main branch |
β Smaller footprint - Optimized for production deployments
β Security-hardened by default - Enterprise-grade security
β 24-month LTS support - Predictable and reliable
β Advanced features - Production-ready capabilities
β Battle-tested quality - Continuous validation
docker run --rm -it -v /var/log/containers:/var/log/containers:ro ghcr.io/telemetryforge/agent/ubi:main -c /fluent-bit/etc/fluent-bit.yaml
docker run --rm -it -v /var/log/containers:/var/log/containers:ro ghcr.io/telemetryforge/agent/debian:main -c /fluent-bit/etc/fluent-bit.yaml
Ensure any files mounted are readable via the container user (cat Dockerfile.ubi|grep USER).
To specify a different configuration just mount it in as well and pass it on the command line to use.
All packages are available for download at https://packages.telemetryforge.io.
Linux and macOS packages are available for download and installation or using a simple install script:
curl -sSfL https://raw.githubusercontent.com/telemetryforge/agent/refs/heads/main/install.sh | bash
Windows packages are also available for download in various formats (ZIP, EXE or MSI).
To compile for a specific target, run the container-based build using the upstream source/packaging/build.sh script with the specified distribution you want to build for:
git clone https://github.com/telemetryforge/agent.git
cd agent
./source/packaging/build.sh -d rockylinux/9
To build the UBI or distroless containers:
git clone https://github.com/telemetryforge/agent.git
cd agent
docker build -f Dockerfile.ubi .
docker build -f Dockerfile.debian .
To compile natively (requires relevant dependencies installed):
git clone https://github.com/telemetryforge/agent.git
cd agent
cd source/build
cmake ..
make
Refer to the CI for full examples of different target builds:
The Cosign key for our images is provided in this repo.
Follow the documentation to verify against it: https://docs.sigstore.dev/cosign/verifying/verify/.
The GPG key is also provided that signs packages and checksums.
If you discover a potential security issue, DO NOT create a public GitHub issue. Instead, report it directly:
π§ Email: security@telemetryforge.io
Please include:
We follow responsible disclosure and will work with you to address issues promptly.
This project is licensed under the Apache License 2.0.
Copyright Β© Telemetry Forge Contributors. See NOTICE for details.
Our agent is built on top of Fluent Bit. We are grateful to the Fluent Bit community and all contributors who make this possible β€οΈ
C
58.7%
C++
29.5%
Shell
2.5%
Java
2.5%
Makefile
1.6%
CMake
1.0%
Telemetry Forge Agent is a stable, secure by default, OSS (Apache-licensed) downstream distribution of Fluent Bit with predictable releases and long-term supported versions for 24 months.
See the code
The Telemetry Forge Agent is a hardened, stable, secure by default, OSS (Apache-licensed) downstream distribution of Fluent Bit with predictable releases and long-term supported versions for 24 months.
It also has built-in functionality for:
| Version | Release Date | Type | End of Support | Status | Branch |
|---|---|---|---|---|---|
| 27.4 | Apr 2027 | LTS | Apr 2029 | π‘ Planned | main |
| 26.10 | Oct 2026 | LTS | Oct 2028 | π’ Active | main |
| 26.4 | Apr 2026 | LTS | Apr 2028 | π’ Active | release/26.4-lts |
| 25.10 | Oct 2025 | LTS | Oct 2027 | π’ Active | release/25.10-lts |
| 25.07 | Jul 2025 | Regular | Jan 2026 | π΄ EOL |
Main releases follow a date-based format with Year.Month.Week forming the version.
Once it transitions to an LTS release then we maintain the major and minor versions from then on, only incrementing the patch version.
| Release Type | Frequency | Description |
|---|---|---|
| LTS Release | Twice yearly (April, October) | Long-term support for 24 months |
| Regular Release | Quarterly | 6-month support cycle |
| Security Updates | Monthly or as needed | CVE patches and critical fixes |
| Patch Release | As needed | Bug fixes and minor updates |
| Main Builds | Weekly | Latest development builds from main branch |
β Smaller footprint - Optimized for production deployments
β Security-hardened by default - Enterprise-grade security
β 24-month LTS support - Predictable and reliable
β Advanced features - Production-ready capabilities
β Battle-tested quality - Continuous validation
docker run --rm -it -v /var/log/containers:/var/log/containers:ro ghcr.io/telemetryforge/agent/ubi:main -c /fluent-bit/etc/fluent-bit.yaml
docker run --rm -it -v /var/log/containers:/var/log/containers:ro ghcr.io/telemetryforge/agent/debian:main -c /fluent-bit/etc/fluent-bit.yaml
Ensure any files mounted are readable via the container user (cat Dockerfile.ubi|grep USER).
To specify a different configuration just mount it in as well and pass it on the command line to use.
All packages are available for download at https://packages.telemetryforge.io.
Linux and macOS packages are available for download and installation or using a simple install script:
curl -sSfL https://raw.githubusercontent.com/telemetryforge/agent/refs/heads/main/install.sh | bash
Windows packages are also available for download in various formats (ZIP, EXE or MSI).
To compile for a specific target, run the container-based build using the upstream source/packaging/build.sh script with the specified distribution you want to build for:
git clone https://github.com/telemetryforge/agent.git
cd agent
./source/packaging/build.sh -d rockylinux/9
To build the UBI or distroless containers:
git clone https://github.com/telemetryforge/agent.git
cd agent
docker build -f Dockerfile.ubi .
docker build -f Dockerfile.debian .
To compile natively (requires relevant dependencies installed):
git clone https://github.com/telemetryforge/agent.git
cd agent
cd source/build
cmake ..
make
Refer to the CI for full examples of different target builds:
The Cosign key for our images is provided in this repo.
Follow the documentation to verify against it: https://docs.sigstore.dev/cosign/verifying/verify/.
The GPG key is also provided that signs packages and checksums.
If you discover a potential security issue, DO NOT create a public GitHub issue. Instead, report it directly:
π§ Email: security@telemetryforge.io
Please include:
We follow responsible disclosure and will work with you to address issues promptly.
This project is licensed under the Apache License 2.0.
Copyright Β© Telemetry Forge Contributors. See NOTICE for details.
Our agent is built on top of Fluent Bit. We are grateful to the Fluent Bit community and all contributors who make this possible β€οΈ
C
58.7%
C++
29.5%
Shell
2.5%
Java
2.5%
Makefile
1.6%
CMake
1.0%