该文被密码保护。 阅读全文
posted @ 2023-07-21 11:42
kenneth-lin
阅读(0)
评论(0)
推荐(0)
|
摘要:
prometheus 语法 参考: https://blog.csdn.net/Happy_Sunshine_Boy/article/details/105651016 CPU 1.计算CPU的使用时间 空闲CPU使用时间 = node_cpu_seconds_total{mode=“idle”} 阅读全文
posted @ 2023-07-13 18:25
kenneth-lin
阅读(880)
评论(0)
推荐(0)
摘要:
查看当前连接数 ``` netstat -an|awk '/^tcp/{++S[$NF]}END{for (a in S)print a,S[a]}' ``` 命令解释 ``` CLOSED:没有连接活动或正在进行的; LISTEN:服务器正在等待的进入呼叫; SYN_RECV:一个连接请求已经到达 阅读全文
posted @ 2023-07-13 16:40
kenneth-lin
阅读(107)
评论(0)
推荐(0)
摘要:
``` mvn -U deploy -Dmaven.test.skip=true -Dmaven.javadoc.skip=true mvn clean install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true mvn clean instal 阅读全文
posted @ 2023-06-27 10:30
kenneth-lin
阅读(448)
评论(0)
推荐(0)
|