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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
## Unreleased
4
4
5
+
### 🚩 Deprecations 🚩
6
+
7
+
- (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))
8
+
- Please use native OTel Collector receivers instead.
9
+
- A common replacement for Fluentd's functionality is the [filelog receiver](https://help.splunk.com/en/splunk-observability-cloud/manage-data/available-data-sources/supported-integrations-in-splunk-observability-cloud/opentelemetry-receivers/filelog-receiver).
10
+
Many common configuration examples of the `filelog` receiver can be found in the [logs_config_linux.yaml](https://github.com/signalfx/splunk-otel-collector/blob/87bee7ae45b08be8d143a758d0f7004fd92d8f60/cmd/otelcol/config/collector/logs_config_linux.yaml) file.
11
+
5
12
## v0.126.0
6
13
7
14
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)
Copy file name to clipboardExpand all lines: packaging/installer/install.sh
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -929,7 +929,7 @@ Collector:
929
929
target system that provides the 'splunk-otel-collector' deb/rpm package.
930
930
--test Use the test package repo instead of the primary.
931
931
932
-
Fluentd:
932
+
Fluentd [DEPRECATED]:
933
933
--with[out]-fluentd Whether to install and configure fluentd to forward log events to the collector.
934
934
(default: --without-fluentd)
935
935
--skip-fluentd-repo By default, a apt/yum repo definition file will be created to download the
@@ -1327,6 +1327,7 @@ parse_args_and_install() {
1327
1327
;;
1328
1328
--with-fluentd)
1329
1329
with_fluentd="true"
1330
+
echo"[WARNING] Fluentd support has been deprecated and will be removed in a future release. Please use native OTel receivers instead (e.g. the filelog receiver).">&2
1330
1331
if! fluentd_supported;then
1331
1332
echo"[WARNING] Ignoring the --with-fluentd option since fluentd is currently not supported for ${distro}:${distro_version}${distro_arch}.">&2
0 commit comments