Self-Hosted Prometheus
Implement self-hosted Prometheus and Grafana in your Cobrowse Enterprise Kubernetes cluster for enhanced monitoring and data visualization.
Prometheus
# values.yml
server:
baseURL: http://<prometheus host>/prometheus/
prefixURL: /prometheus
ingress:
annotations:
kubernetes.io/ingress.class: nginx
enabled: true
hosts:
- <prometheus host>/prometheus
path: /prometheushelm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm install prometheus prometheus-community/prometheus -f values.ymlDocker Compose
Grafana
Last updated