feat: add metrics config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-02-28 00:07:02 +03:00
parent 3c4842a746
commit 90a63653bf
2 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,8 @@ data:
N8N_HOST: {{ .Values.config.host | quote }}
N8N_PORT: {{ .Values.config.port | quote }}
N8N_PROTOCOL: {{ .Values.config.protocol | quote }}
N8N_ENABLE_METRICS: {{ .Values.config.metrics.enabled | quote }}
N8N_METRICS_PREFIX: {{ .Values.config.metrics.prefix | quote }}
WEBHOOK_URL: {{ .Values.config.webhook_url | quote }}
EXECUTIONS_MODE: "queue"
EXECUTIONS_PROCESS: {{ .Values.config.executions.process | quote }}

View File

@ -26,6 +26,9 @@ config:
allow:
builtin: '*'
external: '*'
metrics:
enabled: false
prefix: n8n_
redis:
enabled: false