prometheus-kubernetes icon indicating copy to clipboard operation
prometheus-kubernetes copied to clipboard

Monitoring Kubernetes clusters on AWS, GCP and Azure using Prometheus Operator and Grafana

Results 32 prometheus-kubernetes issues
Sort by recently updated
recently updated
newest added

Hi I encounter the same issue as described here https://github.com/prometheus/prometheus/issues/3294 when deploying Prometheus Earlier (before the Prometheus operator implementation) metrics like `container_memory_working_set_bytes{id='/'}` provided all the node labels ![image](https://user-images.githubusercontent.com/9726307/41251068-2324717c-6db9-11e8-8a6d-25bc04313aac.png) But unfortunately...

https://github.com/camilb/prometheus-kubernetes/blob/bb1e515ce125e09f9ad7effe159292ae91db36d4/manifests/prometheus/prometheus-k8s-rules.yaml#L643 This line should be ``` expr: | 100 * sum(increase(container_cpu_cfs_throttled_periods_total{container_name!="", }[5m])) by (container_name, pod_name, namespace) / sum(increase(container_cpu_cfs_periods_total{}[5m])) by (container_name, pod_name, namespace) > 25 ```

Shouldn't be there some dashboards under `assets/grafana`?

The pod cpu usage graph is displaying percentages, but the metric used is `cpu_usage_total_seconds` which is just a measurement of time in seconds. i believe this is incorrect.

I'd like to use the file `manifests/prometheus/prometheus-k8s-rbac.yaml` in another OSS repository. Is this repo under the Apache License 2.0, as the [CoreOS Kube Prometheus repository](https://github.com/coreos/kube-prometheus) is? Are the files in...

My OS is **Centos7;** [root@k8s-node3 prometheus-kubernetes-2.8.0]# ./deploy Check for uncommitted changes fatal: Not a git repository (or any of the parent directories): .git OK! No uncommitted changes detected Enter desired...

Thank you very much for your contribution, which made it easy for me to install successfully. However, I can't get the monitoring information of Pod and Deployment. I don't know...

Thanks for sharing this great project. As same as described in #31 , I want to update ALERT rules, but path `assets/prometheus/rules/` can not found of the path. Can you...

Deploying Prometheus Operator serviceaccount/prometheus-operator unchanged clusterrole.rbac.authorization.k8s.io/prometheus-operator configured clusterrolebinding.rbac.authorization.k8s.io/prometheus-operator configured service/prometheus-operator unchanged deployment.apps/prometheus-operator unchanged Waiting for Operator to register custom resource definitions.......................................................... I found that I have waited for a long...

Hi camilb, Before i describe my problem, i want to thank you for your amazing work. My scenario is: Kubernetes AWS EKS with autoscaling V1.11. Everything is ok except the...