summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-60333 Refactor UserName and RoleNameSara Golemon2021-10-181-1/+1
|
* SERVER-59714 Add batch number to task executor cursorTed Tuckman2021-10-121-0/+1
|
* SERVER-58848 Using UserAcquisitionStats in place of ↵aldo-aguilar2021-08-201-12/+32
| | | | UserCacheAcquisitionStats, now tracking LDAP operations as well.
* SERVER-57461 Remove SPLIT_LIMITED_SORT and associated QueryPlanner codeEric Cox2021-07-311-2/+0
|
* SERVER-57391 Return error response to OP_QUERY and OP_GET_MORE messagesIrina Yatsenko2021-07-161-75/+0
|
* SERVER-57457 Close connection on receiving of OP_DELETE, OP_INSERT, ↵Irina Yatsenko2021-07-081-167/+0
| | | | OP_UPDATE and OP_KILL_CURSORS
* SERVER-53859 Add queryHash to the mongos slow query logsMickey. J Winters2021-07-071-3/+6
|
* SERVER-56694 implicit default majority write concern should set ↵Moustafa Maher2021-06-041-4/+4
| | | | usedDefault=false
* SERVER-55015 Replace GetMoreRequest with IDL-generated GetMoreCommandAlya Berciu2021-05-241-9/+4
|
* SERVER-50286 Indicate in logs whether an operation involves a viewIrina Yatsenko2021-05-121-0/+61
|
* SERVER-47603 Rewrite db.currentOp() shell helper in terms of $currentOp ↵Katherine Wu2021-05-071-0/+5
| | | | aggregation stage
* SERVER-46412: Track, log, and profile user cache acquisition stats in CurOpVarun Ravichandran2021-04-301-0/+34
|
* Revert "SERVER-47603 Rewrite db.currentOp() shell helper in terms of ↵Katherine Wu2021-03-291-5/+0
| | | | | | $currentOp aggregation stage" This reverts commit 30fd64abd177d11362f3b3460897eff1f8b7ce53.
* SERVER-47603 Rewrite db.currentOp() shell helper in terms of $currentOp ↵Katherine Wu2021-03-121-0/+5
| | | | aggregation stage
* SERVER-43762 tighten the overload set for BSONObjBuilder::appendNumberBynn Lee2021-03-051-3/+3
|
* Revert "SERVER-43762 tighten the overload set for BSONObjBuilder::appendNumber"Bynn Lee2021-02-251-3/+3
| | | | This reverts commit 3307ba57eef2dfff9abe2413e39058ac9451ec04.
* SERVER-43762 tighten the overload set for BSONObjBuilder::appendNumberBynn Lee2021-02-221-3/+3
|
* SERVER-54120 Move away from getLog to check if a command is done in our testsMoustafa Maher2021-02-051-0/+12
|
* SERVER-53849 Move away from getLog in ↵Moustafa Maher2021-01-281-0/+19
| | | | timestamped_reads_wait_for_prepare_oplog_visibility.js
* SERVER-53115 check client before dereferencingBilly Donahue2020-12-041-4/+6
|
* Revert "SERVER-50867 Roll back ServiceStateMachine changes temporarily"Ben Caimano2020-12-031-0/+7
| | | | This reverts commit 575f370475bd31fc457a93a776061f1b80448028.
* SERVER-53137 The CurOp constructor should initialize its variables prior to ↵Gregory Wlodarek2020-12-011-8/+16
| | | | being added to the stack of active CurOp objects
* SERVER-51489 Add client IP to slow query log lines in server logsAmirsaman Memaripour2020-11-251-0/+4
|
* SERVER-52556 Versioned CollectionCatalog. Writes are performed using ↵Henrik Edin2020-11-131-1/+1
| | | | | | | copy-on-write. Internal mutexes when reading CollectionCatalog are removed, just one mutex for writes are needed. Lock-free reads helper AutoGetCollectionForReadLockFree stashes a CollectionCatalog consistent with snapshot on OperationContext
* SERVER-50865 Collect resource consumption metrics for index buildsLouis Williams2020-11-021-4/+4
|
* SERVER-49336 Set ClientMetadata before CommandInvocations are runBen Caimano2020-10-151-16/+9
| | | | | | | | | This patch does the following: - Always parses ClientMetadata before command implementations are run. - Marks general ClientMetadata as final in the first hello. - Removes client_metadata_ismaster.* (SERVER-50517) - Switches references to "isMaster" to "hello" (SERVER-50517) - Binds "$client" metadata as a decoration (SERVER-50804)
* SERVER-51023 Collect document bytes read for operation resource consumption ↵Louis Williams2020-10-141-11/+20
| | | | metrics
* SERVER-51031 Report operation resource consumption metrics in the profiler ↵Louis Williams2020-10-021-0/+16
| | | | and slow query logs
* SERVER-43909 clarify and repair util/hex.h APIBilly Donahue2020-09-151-9/+9
| | | | | | | - hexblob namespace - Throwy hexblob::decode (nee fromHex) - StringData overloads of hex codec ops - add unsignedHex<T> and zeroPaddedHex<T>
* SERVER-50867 Roll back ServiceStateMachine changes temporarilyBen Caimano2020-09-141-7/+0
| | | | | | | This reverts these commits: b039b24746e1d1fb10a32e1ca4831423c01d4cd7: SERVER-48980 97e16187ff3065d242a61a52e7b6edd4d439fb30: SERVER-49072 0607a6c291bf4cf4580a4444d826ed3c3ac3df47: SERVER-49104
* SERVER-49102 Fix missing nUpsertedDavid Percy2020-09-051-0/+1
|
* SERVER-49102 Custom filter for logging/profilingDavid Percy2020-09-041-56/+383
|
* SERVER-34118 Log number of upserts performedNikita Lapkov2020-09-031-4/+17
|
* SERVER-48980 Associate ServiceExecutors with ClientsBen Caimano2020-08-311-0/+7
|
* SERVER-50240 Make CurOp::_numYields atomicJustin Seyster2020-08-121-2/+2
|
* SERVER-49030 Make CurOp::_start and CurOp::_end atomicJustin Seyster2020-08-041-7/+53
|
* SERVER-41763 Remove comment when truncating queriesMindaugas Malinauskas2020-06-231-3/+5
|
* SERVER-47897 CurOp should use monotonic clock source for duration measurementsJames Wahlin2020-06-101-7/+10
|
* SERVER-45953 Exempt internal replication oplog readers from acquiring read ↵Dianna Hohensee2020-06-031-1/+1
| | | | tickets in order to avoid deadlocks
* SERVER-48495 fix up the errName filed of the slow query logGabriel Russell2020-06-021-1/+1
|
* SERVER-48148 Cleanup of execution logs in db/Henrik Edin2020-05-151-2/+2
|
* SERVER-47803 Move the database level profile setting from Database into ↵Dianna Hohensee2020-05-141-4/+2
| | | | CollectionCatalog
* SERVER-47854 Validation reports MB of I/O per second in the currentOp ↵Gregory Wlodarek2020-05-011-0/+8
| | | | command response
* SERVER-47735 change mongo source over to logv2Billy Donahue2020-04-261-1/+1
| | | | | | - Remove several legacy logger/ files - Convert all MONGO_LOG_DEFAULT_COMPONENT to the LOGV2 version. - Globally replace logger::{LogSeverity,LogComponent} => logv2::
* SERVER-31368 Log time spent waiting in BlockingResultsMergerDavid Percy2020-04-231-0/+13
|
* SERVER-47578 Delete util/log.h and remove use of logv1 to logv2 appenderHenrik Edin2020-04-151-1/+0
|
* SERVER-47077 Clean up log lines in 'mongo/db'Amirsaman Memaripour2020-03-271-12/+19
| | | | Cleaning up log lines to adhere to the LOGV2 style guide.
* SERVER-46875 Fix log component of slow query logHenrik Edin2020-03-191-1/+1
|
* SERVER-43614 Added "_failPointMessage" field in CurOp for Failpoints used only.Ruoxin Xu2020-03-191-0/+4
|
* SERVER-46219 Unittests should log with JSON formatMark Benvenuto2020-03-031-4/+15
|