Kubernetes 可观测性技术栈选型指南

Weijie Zhao2024年11月8日11 min read

三大支柱

- **Logging**: Vector + ClickHouse

- **Metrics**: Prometheus + Grafana

- **Tracing**: Jaeger / Tempo

推荐方案

apiVersion: v1
kind: ConfigMap
metadata:
  name: observability-config
data:
  logs: "vector -> clickhouse"
  metrics: "prometheus -> grafana"
  traces: "otel -> tempo"

部署架构

helm install prometheus prometheus-community/prometheus
helm install grafana grafana/grafana
helm install vector vector/vector

Related Posts