怎么监控MongoDB的运行状态

56次阅读
没有评论

共计 2062 个字符,预计需要花费 6 分钟才能阅读完成。

这篇文章主要介绍“怎么监控 MongoDB 的运行状态”,在日常操作中,相信很多人在怎么监控 MongoDB 的运行状态问题上存在疑惑,丸趣 TV 小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么监控 MongoDB 的运行状态”的疑惑有所帮助!接下来,请跟着丸趣 TV 小编一起来学习吧!

MongoDB 中提供了 mongostat 和 mongotop 两个命令来监控 MongoDB 的运行情况。

mongostat 命令
mongostat 是 mongodb 自带的状态检测工具,在命令行下使用。它会间隔固定时间获取 mongodb 的当前运行状态,并输出。如果你发现数据库突然变慢或者有其他问题的话,你第一手的操作就考虑采用 mongostat 来查看 mongo 的状态。

[root@D2-LZY245 ~]# mongostat -u root -p root –authenticationDatabase admin
insert query update delete getmore command dirty used flushes vsize  res qrw arw net_in net_out conn  time
  *0  *0  *0  *0  0  2|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  160b  46.0k  2 Aug 18 10:26:22.203
  *0  *0  *0  *0  0  2|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  158b  45.5k  2 Aug 18 10:26:23.203
  *0  *0  *0  *0  0  1|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  157b  45.4k  2 Aug 18 10:26:24.204
  *0  *0  *0  *0  0  2|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  158b  45.5k  2 Aug 18 10:26:25.204
  *0  *0  *0  *0  0  2|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  158b  45.5k  2 Aug 18 10:26:26.203
  *0  *0  *0  *0  0  2|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  158b  45.5k  2 Aug 18 10:26:27.203
  *0  *0  *0  *0  0  2|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  158b  45.5k  2 Aug 18 10:26:28.202
  *0  *0  *0  *0  0  1|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  157b  45.5k  2 Aug 18 10:26:29.203
  *0  *0  *0  *0  0  1|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  157b  45.4k  2 Aug 18 10:26:30.204
  *0  *0  *0  *0  0  2|0  0.0% 0.0%  0  964M 51.0M 0|0 0|0  158b  45.5k  2 Aug 18 10:26:31.202

mongotop 命令
mongotop 也是 mongodb 下的一个内置工具,mongotop 提供了一个方法,用来跟踪一个 MongoDB 的实例,查看哪些大量的时间花费在读取和写入数据。mongotop 提供每个集合的水平的统计数据。默认情况下,mongotop 返回值的每一秒。

[root@D2-LZY245 ~]# mongotop -u root -p root –authenticationDatabase admin
2017-08-18T10:29:10.150+0800  connected to: 127.0.0.1

  ns  total  read  write  2017-08-18T10:29:11+08:00
  admin.system.roles  0ms  0ms  0ms   
  admin.system.users  0ms  0ms  0ms   
admin.system.version  0ms  0ms  0ms   
  hr.dept  0ms  0ms  0ms   
  hr.depts  0ms  0ms  0ms   
  hr.emp  0ms  0ms  0ms   
  hr.emps  0ms  0ms  0ms   
  hr.emps_infos  0ms  0ms  0ms   
  hr.info  0ms  0ms  0ms   
  hr.inventory  0ms  0ms  0ms

[root@D2-LZY245 ~]# mongotop -u root -p root –authenticationDatabase admin –locks
2017-08-18T10:30:52.337+0800  Failed: server does not support reporting lock information

到此,关于“怎么监控 MongoDB 的运行状态”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注丸趣 TV 网站,丸趣 TV 小编会继续努力为大家带来更多实用的文章!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-01发表,共计2062字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)