21 lines
819 B
YAML
21 lines
819 B
YAML
{{- if .Values.dashboards.traces.enabled }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: tempo-dashboards-1
|
|
namespace: {{ $.Release.Namespace }}
|
|
data:
|
|
"tempo-operational.json": |
|
|
{{ $.Files.Get "src/dashboards/tempo-operational.json" | fromJson | toJson }}
|
|
"tempo-reads.json": |
|
|
{{ $.Files.Get "src/dashboards/tempo-reads.json" | fromJson | toJson }}
|
|
"tempo-resources.json": |
|
|
{{ $.Files.Get "src/dashboards/tempo-resources.json" | fromJson | toJson }}
|
|
"tempo-rollout-progress.json": |
|
|
{{ $.Files.Get "src/dashboards/tempo-rollout-progress.json" | fromJson | toJson }}
|
|
"tempo-tenants.json": |
|
|
{{ $.Files.Get "src/dashboards/tempo-tenants.json" | fromJson | toJson }}
|
|
"tempo-writes.json": |
|
|
{{ $.Files.Get "src/dashboards/tempo-writes.json" | fromJson | toJson }}
|
|
{{- end }} |