stefanprodan / istio-hpa

Configure horizontal pod autoscaling with Istio metrics and Prometheus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

request_total & memory,what mean?

szbrain opened this issue · comments

sum(
rate(
istio_requests_total{
destination_workload="podinfo",
destination_workload_namespace="test"
}[1m]
)
) /
count(
count(
container_memory_usage_bytes{
namespace="test",
pod_name=~"podinfo.*"
}
) by (pod_name)
)

Did you get any clarity here?