openstack-helm-infra/prometheus-node-exporter/templates/bin/_node-exporter.sh.tpl
Steven Fitzpatrick ddc35266c9 Node Exporter: Add rootfs mount argument
Change-Id: I0a144e2a05b9617d2cb46bcb56c746ca05743c1b
2020-07-06 12:43:59 -05:00

35 lines
1.4 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 }}
{{- if .Values.conf.collectors.filesystem.rootfs_mount_point }}
--path.rootfs={{ .Values.conf.collectors.filesystem.rootfs_mount_point }} \
{{- end }}
--collector.ntp.server={{ .Values.conf.ntp_server_ip }}