mirror of https://git.rancher.io/charts
31 lines
901 B
YAML
31 lines
901 B
YAML
{{ if .Values.monitoring.serviceMonitor.enabled }}
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: {{ include "logging-operator.fullname" . }}
|
|
namespace: {{ include "logging-operator.namespace" . }}
|
|
labels:
|
|
{{ include "logging-operator.labels" . | indent 4 }}
|
|
{{- with .Values.monitoring.serviceMonitor.additionalLabels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
{{ include "logging-operator.labels" . | indent 6 }}
|
|
endpoints:
|
|
- port: http
|
|
path: /metrics
|
|
{{- with .Values.monitoring.serviceMonitor.metricsRelabelings }}
|
|
metricRelabelings:
|
|
{{- toYaml . | nindent 6 }}
|
|
{{- end }}
|
|
{{- with .Values.monitoring.serviceMonitor.relabelings }}
|
|
relabelings:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
namespaceSelector:
|
|
matchNames:
|
|
- {{ include "logging-operator.namespace" . }}
|
|
{{- end }}
|