• Mongostat 2.6详解


    Mongostat

    C:UsersJohn>Mongostat
    connected to: 127.0.0.1
    insert  query update delete getmore command flushes mapped  vsize    res faults  locked db idx miss %     qr|qw   ar|aw  netIn netOut  conn       time
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:09
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:10
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:11
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:12
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0 admin:0.0%          0       0|0     0|0    62b     3k     3   17:04:13
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:14
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:23
        *0     *0     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:24
        *0     *0     *0     *0       0     1|0       1   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:25
        *0      3     *0     *0       0     1|0       0   160m  1.53g    12m      0  test:0.0%          0       0|0     0|0    62b     3k     3   17:04:26
    insert  query update delete getmore command flushes mapped  vsize    res faults  locked db idx miss %     qr|qw   ar|aw  netIn netOut  conn       time
    

    inserts
    The number of objects inserted into the database per second. If followed by an asterisk (e.g. *), the datum refers to a replicated operation.

    query
    The number of query operations per second.

    update
    The number of update operations per second.

    delete
    The number of delete operations per second.

    getmore
    The number of get more (i.e. cursor batch) operations per second.

    command
    The number of commands per second. On slave and secondary systems, mongostat presents two values separated by a pipe character (e.g. |), in the form of local|replicated commands.

    flushes
    The number of fsync operations per second.

    mapped
    The total amount of data mapped in megabytes. This is the total data size at the time of the last mongostat call.

    size
    The amount of virtual memory in megabytes used by the process at the time of the last mongostat call.

    non-mapped
    The total amount of virtual memory excluding all mapped memory at the time of the last mongostat call.

    res
    The amount of resident memory in megabytes used by the process at the time of the last mongostat call.

    faults
    Changed in version 2.1.
    The number of page faults per second.
    Before version 2.1 this value was only provided for MongoDB instances running on Linux hosts.

    locked
    The percent of time in a global write lock.
    Changed in version 2.2: The locked db field replaces the locked % field to more appropriate data regarding the database specific locks in version 2.2.

    locked db
    New in version 2.2.
    The percent of time in the per-database context-specific lock. mongostat will report the database that has spent the most time since the last mongostat call with a write lock.
    This value represents the amount of time that the listed database spent in a locked state combined with the time that the mongod spent in the global lock. Because of this, and the sampling method, you may see some values greater than 100%.

    idx miss
    The percent of index access attempts that required a page fault to load a btree node. This is a sampled value.

    qr
    The length of the queue of clients waiting to read data from the MongoDB instance.

    qw
    The length of the queue of clients waiting to write data from the MongoDB instance.

    ar
    The number of active clients performing read operations.

    aw
    The number of active clients performing write operations.

    netIn
    The amount of network traffic, in bytes, received by the MongoDB instance.

    This includes traffic from mongostat itself.

    netOut
    The amount of network traffic, in bytes, sent by the MongoDB instance.

    This includes traffic from mongostat itself.

    conn
    The total number of open connections.

    set
    The name, if applicable, of the replica set.

    repl
    The replication status of the member.
    PRI:PRIMARY
    SEC:SECONDARY
    REC:recovering
    UNK:unknown
    M: master
    RTR:mongos process (“router”)

    Usage
    In the first example, mongostat will return data every second for 20 seconds.
    mongostat -n 20 1

    In many cases, using the --discover will help provide a more complete snapshot of the state of an entire group of machines. If a mongos process connected to a sharded cluster is running on port 27017 of the local machine, you can use the following form to return statistics from all members of the cluster:

  • 相关阅读:
    阶段1 语言基础+高级_1-3-Java语言高级_02-继承与多态_第1节 继承_1_继承的概述
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第8节 Math类_19_Math练习:小学数学真题
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第8节 Math类_18_数学工具类Math
    iView 实战系列教程(21课时)_1.iView 实战教程之配置篇_图片优化
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第7节 Arrays工具类_17_Arrays练习:字符串倒序
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第7节 Arrays工具类_16_数组工具类Array
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第6节 static静态_15_静态代码块
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第6节 static静态_14_静态static的内存图
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第6节 static静态_13_静态static关键字修饰成员方法
    阶段1 语言基础+高级_1-3-Java语言高级_1-常用API_1_第5节 String类_4_字符串的比较相关方法
  • 原文地址:https://www.cnblogs.com/xiaoit/p/4476647.html
Copyright © 2020-2023  润新知