Steven Fitzpatrick 0f4a696f53 Node Exporter: Allow Ignored Mountpoints
This change adds the ability to configure the

--collector.filesystem.ignored-mount-points

parameter, which is useful in events where a subdirectory
cannot be statfs'd by a non-root user.

Change-Id: Ie2be8c496aa676e9a3fee5434e0c194615f9cdab
See: https://github.com/prometheus/node_exporter/issues/703
2020-06-02 11:33:38 -05:00

32 lines
1.3 KiB
Smarty

#!/bin/sh
{{/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
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" }} \
{{- 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 }}