Skip to content

Commit 65fd5e3

Browse files
committed
Retry indefinitely on filelog receiver side for noDropLogsPipeline fg
1 parent 0662515 commit 65fd5e3

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: bug_fix
3+
# The name of the component, or a single word describing the area of concern, (e.g. agent, clusterReceiver, gateway, operator, chart, other)
4+
component: agent
5+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
6+
note: Retry indefinitely on filelog receiver if noDropLogsPipeline feature gate is enabled.
7+
# One or more tracking issues related to the change
8+
issues: [1410]
9+
# (Optional) One or more lines of additional information to render under the primary note.
10+
# These lines will be padded with 2 spaces and then inserted directly into the document.
11+
# Use pipe (|) for multiline entries.
12+
subtext:

helm-charts/splunk-otel-collector/templates/config/_otel-agent.tpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,9 @@ receivers:
290290
storage: file_storage
291291
retry_on_failure:
292292
enabled: true
293+
{{- if .Values.featureGates.noDropLogsPipeline }}
294+
max_elapsed_time: 0s
295+
{{- end }}
293296
operators:
294297
{{- if not .Values.logsCollection.containers.containerRuntime }}
295298
- type: router

0 commit comments

Comments
 (0)