23 Eylül 2022 Cuma

Prometheus PromQL

Prometheus Kurulum
Örnek
Şöyle yaparız
kubectl apply -f 
https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/main/bundle.yaml
Grafana Kurulum
Örnek
Şöyle yaparız
kubectl apply -f 
https://raw.githubusercontent.com/grafana/helm-charts/main/charts/grafana/templates/grafana.yaml
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

Kubernetes kind: Cluster

Örnek Şöyle yaparız apiVersion: cluster.k8s.io/v1alpha1 kind: Cluster metadata: name: my-cluster spec: autoscaler: enabled: true ...