上一页 1 ··· 8 9 10 11 12 13 14 15 下一页
摘要: 容器中的磁盘I/O监控指标主要包括 1、磁盘写总量 container_fs_writes_bytes_total 2、磁盘读总量 container_fs_reads_bytes_total 针对磁盘IO需要注意以下两点 1、读写是针对设备的,没有设备都有不同的读写速率 2、写速率监控智能获取直接 阅读全文
posted @ 2021-11-29 21:33 Hello_worlds 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 在容器内进行内存监控的常用指标包括 1、 内存中的cache用量 container_memory_cache 2、 常驻的内存用量 container_memory_rss 3、 交换分区用量 container_memory_swap 4、 内存的总占用量 container_memory_us 阅读全文
posted @ 2021-11-29 20:49 Hello_worlds 阅读(1729) 评论(0) 推荐(0) 编辑
摘要: k8s通过request(下限)和limit(上限)限制容器的CPU和内存的使用范围 在容器运行的过程中需要实时监控容器对cpu的使用情况 1、 容器用户态占用CPU的时间总和 container_cpu_user_seconds_total 2、 容器内核态占用CPU的时间总和 container 阅读全文
posted @ 2021-11-29 20:12 Hello_worlds 阅读(2630) 评论(0) 推荐(0) 编辑
摘要: 1.查看pod运行情况 [root@binghe101 ~]# kubectl get pods -A -o wide NAMESPACE NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES kube-syste 阅读全文
posted @ 2021-11-01 19:49 Hello_worlds 阅读(618) 评论(0) 推荐(0) 编辑
摘要: 为什么要监控kernel.pid_max呢?以下这个案例来解答这个问题 有台生产环境的服务器down了,ssh连接不上去。就在准备去重启该机器的时候,突然又可以ssh登录了。但是只有一个同事成功登录,其他人依然无法连接。在成功登录的同事终端上执行任何命令,都会报如下错误:# free-bash: f 阅读全文
posted @ 2021-10-13 22:01 Hello_worlds 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 声明:本文转自《https://www.cnblogs.com/kerrycode/p/13875901.html》 考虑到是别人的博客,终究一天别人会删掉,所以花点时间整理到自己的博客上来,加深理解 前言:本文是对这篇博客Zabbix: Partitioning MySQL / MariaDB d 阅读全文
posted @ 2021-07-30 11:08 Hello_worlds 阅读(388) 评论(0) 推荐(0) 编辑
摘要: centos7 # 依赖安装 yum -y install gcc gcc-c++ unixODBC-devel httpd mysql-devel libcurl libcurl-devel libevent libevent-devel fping curl-devel libxml2 libx 阅读全文
posted @ 2021-05-31 10:03 Hello_worlds 阅读(221) 评论(0) 推荐(0) 编辑
摘要: # 2. 新建 CentOS-aliyun.repo 文件cd /etc/yum.repos.dcp CentOS-Base.repo CentOS-aliyun.repo # 3. 在CentOS-ucloud.repo文件末尾添加如下代码vim CentOS-aliyun.repo [kerne 阅读全文
posted @ 2021-05-26 17:18 Hello_worlds 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 在做监控的时候,有可能会发生agent挂掉,无法采取到告警的时候。 这个时候可能就无法发送告警了 # 解决方法 这个时候需要用《nodata》触发器 《nodata触发器》表达式参考 {docker container check health:net.tcp.listen[{#TCP_PORT}] 阅读全文
posted @ 2021-03-29 21:40 Hello_worlds 阅读(947) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash ethn=$1 while true do RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}') TX_pre=$(cat /proc/net/dev | grep $ethn 阅读全文
posted @ 2021-03-10 17:58 Hello_worlds 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页