@@ -36,7 +36,7 @@ information regarding the specific :program:`mongod` and
36
36
"process" : "<mongod|mongos>",
37
37
"pid" : <num>,
38
38
"uptime" : <num>,
39
- "uptimeMillis" : NumberLong() ,
39
+ "uptimeMillis" : <num> ,
40
40
"uptimeEstimate" : <num>,
41
41
"localTime" : ISODate(""),
42
42
@@ -48,42 +48,42 @@ state and use of both global (i.e. ``.``) and database specific locks:
48
48
"locks" : {
49
49
"." : {
50
50
"timeLockedMicros" : {
51
- "R" : NumberLong() ,
52
- "W" : NumberLong()
51
+ "R" : <num> ,
52
+ "W" : <num>
53
53
},
54
54
"timeAcquiringMicros" : {
55
- "R" : NumberLong() ,
56
- "W" : NumberLong()
55
+ "R" : <num> ,
56
+ "W" : <num>
57
57
}
58
58
},
59
59
"admin" : {
60
60
"timeLockedMicros" : {
61
- "r" : NumberLong() ,
62
- "w" : NumberLong()
61
+ "r" : <num> ,
62
+ "w" : <num>
63
63
},
64
64
"timeAcquiringMicros" : {
65
- "r" : NumberLong() ,
66
- "w" : NumberLong()
65
+ "r" : <num> ,
66
+ "w" : <num>
67
67
}
68
68
},
69
69
"local" : {
70
70
"timeLockedMicros" : {
71
- "r" : NumberLong() ,
72
- "w" : NumberLong()
71
+ "r" : <num> ,
72
+ "w" : <num>
73
73
},
74
74
"timeAcquiringMicros" : {
75
- "r" : NumberLong() ,
76
- "w" : NumberLong()
75
+ "r" : <num> ,
76
+ "w" : <num>
77
77
}
78
78
},
79
79
"<database>" : {
80
80
"timeLockedMicros" : {
81
- "r" : NumberLong() ,
82
- "w" : NumberLong()
81
+ "r" : <num> ,
82
+ "w" : <num>
83
83
},
84
84
"timeAcquiringMicros" : {
85
- "r" : NumberLong() ,
86
- "w" : NumberLong()
85
+ "r" : <num> ,
86
+ "w" : <num>
87
87
}
88
88
}
89
89
},
@@ -95,8 +95,8 @@ provides more fine grained data that reflects lock use:
95
95
.. code-block:: javascript
96
96
97
97
"globalLock" : {
98
- "totalTime" : NumberLong() ,
99
- "lockTime" : NumberLong() ,
98
+ "totalTime" : <num> ,
99
+ "lockTime" : <num> ,
100
100
"currentQueue" : {
101
101
"total" : <num>,
102
102
"readers" : <num>,
@@ -291,7 +291,7 @@ performance:
291
291
"commitsInWriteLock" : <num>,
292
292
"earlyCommits" : <num>,
293
293
"timeMs" : {
294
- "dt" : 3 <num>69 ,
294
+ "dt" : <num>,
295
295
"prepLogBuffer" : <num>,
296
296
"writeToJournal" : <num>,
297
297
"writeToDataFiles" : <num>,
0 commit comments