Skip to content

[linux installer script] Deprecate Fluentd support #6264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 30, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### 🚩 Deprecations 🚩

- (Splunk) `Linux installer script`: Fluentd support has been deprecated and will be removed in a future release. ([#6264](https://github.com/signalfx/splunk-otel-collector/pull/6264))

## v0.126.0

This Splunk OpenTelemetry Collector release includes changes from the [opentelemetry-collector v0.126.0](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.126.0)
Expand Down
3 changes: 2 additions & 1 deletion packaging/installer/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ Collector:
target system that provides the 'splunk-otel-collector' deb/rpm package.
--test Use the test package repo instead of the primary.

Fluentd:
Fluentd [DEPRECATED]:
--with[out]-fluentd Whether to install and configure fluentd to forward log events to the collector.
(default: --without-fluentd)
--skip-fluentd-repo By default, a apt/yum repo definition file will be created to download the
Expand Down Expand Up @@ -1327,6 +1327,7 @@ parse_args_and_install() {
;;
--with-fluentd)
with_fluentd="true"
echo "[WARNING] Fluentd support has been deprecated and will be removed in a future release." >&2
if ! fluentd_supported; then
echo "[WARNING] Ignoring the --with-fluentd option since fluentd is currently not supported for ${distro}:${distro_version} ${distro_arch}." >&2
fi
Expand Down
Loading