Skip to content
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

[collector] Enable retry_on_failure for filelog receiver created by logsCollection preset #999

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion charts/opentelemetry-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: opentelemetry-collector
version: 0.78.0
version: 0.78.1
description: OpenTelemetry Collector Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ data:
- from: attributes.log
to: body
type: move
retry_on_failure:
enabled: true
start_at: end
jaeger:
protocols:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
template:
metadata:
annotations:
checksum/config: 6f280dabe9aa8a9e0a08e73250811afcd12dcf181bdc64d8b22d14507a7a15bb
checksum/config: 690984dbf6a59837a87785587005bf8c6b320d7b29cc75d8c631e277d2eba6b9

labels:
app.kubernetes.io/name: opentelemetry-collector
Expand Down
2 changes: 2 additions & 0 deletions charts/opentelemetry-collector/templates/_config.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ receivers:
exclude: [ /var/log/pods/{{ .Release.Namespace }}_{{ include "opentelemetry-collector.fullname" . }}*_*/{{ include "opentelemetry-collector.lowercase_chartname" . }}/*.log ]
{{- end }}
start_at: end
retry_on_failure:
enabled: true
{{- if .Values.presets.logsCollection.storeCheckpoints}}
storage: file_storage
{{- end }}
Expand Down
Loading