feat: add metrics config
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -9,6 +9,8 @@ data:
|
|||||||
N8N_HOST: {{ .Values.config.host | quote }}
|
N8N_HOST: {{ .Values.config.host | quote }}
|
||||||
N8N_PORT: {{ .Values.config.port | quote }}
|
N8N_PORT: {{ .Values.config.port | quote }}
|
||||||
N8N_PROTOCOL: {{ .Values.config.protocol | 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 }}
|
WEBHOOK_URL: {{ .Values.config.webhook_url | quote }}
|
||||||
EXECUTIONS_MODE: "queue"
|
EXECUTIONS_MODE: "queue"
|
||||||
EXECUTIONS_PROCESS: {{ .Values.config.executions.process | quote }}
|
EXECUTIONS_PROCESS: {{ .Values.config.executions.process | quote }}
|
||||||
|
@ -26,6 +26,9 @@ config:
|
|||||||
allow:
|
allow:
|
||||||
builtin: '*'
|
builtin: '*'
|
||||||
external: '*'
|
external: '*'
|
||||||
|
metrics:
|
||||||
|
enabled: false
|
||||||
|
prefix: n8n_
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
Reference in New Issue
Block a user