Files
sbbb/base/monitoring/kustomization.yaml
Sienna Meridian Satterwhite d3943c9a84 feat(monitoring): wire up full LGTM observability stack
- Prometheus: discover ServiceMonitors/PodMonitors in all namespaces,
  enable remote write receiver for Tempo metrics generator
- Tempo: enable metrics generator (service-graphs + span-metrics)
  with remote write to Prometheus
- Loki: add Grafana Alloy DaemonSet to ship container logs
- Grafana: enable dashboard sidecar, add Pingora/Loki/Tempo/OpenBao
  dashboards, add stable UIDs and cross-linking between datasources
  (Loki↔Tempo derived fields, traces→logs, traces→metrics, service map)
- Linkerd: enable proxy tracing to Alloy OTLP collector, point
  linkerd-viz at existing Prometheus instead of deploying its own
- Pingora: add OTLP rollout plan (endpoint commented out until proxy
  telemetry panic fix is deployed and Alloy is verified healthy)
2026-03-21 17:36:54 +00:00

45 lines
1.2 KiB
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: monitoring
resources:
- namespace.yaml
- vault-secrets.yaml
- grafana-oauth2client.yaml
- dashboards-configmap.yaml
helmCharts:
# helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
- name: kube-prometheus-stack
repo: https://prometheus-community.github.io/helm-charts
version: "82.9.0"
releaseName: kube-prometheus-stack
namespace: monitoring
valuesFile: prometheus-values.yaml
includeCRDs: true
# helm repo add grafana https://grafana.github.io/helm-charts
- name: loki
repo: https://grafana.github.io/helm-charts
version: "6.53.0"
releaseName: loki
namespace: monitoring
valuesFile: loki-values.yaml
- name: tempo
repo: https://grafana.github.io/helm-charts
version: "1.24.4"
releaseName: tempo
namespace: monitoring
valuesFile: tempo-values.yaml
# Grafana Alloy — DaemonSet that ships container logs → Loki
# and provides an in-cluster OTLP receiver → Tempo.
- name: alloy
repo: https://grafana.github.io/helm-charts
version: "0.12.0"
releaseName: alloy
namespace: monitoring
valuesFile: alloy-values.yaml