全部博文(150)
发布时间:2019-03-07 11:17:38
输出mongodb所有库中各表的大小的shell环境mongodb 3.4.4centos 7shell[root@db01 ~]# cat get_table_size.sh#!/bin/shMONGO=/usr/bin/mongofunction get_dbs() { $MONGO << EOFshow dbsEOF}function get_tables() { # $1 is dbname DB=$1 $MONGO << EOFuse $DB ;sho.........【阅读全文】
发布时间:2019-02-20 11:43:21
open falcon针对nginx监控的shell实现版一、简要说明小米开源的的open falcon监控系统针对nginx监控的shell实现版本,根据nginx的日志文件,利用awk/sort等shell命令运算获取结果,无需nginx编译支持lua。官方提供的为lua实现版本 官方版本源代码 github地址1、已实现功能query_.........【阅读全文】
发布时间:2019-02-15 14:04:34
nginx tcp stream 访问日志配置的优化需求记录tcp 访问日志只记录业务访问的日志,负载均衡器发起的探测端口存活的空数据包不记录;连接完成后马上写入日志(方便调试),默认nginx会写入缓存,缓存满后写入日志;环境系统:centos7.........【阅读全文】
发布时间:2019-01-10 10:44:52
点击(此处)折叠或打开#!/bin/shcd /rootthread=17count=1000start_line=1input_file="goluk_2019009.list"for ((i=1;i<=$thread;i++))dobegins=`expr $start_line + $i \* $count`.........【阅读全文】