数据库profiler细粒度收集mongodb的写操作、游标、数据库命令等。可以在数据库级别或者实例级别开启profiling。

profiler将收集到的数据写入system.profile集合中。

profiling的级别:

0, 关闭profile,但是mongod会将超过slowOpThresholdMs的值操作写入日志

1, 只抓取slow操作,缺省是超过100毫秒的操作

2, 抓取所有数据库操作

1.查看是否开启profile功能:

> db.getProfilingLevel()
0
>

2.关闭profile功能:

> db.setProfilingLevel(0)

3.设置profile级别:

> db.setProfilingLevel(1,50)
{ "was" : 0, "slowms" : 100, "ok" : 1 }
>

setProfilingLevel的第一个参数是设置当前数据的profiling级别,第二个参数是设置整个mongod实例的慢操作阈值。

4.设置整个mongod的profiling级别

#启动时,指定参数profile的值
./mongod --profile=1 --slowms=15

示例:

查看profiler数据
数据库的profiler日志信息位于system.profile集合中。

> db.setProfilingLevel(1,50)
{ "was" : 1, "slowms" : 50, "ok" : 1 }
> db.profilingTest.insert({i:1})
WriteResult({ "nInserted" : 1 })
> db.profilingTest.find()
{ "_id" : ObjectId("56e3f62673c59411c4b1234c"), "i" : 1 }
> db.profilingTest.find({$where:'sleep(70)'})
> db.system.profile.find().pretty()
{
"op" : "insert",
"ns" : "test.currentOpTest",
"query" : {
"insert" : "currentOpTest",
"documents" : [
{
"_id" : ObjectId("56e3ebb713b6892d02827dde"),
"i" : 6411413
}
],
"ordered" : true
},
"ninserted" : 1,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 0,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(1),
"w" : NumberLong(1)
}
},
"Database" : {
"acquireCount" : {
"w" : NumberLong(1)
}
},
"Collection" : {
"acquireCount" : {
"w" : NumberLong(1)
}
}
},
"responseLength" : 25,
"protocol" : "op_command",
"millis" : 50,
"execStats" : { },
"ts" : ISODate("2016-03-12T10:13:11.073Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
{
"op" : "insert",
"ns" : "test.currentOpTest",
"query" : {
"insert" : "currentOpTest",
"documents" : [
{
"_id" : ObjectId("56e3ebb713b6892d02827de6"),
"i" : 6411421
}
],
"ordered" : true
},
"ninserted" : 1,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 0,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(1),
"w" : NumberLong(1)
}
},
"Database" : {
"acquireCount" : {
"w" : NumberLong(1)
}
},
"Collection" : {
"acquireCount" : {
"w" : NumberLong(1)
}
}
},
"responseLength" : 25,
"protocol" : "op_command",
"millis" : 166,
"execStats" : { },
"ts" : ISODate("2016-03-12T10:13:11.252Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
{
"op" : "insert",
"ns" : "test.currentOpTest",
"query" : {
"insert" : "currentOpTest",
"documents" : [
{
"_id" : ObjectId("56e3ed7e13b6892d028f10a4"),
"i" : 7235419
}
],
"ordered" : true
},
"ninserted" : 1,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 0,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(1),
"w" : NumberLong(1)
}
},
"Database" : {
"acquireCount" : {
"w" : NumberLong(1)
}
},
"Collection" : {
"acquireCount" : {
"w" : NumberLong(1)
}
}
},
"responseLength" : 25,
"protocol" : "op_command",
"millis" : 58,
"execStats" : { },
"ts" : ISODate("2016-03-12T10:20:46.223Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
{
"op" : "insert",
"ns" : "test.currentOpTest",
"query" : {
"insert" : "currentOpTest",
"documents" : [
{
"_id" : ObjectId("56e3eea513b6892d02975bee"),
"i" : 7778981
}
],
"ordered" : true
},
"ninserted" : 1,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 0,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(1),
"w" : NumberLong(1)
}
},
"Database" : {
"acquireCount" : {
"w" : NumberLong(1)
}
},
"Collection" : {
"acquireCount" : {
"w" : NumberLong(1)
}
}
},
"responseLength" : 25,
"protocol" : "op_command",
"millis" : 149,
"execStats" : { },
"ts" : ISODate("2016-03-12T10:25:41.989Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
{
"op" : "insert",
"ns" : "test.currentOpTest",
"query" : {
"insert" : "currentOpTest",
"documents" : [
{
"_id" : ObjectId("56e3f2bf13b6892d02b4401b"),
"i" : 9672402
}
],
"ordered" : true
},
"ninserted" : 1,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 0,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(1),
"w" : NumberLong(1)
}
},
"Database" : {
"acquireCount" : {
"w" : NumberLong(1)
}
},
"Collection" : {
"acquireCount" : {
"w" : NumberLong(1)
}
}
},
"responseLength" : 25,
"protocol" : "op_command",
"millis" : 143,
"execStats" : { },
"ts" : ISODate("2016-03-12T10:43:11.201Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
{
"op" : "insert",
"ns" : "test.profilingTest",
"query" : {
"insert" : "profilingTest",
"documents" : [
{
"_id" : ObjectId("56e3f62673c59411c4b1234c"),
"i" : 1
}
],
"ordered" : true
},
"ninserted" : 1,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 0,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(2),
"w" : NumberLong(2)
}
},
"Database" : {
"acquireCount" : {
"w" : NumberLong(1),
"W" : NumberLong(1)
}
},
"Collection" : {
"acquireCount" : {
"w" : NumberLong(1),
"W" : NumberLong(1)
}
}
},
"responseLength" : 25,
"protocol" : "op_command",
"millis" : 88,
"execStats" : { },
"ts" : ISODate("2016-03-12T10:57:42.769Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
{
"op" : "query",
"ns" : "test.profilingTest",
"query" : {
"find" : "profilingTest",
"filter" : { }
},
"keysExamined" : 0,
"docsExamined" : 1,
"cursorExhausted" : true,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 0,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(2)
}
},
"Database" : {
"acquireCount" : {
"r" : NumberLong(1)
}
},
"Collection" : {
"acquireCount" : {
"r" : NumberLong(1)
}
}
},
"nreturned" : 1,
"responseLength" : 145,
"protocol" : "op_command",
"millis" : 94,
"execStats" : {
"stage" : "COLLSCAN",
"filter" : {
"$and" : [ ]
},
"nReturned" : 1,
"executionTimeMillisEstimate" : 0,
"works" : 3,
"advanced" : 1,
"needTime" : 1,
"needYield" : 0,
"saveState" : 0,
"restoreState" : 0,
"isEOF" : 1,
"invalidates" : 0,
"direction" : "forward",
"docsExamined" : 1
},
"ts" : ISODate("2016-03-12T10:57:55.996Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
{
"op" : "query",
"ns" : "test.profilingTest",
"query" : {
"find" : "profilingTest",
"filter" : {
"$where" : "sleep(70)"
}
},
"keysExamined" : 0,
"docsExamined" : 1,
"cursorExhausted" : true,
"keyUpdates" : 0,
"writeConflicts" : 0,
"numYield" : 1,
"locks" : {
"Global" : {
"acquireCount" : {
"r" : NumberLong(8)
}
},
"Database" : {
"acquireCount" : {
"r" : NumberLong(4)
}
},
"Collection" : {
"acquireCount" : {
"r" : NumberLong(4)
}
}
},
"nreturned" : 0,
"responseLength" : 109,
"protocol" : "op_command",
"millis" : 1030,
"execStats" : {
"stage" : "COLLSCAN",
"filter" : {
"$where" : undefined
},
"nReturned" : 0,
"executionTimeMillisEstimate" : 70,
"works" : 3,
"advanced" : 0,
"needTime" : 2,
"needYield" : 0,
"saveState" : 1,
"restoreState" : 1,
"isEOF" : 1,
"invalidates" : 0,
"direction" : "forward",
"docsExamined" : 1
},
"ts" : ISODate("2016-03-12T10:58:07.439Z"),
"client" : "127.0.0.1",
"allUsers" : [ ],
"user" : ""
}
>

5.修改system.profile集合的大小

#1.关闭profiling
> db.setProfilingLevel(0)
#2.删除system.profile集合
> db.system.profile.drop()
#3.创建新得system.profile
> db.createCollection( "system.profile", { capped: true, size:4000000 } )
#4.重新开启profiling功能
> db.setProfilingLevel(1)

MongoDB Database Profiler的更多相关文章

  1. MongoDB 优化器MongoDB Database Profiler(12)

    优化器profile 在MySQL 中,慢查询日志是经常作为我们优化数据库的依据,那在MongoDB 中是否有类似的功能呢?答案是肯定的,那就是MongoDB Database Profiler. 1 ...

  2. How do I drop a MongoDB database, from the command line?

    mongo <dbname> --eval "db.dropDatabase()" > use mydb; > db.dropDatabase(); mon ...

  3. MongoDB性能优化

    一.索引 MongoDB 提供了多样性的索引支持,索引信息被保存在system.indexes 中,且默认总是为_id创建索引,它的索引使用基本和MySQL 等关系型数据库一样.其实可以这样说说,索引 ...

  4. Mongodb profile(慢查询日志)

    在MySQL中,慢查询日志是经常作为我们优化数据库的依据,那在MongoDB中是否有类似的功能呢?答案是肯定的,那就是MongoDB Database Profiler.所以MongoDB 不仅有,而 ...

  5. MongoDB性能篇之创建索引,组合索引,唯一索引,删除索引和explain执行计划

    这篇文章主要介绍了MongoDB性能篇之创建索引,组合索引,唯一索引,删除索引和explain执行计划的相关资料,需要的朋友可以参考下 一.索引 MongoDB 提供了多样性的索引支持,索引信息被保存 ...

  6. MongoDB性能优化指南

    一.索引 MongoDB 提供了多样性的索引支持,索引信息被保存在system.indexes 中,且默认总是为_id创建索引,它的索引使用基本和MySQL 等关系型数据库一样.其实可以这样说说,索引 ...

  7. MongoDB 创建基础索引、组合索引、唯一索引以及优化

    一.索引 MongoDB 提供了多样性的索引支持,索引信息被保存在system.indexes 中,且默认总是为_id创建索引,它的索引使用基本和MySQL 等关系型数据库一样.其实可以这样说说,索引 ...

  8. MongoDB分析工具之二:MongoDB分析器Profile

    MongoDB优化器profile 在MySQL 中,慢查询日志是经常作为我们优化数据库的依据,那在MongoDB 中是否有类似的功能呢?答案是肯定的,那就是MongoDB Database Prof ...

  9. MongoDB监控之一:运行状态、性能监控,分析

    为什么要监控? 监控及时获得应用的运行状态信息,在问题出现时及时发现. 监控什么? CPU.内存.磁盘I/O.应用程序(MongoDB).进程监控(ps -aux).错误日志监控 1.4.1 Mong ...

随机推荐

  1. 【高斯消元解xor方程组】BZOJ2466-[中山市选2009]树

    [题目大意] 给出一棵树,初始状态均为0,每反转一个节点的状态,相邻的节点(父亲或儿子)也会反转,问要使状态均为1,至少操作几次? [思路] 一场大暴雨即将来临,白昼恍如黑夜!happy! 和POJ1 ...

  2. 实验四实验报告————Android基础开发

    实验四实验报告----Android基础开发 任务一 关于R类 关于apk文件 实验成果 任务二 活动声明周期 实验成果 任务三 关于PendingIntent类 实验成果 任务四 关于布局 实验成果 ...

  3. Base64序列化和反序列化

    序列化: Dictionary<string, string> sPara = GetRequestPost(ref parameterStr); string serializeStri ...

  4. [转]Spring MVC 4常用的那些注解

    Spring从2.5版本开始在编程中引入注解,用户可以使用@RequestMapping, @RequestParam, @ModelAttribute等等这样类似的注解.到目前为止,Spring的版 ...

  5. gitHub 基础命令

    设置开发人员信息 git config --global user.name "chen" git config --global user.email "xxxxx@q ...

  6. iOS 捕获程序崩溃日志

    iOS开发中遇到程序崩溃是很正常的事情,如何在程序崩溃时捕获到异常信息并通知开发者? 下面就介绍如何在iOS中实现: 1. 在程序启动时加上一个异常捕获监听,用来处理程序崩溃时的回调动作 NSSetU ...

  7. 新公司官网项目优化实践(Vue)

    入职后接手website-html和website-mobile项目,发现项目加载速度不太理想,于是结合自己之前的经验对项目做了优化.此篇文章主要记录这次优化详情. 原始项目:开发环境:website ...

  8. synchronized 线程同步-类级别锁定

    1.demo 说明:代码中通过 printNum 方法传入参数判断 a.b 分别对 num 这个参数的值进行了修改. package demo1; import sun.applet.Main; pu ...

  9. 配置Yum源repo文件及搭建本地Yum服务器

    分享一篇配置Yum源repo文件及搭建本地Yum服务器的方法,希望对大家有用. Yum源的话有三大类: Base Extra Epel Base:就是你下载的光盘镜像里面的DVD1Extra:就是你下 ...

  10. vim配置python开发环境(转)

    安装 因为许多Unix衍生系统已经预装了Vim,我们首先要确认编辑器是否成功安装: vim --version 如果已经安装了,你应该看到类似下面的文字: VIM - Vi IMproved 7.3 ...