summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop_metrics.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-64539 Add serverStatus metrics for the SBE $lookup projectMariano Shaar2022-07-251-0/+2
|
* SERVER-65987 ServerStatusMetric API refreshDaniel Morilha2022-06-301-22/+8
|
* SERVER-63760 Report the number of TemporarilyUnvailable errors that escape ↵Louis Williams2022-03-141-5/+0
| | | | | | | the server This exposes serverStatus metrics for the number of TU errors that are caught, the number returned to the user, and the number converted to WriteConflicts for multi-doc transactions.
* SERVER-60839 Add TemporarilyUnavailable errorJosef Ahmad2022-02-151-0/+5
| | | | | | | | | Introduce a TemporarilyUnavailable error and exception type for load shedding. This error indicates that the operation has been aborted, likely due to excessive server load. Errors are retried with an increasingly larger backoff. Internal operations are retried indefinitely, user operations up to a fixed number of attempts.
* SERVER-60848 Add SBE to the slow query log line and to curop metricsJennifer Peshansky2022-01-241-0/+3
|
* SERVER-40105 Improve diagnostic information in currentOp for writeConflicts ↵Louis Williams2019-04-121-2/+2
| | | | and prepareConflicts
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-35428 Added ability to add two OpDebug objects togetherjinichu2018-07-031-12/+12
|
* SERVER-23971 Clang-Format codeMark Benvenuto2016-05-281-1/+1
|
* SERVER-23873 Optimize checking for interruptMathias Stearn2016-05-101-0/+2
|
* SERVER-23272 Remove idhack metricJames Wahlin2016-04-271-4/+0
|
* SERVER-23272 Remove 'keyUpdates', 'fastmod' and 'moved' metricsJames Wahlin2016-04-251-4/+0
|
* SERVER-19566 convert OP_QUERY profiler entries to look like the find commandDavid Storch2015-09-031-5/+5
| | | | | | | | | | | Includes the following changes to profiler entries for queries: -- The query field will contain find command parameters, e.g. {find: <coll>, filter: {...}}. -- Renames 'nscanned' to 'keysExamined' and 'nscannedObjects' to 'docsExamined'. -- Renames 'scanAndOrder' to 'hasSortStage'. -- Removes the top-level ntoreturn and ntoskip fields. Skip, limit, and batchSize info will be present in the 'query' field instead.
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-46/+46
|
* SERVER-18277 Move server status metrics code out of curop.cpp into ↵Andy Schwerin2015-06-051-0/+90
curop_metrics.cpp.