博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[原创]实现MongoDB数据库审计SQL语句的脚本
阅读量:5360 次
发布时间:2019-06-15

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

功能:实现具体显示mongodb数据库表操作语句的状态和情况,使用awk和shell实现抓取和分析处理。脚本内容如下: #!/bin/bash if [ $# == 0 ];then     echo "NO enter any worlds,Please enter three worlds, the first world is db and the second world is collection and last world is host for statics!" elif [ $# == 1 ];then     echo "Enter a world,Please enter other two worlds, the first world is db and the second world is collection and last world  is host for statics!" elif [ $# == 2 ];then     echo "Enter two worlds,Please enter another worlds, the first world is db and the second world is collection and last world  is host for statics!" elif [ $# == 3 ];then     world=$1.$2     date=`date +%Y%m%d%H%M%S`     cd /data/Darren/mongodb2.6/bin/     ./mongoexport --host $3 --db $1 --collection system.profile --out /data/Darren/mongo_statics/dump_$3_${date}.json     cd /data/Darren/mongo_statics/     grep op dump_$3_${date}.json | awk -F ":|[,]" '{if($4 ~/"'$world'"/) {print}}' >> /data/Darren/mongo_statics/$3_${world}_${date}.log     cat $3_${world}_${date}.log | awk -F ":|[,]|[{]" '{if($8 ~/ "\$query" /){$8=$10}if($3 ~/ "insert" /){$8=$6}}{print $5,$3,$8}' | awk -F '"' 'BEGIN{OFS=" | "}{print $2,$4,$6}'|sort|uniq -c >> /data/Darren/mongo_statics/result_$3_${world}_${date}.txt     cat result_$3_${world}_${date}.txt else     echo "Please enter the correct worlds number!" fi

转载于:https://www.cnblogs.com/wsjhk/p/6909422.html

你可能感兴趣的文章
Linux常用命令(十四)
查看>>
Linux常用命令(十七)
查看>>
Linux常用命令(十六)
查看>>
Linux常用命令(二十四)
查看>>
4种java定时器
查看>>
Vue.js 教程
查看>>
linux 设置网卡
查看>>
hive 语法 case when 语法
查看>>
Ajax:js读取txt内容(json格式内容)
查看>>
Task 7 买书最低价格问题
查看>>
Selenium3+python自动化007-警告框
查看>>
html5 相同形状的图形进行循环
查看>>
springboot中文官方文档
查看>>
ThreadLocal实现线程范围内共享
查看>>
多校HDU5723 最小生成树+dfs回溯
查看>>
ASP.NET MVC分页实现之改进版-增加同一个视图可设置多个分页
查看>>
关于ASP.NET MVC开发设计中出现的问题与解决方案汇总 【持续更新】
查看>>
关于Entity Framework中的Attached报错的完美解决方案终极版
查看>>
Selenium之Web页面滚动条滚操作
查看>>
组合数据类型练习,英文词频统计实例上
查看>>