该文被密码保护。 阅读全文
posted @ 2024-04-16 14:15
kenneth-lin
阅读(1)
评论(0)
推荐(0)
|
摘要:
安装docker curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun systemctl start docker systemctl enable docker.service 安装pptpd mkdir -p /e 阅读全文
posted @ 2023-11-07 11:42
kenneth-lin
阅读(367)
评论(0)
推荐(0)
摘要:
参考文档: ``` Grafana告警配置 参考:https://www.jianshu.com/p/dcc1af87ccf1 Grafana告警配置 参考:https://www.yii666.com/blog/516251.html 企业微信开发 参考:http://www.taodudu.cc 阅读全文
posted @ 2023-08-18 10:45
kenneth-lin
阅读(222)
评论(0)
推荐(0)
摘要:
##1、添加告警配置 ``` vim configs/alarm-settings.yml dingtalkHooks: textTemplate: |- { "msgtype": "text", "text": { "content": "Apache SkyWalking Alarm: \n % 阅读全文
posted @ 2023-07-28 14:10
kenneth-lin
阅读(620)
评论(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
阅读(885)
评论(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
阅读(110)
评论(0)
推荐(0)
|