2016-01-21 64 views
2

目前我通過Prometheus.io監測碼頭集裝箱。我的問題是,我只是得到「cpu_user_seconds_total」或「c​​pu_system_seconds_total」。我的問題是如何將這個不斷增加的值轉換爲CPU百分比?Prometheus - 將cpu_user_seconds轉換爲CPU使用率%?

我目前查詢:

rate(container_cpu_user_seconds_total[30s]) 

但我不認爲這是完全正確的(比較頂部)。

如何將cpu_user_seconds_total轉換爲CPU百分比? (如在頂部)

回答

7

率返回每秒值,所以乘以100會給百分比:

rate(container_cpu_user_seconds_total[30s]) * 100