我使用Prometheus node_exporter和grafana来监视我的服务器。我只是以百分比格式监视CPU的使用情况,但我不知道如何以千兆赫兹格式监视CPU。有什么想法吗?
发布于 2022-02-23 11:35:11
你可以使用这样的东西:
(max (node_cpu_frequency_max_hertz) by (instance)) / 2^30给你2^30倍的频率。
https://stackoverflow.com/questions/63744197
复制相似问题