Skip to content

Commit d47852d

Browse files
committed
deprecate variable presets.coralogixExporter.pipeline
1 parent 2ad4464 commit d47852d

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

charts/opentelemetry-collector/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## OpenTelemetry Collector
44

55
## v0.116.3 / 2025-07-02
6-
- [Breaking] Rewrite `presets.coralogixExporter.pipeline` from `string` to `array` to allow enabling exporter on 2 pipelines at once.
6+
- [Feat] Add new variable `presets.coralogixExporter.pipelines` as an `array[string]` to allow enabling exporter on 2 pipelines at once.
77

88
## v0.116.2 / 2025-06-24
99
- [Fix] Support templating for `presets.resourceDetection.deploymentEnvironmentName`.

charts/opentelemetry-collector/templates/NOTES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@
5050

5151
{{ end }}
5252

53+
{{- if .Values.presets.coralogixExporter.pipeline }}
54+
[WARNING] The variable "presets.coralogixExporter.pipeline" is deprecated. Use the variable "presets.coralogixExporter.pipelines" instead.
55+
{{- end }}
56+
5357
{{- if .Values.configMap.create }}
5458
{{- range $key, $value := (((.Values.config).service).pipelines) }}
5559
{{- if has "logging" ($value.exporters) }}

charts/opentelemetry-collector/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -326,16 +326,16 @@ presets:
326326
# Configures the collector to export data to Coralogix.
327327
coralogixExporter:
328328
enabled: false
329-
# Pipeline to add the Coralogix exporter to. Possible values are
330-
# "all", "metrics", "traces", "logs" and "none".
331-
pipeline: all
332-
# OPTIONAL: Use pipelines (plural) for multiple pipeline selection.
329+
# Use pipelines (plural) for multiple pipeline selection.
333330
# When pipelines is set, it takes precedence over pipeline.
331+
# Possible values: "all", "metrics", "traces", "logs" and "none".
334332
# Examples:
335333
# pipelines: ["metrics", "traces"] # Both metrics and traces
336334
# pipelines: ["all"] # All pipelines
337335
# pipelines: ["none"] # No pipelines
338-
# pipelines: []
336+
pipelines: ["all"]
337+
# DEPRECATED: Please use `pipelines` instead.
338+
# pipeline: "all"
339339
privateKey: ${env:CORALOGIX_PRIVATE_KEY}
340340
domain: ""
341341
version: ""

0 commit comments

Comments
 (0)