博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
osd内的pg数量
阅读量:6565 次
发布时间:2019-06-24

本文共 876 字,大约阅读时间需要 2 分钟。

  hot3.png

ceph pg dump | awk '/pg_stat/ { col=1; while($col!=“up”) {col++}; col++ }/[0-9a-f]+.[0-9a-f]+/ { match($0,/^[0-9a-f]+/); pool=substr($0, RSTART, RLENGTH); poollist[pool]=0;up=$col; i=0; RSTART=0; RLENGTH=0; delete osds; while(match(up,/[0-9]+/)>0) { osds[++i]=substr(up,RSTART,RLENGTH); up = substr(up, RSTART+RLENGTH) }for(i in osds) {array[osds[i],pool]++; osdlist[osds[i]];}}END {printf(“\n”);printf(“pool :\t”); for (i in poollist) printf(“%s\t”,i); printf(“| SUM \n”);for (i in poollist) printf(“——–“); printf(“—————-\n”);for (i in osdlist) { printf(“osd.%i\t”, i); sum=0;for (j in poollist) { printf(“%i\t”, array[i,j]); sum+=array[i,j]; poollist[j]+=array[i,j] }; printf(“| %i\n”,sum) }for (i in poollist) printf(“——–“); printf(“—————-\n”);printf(“SUM :\t”); for (i in poollist) printf(“%s\t”,poollist[i]); printf(“|\n”);}'

 

转载于:https://my.oschina.net/banwh/blog/1523582

你可能感兴趣的文章
英特尔开源计算机视觉数据标签工具CVAT,加速数据注释
查看>>
consule服务注册和发现 安装 部署
查看>>
多个帐户都用root 来登录 怎么看另一个用户使用的那些命令
查看>>
Map集合案例
查看>>
《FPGA全程进阶---实战演练》第十一章 VGA五彩缤纷
查看>>
第七次课程作业
查看>>
C++ 文本查询2.0(逻辑查询)
查看>>
Objective-C学习总结-13协议1
查看>>
web学习方向
查看>>
A*算法实现
查看>>
第一周 从C走进C++ 002 命令行参数
查看>>
【java】itext pdf 分页
查看>>
看看这个电脑的配置
查看>>
[转]【NoSQL】NoSQL入门级资料整理(CAP原理、最终一致性)
查看>>
RequireJS进阶(二)
查看>>
我设计的网站的分布式架构
查看>>
linux extract rar files
查看>>
Knockout.Js官网学习(监控属性Observables)
查看>>
ORA-12514: TNS: 监听程序当前无法识别连接描述符中请求的服务解决
查看>>
azure之MSSQL服务性能测试
查看>>