Merge "Node Exporter: Allow Ignored Mountpoints"
This commit is contained in:
commit
1b8c24216f
@ -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 }}
|
||||
|
@ -158,4 +158,6 @@ conf:
|
||||
disable:
|
||||
textfile:
|
||||
directory: /var/log/node-exporter-vfstats
|
||||
filesystem:
|
||||
ignored_mount_points:
|
||||
...
|
||||
|
Loading…
Reference in New Issue
Block a user