MongoDB mongotop命令詳解

chenfeng發表於2016-03-31

mongotop用來跟蹤MongoDB的例項, 提供每個集合的統計資料。預設情況下,mongotop每一秒重新整理一次。
mongotop用法:
C:\Users\duansf>mongotop --help
View live MongoDB collection statistics.

Options:
  --help                                produce help message
  -v [ --verbose ]                      be more verbose (include multiple times
                                        for more verbosity e.g. -vvvvv)
  --quiet                               silence all non error diagnostic
                                        messages
  --version                             print the program's version and exit
  -h [ --host ] arg                     mongo host to connect to ( <set
                                        name>/s1,s2 for sets)
  --port arg                            server port. Can also use --host
                                        hostname:port
  --ipv6                                enable IPv6 support (disabled by
                                        default)
  -u [ --username ] arg                 username
  -p [ --password ] arg                 password
  --authenticationDatabase arg          user source (defaults to dbname)
  --authenticationMechanism arg (=MONGODB-CR)
                                        authentication mechanism
  --gssapiServiceName arg (=mongodb)    Service name to use when authenticating
                                        using GSSAPI/Kerberos
  --gssapiHostName arg                  Remote host name to use for purpose of
                                        GSSAPI/Kerberos authentication
  --locks                               use db lock info instead of top

C:\Users\duansf>mongotop -h localhost -vvvvv
2016-03-31T17:39:27.553+0800 creating new connection to:localhost:27017
2016-03-31T17:39:27.562+0800 [ConnectBG] BackgroundJob starting: ConnectBG
2016-03-31T17:39:27.565+0800 connected to server localhost:27017 (127.0.0.1)
2016-03-31T17:39:27.565+0800 connected connection!
connected to: localhost

                            ns       total        read       write
2016-03-31T09:39:28
                wangshuai.test         0ms         0ms         0ms
   wangshuai.system.namespaces         0ms         0ms         0ms
      wangshuai.system.indexes         0ms         0ms         0ms
                    test.users         0ms         0ms         0ms
        test.system.namespaces         0ms         0ms         0ms
           test.system.indexes         0ms         0ms         0ms
                 test.chenfeng         0ms         0ms         0ms
                    test.books         0ms         0ms         0ms


                            ns       total        read       write
2016-03-31T09:39:29
                wangshuai.test         0ms         0ms         0ms
   wangshuai.system.namespaces         0ms         0ms         0ms
      wangshuai.system.indexes         0ms         0ms         0ms
                    test.users         0ms         0ms         0ms
        test.system.namespaces         0ms         0ms         0ms
           test.system.indexes         0ms         0ms         0ms
                 test.chenfeng         0ms         0ms         0ms
                    test.books         0ms         0ms         0ms

                            ns       total        read       write
2016-03-31T09:39:30
                wangshuai.test         0ms         0ms         0ms
   wangshuai.system.namespaces         0ms         0ms         0ms
      wangshuai.system.indexes         0ms         0ms         0ms
                    test.users         0ms         0ms         0ms
        test.system.namespaces         0ms         0ms         0ms
           test.system.indexes         0ms         0ms         0ms
                 test.chenfeng         0ms         0ms         0ms
                    test.books         0ms         0ms         0ms


                            ns       total        read       write
2016-03-31T09:39:31
                wangshuai.test         0ms         0ms         0ms
   wangshuai.system.namespaces         0ms         0ms         0ms
      wangshuai.system.indexes         0ms         0ms         0ms
                    test.users         0ms         0ms         0ms
        test.system.namespaces         0ms         0ms         0ms
           test.system.indexes         0ms         0ms         0ms
                 test.chenfeng         0ms         0ms         0ms
                    test.books         0ms         0ms         0ms

                            ns       total        read       write
2016-03-31T09:39:32
                wangshuai.test         0ms         0ms         0ms
   wangshuai.system.namespaces         0ms         0ms         0ms
      wangshuai.system.indexes         0ms         0ms         0ms
                    test.users         0ms         0ms         0ms
        test.system.namespaces         0ms         0ms         0ms
           test.system.indexes         0ms         0ms         0ms
                 test.chenfeng         0ms         0ms         0ms
                    test.books         0ms         0ms         0ms

輸出欄位說明:
ns:資料庫名稱空間,後者結合了資料庫名稱和集合。
db:資料庫的名稱。名為 . 的資料庫針對全域性鎖定,而非特定資料庫。
total:mongod在這個命令空間上花費的總時間。
read:在這個命令空間上mongod執行讀操作花費的時間。
write:在這個名稱空間上mongod進行寫操作花費的時間。</set

<set





</set

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2073258/,如需轉載,請註明出處,否則將追究法律責任。