23 Eylül 2022 Cuma

Prometheus PromQL

container_cpu_cfs_throttled_seconds_total
Açıklaması şöyle. Bu durum Best Effort Qos veya Guaranteed Qos kullanılmışsa ve JVM warm-up aşamasında görülebilir.
Kubernetes exposes a per-pod metric container_cpu_cfs_throttled_seconds_total which denotes — how many seconds CPU has been throttled for this pod since its start.

 container_cpu_usage_seconds_total
Örnek
Şöyle yaparız
avg by (namespace)(rate(container_cpu_usage_seconds_total{pod=~"rlwy-proc-blue-.*" ,container="main"}[10m]))
Açıklaması şöyle
This query will give us the number of cores that are being used by specified container.
Şeklen şöyle. Bu pod'a atanmış 4 işlemci var. Bir ara hepsini 100% kullanmış.


Hiç yorum yok:

Yorum Gönder

Cluster Propotional Autoscaler - ReplicaSet Ekler/Siler

Giriş Açıklaması şöyle CPA aims to horizontally scale the number of Pod replicas based on the cluster’s scale. A common example is DNS ser...