Merge "Node Exporter: Allow Ignored Mountpoints"

This commit is contained in:
Zuul 2020-06-02 23:32:26 +00:00 committed by Gerrit Code Review
commit 1b8c24216f
2 changed files with 10 additions and 1 deletions

View File

@ -16,9 +16,16 @@ limitations under the License.
set -ex
exec /bin/node_exporter \
{{- if .Values.conf.collectors.enable }}
{{ tuple "--collector." .Values.conf.collectors.enable | include "helm-toolkit.utils.joinListWithPrefix" }} \
{{- end }}
{{- if .Values.conf.collectors.disable }}
{{ tuple "--no-collector." .Values.conf.collectors.disable | include "helm-toolkit.utils.joinListWithPrefix" }} \
{{ if .Values.conf.collectors.textfile.directory }} \
{{- end }}
{{- if .Values.conf.collectors.textfile.directory }}
--collector.textfile.directory={{.Values.conf.collectors.textfile.directory }} \
{{- end }}
{{- if .Values.conf.collectors.filesystem.ignored_mount_points }}
--collector.filesystem.ignored-mount-points={{ .Values.conf.collectors.filesystem.ignored_mount_points }} \
{{- end }}
--collector.ntp.server={{ .Values.conf.ntp_server_ip }}

View File

@ -158,4 +158,6 @@ conf:
disable:
textfile:
directory: /var/log/node-exporter-vfstats
filesystem:
ignored_mount_points:
...