Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion charts/retool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: retool
description: A Helm chart for Kubernetes
type: application
version: 6.11.11
version: 6.11.12
maintainers:
- name: Retool Engineering
email: engineering+helm@retool.com
Expand Down
7 changes: 7 additions & 0 deletions charts/retool/templates/deployment_telemetry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ spec:
value: {{ include "retool.telemetry.logSourcePodLabels" . | quote }}
- name: RTEL_SEND_TO_RETOOL
value: {{ .Values.telemetry.sendToRetool.enabled | quote }}
{{- if .Values.telemetry.sendToRetool.enabled }}
{{- if not .Values.telemetry.sendToRetool.inputs }}
{{ fail "telemetry.sendToRetool.enabled is true, so telemetry.sendToRetool.inputs must contain at least one element" }}
{{- end }}
- name: RTEL_SEND_TO_RETOOL_INPUT_ALLOWLIST
value: {{ join "," .Values.telemetry.sendToRetool.inputs | quote }}
{{- end }}
Comment thread
greptile-apps[bot] marked this conversation as resolved.
{{- if .Values.telemetry.extraEnv }}
{{- .Values.telemetry.extraEnv | toYaml | nindent 10 }}
{{- end }}
Expand Down
9 changes: 9 additions & 0 deletions charts/retool/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1525,6 +1525,15 @@ telemetry:
# Should not be changed except for chart testing.
address: "https://telemetry.retool.com:443"

# Only relevant when `telemetry.sendToRetool.enabled = true`.
# Specify which inputs to send to Retool. Must not be empty.
# Available inputs are:
# container_logs - logs from all pods
# metrics - app and infra metrics
# otlp_traces - app request traces
inputs:
- metrics

image:
repository: "tryretool/telemetry"

Expand Down
9 changes: 9 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1525,6 +1525,15 @@ telemetry:
# Should not be changed except for chart testing.
address: "https://telemetry.retool.com:443"

# Only relevant when `telemetry.sendToRetool.enabled = true`.
# Specify which inputs to send to Retool. Must not be empty.
# Available inputs are:
# container_logs - logs from all pods
# metrics - app and infra metrics
# otlp_traces - app request traces
inputs:
- metrics

image:
repository: "tryretool/telemetry"

Expand Down
Loading