mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-08 13:48:19 +00:00
27 lines
1.1 KiB
YAML
27 lines
1.1 KiB
YAML
|
{{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }}
|
||
|
apiVersion: monitoring.coreos.com/v1
|
||
|
kind: ServiceMonitor
|
||
|
metadata:
|
||
|
name: {{ include "mongodb.fullname" . }}
|
||
|
namespace: {{ include "mongodb.serviceMonitor.namespace" . }}
|
||
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
||
|
{{- if .Values.metrics.serviceMonitor.additionalLabels }}
|
||
|
{{- include "common.tplvalues.render" (dict "value" .Values.metrics.serviceMonitor.additionalLabels "context" $) | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
endpoints:
|
||
|
- port: http-metrics
|
||
|
{{- if .Values.metrics.serviceMonitor.interval }}
|
||
|
interval: {{ .Values.metrics.serviceMonitor.interval }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.metrics.serviceMonitor.scrapeTimeout }}
|
||
|
scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }}
|
||
|
{{- end }}
|
||
|
namespaceSelector:
|
||
|
matchNames:
|
||
|
- "{{ include "mongodb.namespace" . }}"
|
||
|
selector:
|
||
|
matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }}
|
||
|
app.kubernetes.io/component: metrics
|
||
|
{{- end }}
|