Skip to content

Commit 0bca88c

Browse files
author
Sam Kleinman
committed
DOCS-377 corrections based on feedback
1 parent 6efafb1 commit 0bca88c

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

source/reference/server-status-index.txt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ information regarding the specific :program:`mongod` and
3636
"process" : "<mongod|mongos>",
3737
"pid" : <num>,
3838
"uptime" : <num>,
39-
"uptimeMillis" : NumberLong(),
39+
"uptimeMillis" : <num>,
4040
"uptimeEstimate" : <num>,
4141
"localTime" : ISODate(""),
4242

@@ -48,42 +48,42 @@ state and use of both global (i.e. ``.``) and database specific locks:
4848
"locks" : {
4949
"." : {
5050
"timeLockedMicros" : {
51-
"R" : NumberLong(),
52-
"W" : NumberLong()
51+
"R" : <num>,
52+
"W" : <num>
5353
},
5454
"timeAcquiringMicros" : {
55-
"R" : NumberLong(),
56-
"W" : NumberLong()
55+
"R" : <num>,
56+
"W" : <num>
5757
}
5858
},
5959
"admin" : {
6060
"timeLockedMicros" : {
61-
"r" : NumberLong(),
62-
"w" : NumberLong()
61+
"r" : <num>,
62+
"w" : <num>
6363
},
6464
"timeAcquiringMicros" : {
65-
"r" : NumberLong(),
66-
"w" : NumberLong()
65+
"r" : <num>,
66+
"w" : <num>
6767
}
6868
},
6969
"local" : {
7070
"timeLockedMicros" : {
71-
"r" : NumberLong(),
72-
"w" : NumberLong()
71+
"r" : <num>,
72+
"w" : <num>
7373
},
7474
"timeAcquiringMicros" : {
75-
"r" : NumberLong(),
76-
"w" : NumberLong()
75+
"r" : <num>,
76+
"w" : <num>
7777
}
7878
},
7979
"<database>" : {
8080
"timeLockedMicros" : {
81-
"r" : NumberLong(),
82-
"w" : NumberLong()
81+
"r" : <num>,
82+
"w" : <num>
8383
},
8484
"timeAcquiringMicros" : {
85-
"r" : NumberLong(),
86-
"w" : NumberLong()
85+
"r" : <num>,
86+
"w" : <num>
8787
}
8888
}
8989
},
@@ -95,8 +95,8 @@ provides more fine grained data that reflects lock use:
9595
.. code-block:: javascript
9696

9797
"globalLock" : {
98-
"totalTime" : NumberLong(),
99-
"lockTime" : NumberLong(),
98+
"totalTime" : <num>,
99+
"lockTime" : <num>,
100100
"currentQueue" : {
101101
"total" : <num>,
102102
"readers" : <num>,
@@ -291,7 +291,7 @@ performance:
291291
"commitsInWriteLock" : <num>,
292292
"earlyCommits" : <num>,
293293
"timeMs" : {
294-
"dt" : 3<num>69,
294+
"dt" : <num>,
295295
"prepLogBuffer" : <num>,
296296
"writeToJournal" : <num>,
297297
"writeToDataFiles" : <num>,

0 commit comments

Comments
 (0)