53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
|
{{- if .Values.serviceMonitor.enabled }}
|
||
|
---
|
||
|
apiVersion: monitoring.coreos.com/v1
|
||
|
kind: ServiceMonitor
|
||
|
metadata:
|
||
|
name: {{ include "grafana.fullname" . }}
|
||
|
{{- if .Values.serviceMonitor.namespace }}
|
||
|
namespace: {{ tpl .Values.serviceMonitor.namespace . }}
|
||
|
{{- else }}
|
||
|
namespace: {{ include "grafana.namespace" . }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
{{- include "grafana.labels" . | nindent 4 }}
|
||
|
{{- with .Values.serviceMonitor.labels }}
|
||
|
{{- tpl (toYaml . | nindent 4) $ }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
endpoints:
|
||
|
- port: {{ .Values.service.portName }}
|
||
|
{{- with .Values.serviceMonitor.interval }}
|
||
|
interval: {{ . }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.serviceMonitor.scrapeTimeout }}
|
||
|
scrapeTimeout: {{ . }}
|
||
|
{{- end }}
|
||
|
honorLabels: true
|
||
|
path: {{ .Values.serviceMonitor.path }}
|
||
|
scheme: {{ .Values.serviceMonitor.scheme }}
|
||
|
{{- with .Values.serviceMonitor.tlsConfig }}
|
||
|
tlsConfig:
|
||
|
{{- toYaml . | nindent 6 }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.serviceMonitor.relabelings }}
|
||
|
relabelings:
|
||
|
{{- toYaml . | nindent 6 }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.serviceMonitor.metricRelabelings }}
|
||
|
metricRelabelings:
|
||
|
{{- toYaml . | nindent 6 }}
|
||
|
{{- end }}
|
||
|
jobLabel: "{{ .Release.Name }}"
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
{{- include "grafana.selectorLabels" . | nindent 6 }}
|
||
|
namespaceSelector:
|
||
|
matchNames:
|
||
|
- {{ include "grafana.namespace" . }}
|
||
|
{{- with .Values.serviceMonitor.targetLabels }}
|
||
|
targetLabels:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|