摘要:
prometheus 语法 参考: https://blog.csdn.net/Happy_Sunshine_Boy/article/details/105651016 CPU 1.计算CPU的使用时间 空闲CPU使用时间 = node_cpu_seconds_total{mode=“idle”} 阅读全文
摘要:
prometheus 语法 参考: https://blog.csdn.net/Happy_Sunshine_Boy/article/details/105651016 CPU 1.计算CPU的使用时间 空闲CPU使用时间 = node_cpu_seconds_total{mode=“idle”} 阅读全文
摘要:
查看当前连接数 ``` netstat -an|awk '/^tcp/{++S[$NF]}END{for (a in S)print a,S[a]}' ``` 命令解释 ``` CLOSED:没有连接活动或正在进行的; LISTEN:服务器正在等待的进入呼叫; SYN_RECV:一个连接请求已经到达 阅读全文
|