70 lines
2.3 KiB
Smarty
70 lines
2.3 KiB
Smarty
{{- define "mimir.metaMonitoring.metrics.remoteWrite" -}}
|
|
{{- $writeBackToMimir := not .url -}}
|
|
{{- $url := .url -}}
|
|
{{- if $writeBackToMimir -}}
|
|
{{- $url = include "mimir.remoteWriteUrl.inCluster" .ctx }}
|
|
{{- end -}}
|
|
- url: {{ $url }}
|
|
{{- if .auth }}
|
|
basicAuth:
|
|
{{- if .auth.username }}
|
|
username:
|
|
name: {{ include "mimir.resourceName" (dict "ctx" $.ctx "component" "metrics-instance-usernames") }}
|
|
key: {{ .usernameKey | quote }}
|
|
{{- end }}
|
|
{{- with .auth }}
|
|
{{- if and .passwordSecretKey .passwordSecretName }}
|
|
password:
|
|
name: {{ .passwordSecretName | quote }}
|
|
key: {{ .passwordSecretKey | quote }}
|
|
{{- else if or .passwordSecretKey .passwordSecretName }}{{ required "Set either both passwordSecretKey and passwordSecretName or neither" nil }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- $headers := .headers -}}
|
|
{{- if $writeBackToMimir -}}{{- $_ := set $headers "X-Scope-OrgID" "metamonitoring" -}}{{- end -}}
|
|
{{- with $headers }}
|
|
headers:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
|
|
{{- define "mimir.metaMonitoring.logs.client" -}}
|
|
{{- if .url }}
|
|
- url: {{ .url }}
|
|
{{- if .auth }}
|
|
{{- if .auth.tenantId }}
|
|
tenantId: {{ .auth.tenantId | quote }}
|
|
{{- end }}
|
|
basicAuth:
|
|
{{- if .auth.username }}
|
|
username:
|
|
name: {{ include "mimir.resourceName" (dict "ctx" $.ctx "component" "logs-instance-usernames") }}
|
|
key: {{ .usernameKey | quote }}
|
|
{{- end }}
|
|
{{- with .auth }}
|
|
{{- if and .passwordSecretKey .passwordSecretName }}
|
|
password:
|
|
name: {{ .passwordSecretName | quote }}
|
|
key: {{ .passwordSecretKey | quote }}
|
|
{{- else if or .passwordSecretKey .passwordSecretName }}
|
|
{{ required "Set either both passwordSecretKey and passwordSecretName or neither" nil }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
externalLabels:
|
|
cluster: {{ include "mimir.clusterName" $.ctx | quote}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- define "mimir.metaMonitoring.metrics.remoteReadUrl" -}}
|
|
{{- with $.ctx.Values.metaMonitoring.grafanaAgent.metrics }}
|
|
{{- $writeBackToMimir := not (.remote).url -}}
|
|
{{- if $writeBackToMimir -}}
|
|
{{- include "mimir.remoteReadUrl.inCluster" $.ctx }}
|
|
{{- else -}}
|
|
{{- $parsed := urlParse (.remote).url -}}
|
|
{{ $parsed.scheme }}://{{ $parsed.host }}/prometheus
|
|
{{- end }}
|
|
{{- end -}}
|
|
{{- end -}} |