Monitoring your Hetzner Cloud Kubernetes Cluster #554
Replies: 4 comments 11 replies
-
|
Beta Was this translation helpful? Give feedback.
-
just tried that.
looks like we're just too new for rancher :/ |
Beta Was this translation helpful? Give feedback.
-
My suggestion nowadays would be to deploy SigNoz instead and use that for monitoring. It supports logs, metrics and traces, all in one dashboard. It's pretty straightforward to deploy using the official Helm chart and it automatically monitors the whole K8s cluster (nodes, pods and everything). It's also super easy to make it monitor Prometheus exported metrics (for example Authelia can export metrics on annotations:
signoz.io/scrape: "true"
signoz.io/port: "9959"
signoz.io/path: /metrics
apm.signoz.io/scrape: "true"
apm.signoz.io/port: "9959"
apm.signoz.io/path: /metrics For Hetzner you can use these helm values: global:
cloud: hcloud |
Beta Was this translation helpful? Give feedback.
-
Hi there,
First of all, a general question for the community: What setup do you guys have for monitoring your Kubernetes cluster? The popular option is Prometheus/Grafana, but wondering if there are other options you guys use in practice.
Secondly, much like how in your documentation, you have the following examples:
Do you have an example of how to set up monitoring with Prometheus/Grafana for this module? I can set it up directly against Kubernetes, but I want to do it the recommended way for this module so that when I someday decide to teardown my infrastructure using terraform, it'll also tear down the monitoring setup as well.
Thanks,
Beta Was this translation helpful? Give feedback.
All reactions