summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/sharding_server_status.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-54229: Resharding metrics output from the currentOp commandKshitij Gupta2021-03-231-1/+2
| | | | | | | should be reset when a new operation is started. SERVER-54483: Resharding metrics for serverStatus should report cumulative totals for the process.
* SERVER-52158 Move reshardCollection command behind its feature flag.Max Hirschhorn2021-03-161-1/+4
|
* SERVER-52773 Add resharding section to server statusAmirsaman Memaripour2021-01-061-9/+13
|
* SERVER-14126 Add range deleter stats for serverStatus under shardingStatisticsRandolph Tan2020-03-021-0/+3
|
* SERVER-9043/SERVER-31156 Link flushRouterConfig on MongoD and make it accept ↵Kaloian Manassiev2019-01-201-5/+1
| | | | a namespace argument
* SERVER-38381 Fix some override qualifiersADAM David Alan Martin2018-12-191-1/+0
| | | | | A few `override` qualifiers were written using the pre-11 "make it `virtual`" style. This is now fixed.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-29908 Move more libraries from sharding into ↵Kaloian Manassiev2018-03-131-3/+5
| | | | sharding_api_d/sharding_runtime_d
* SERVER-28670 Add sharding CatalogCache and donor metrics to serverStatusKaloian Manassiev2018-01-241-22/+62
| | | | | Includes metrics for refresh, clone and migration critical section duration.
* SERVER-30444 Add a maxChunkSize field to the serverStatus command responseHugh Han2017-08-011-0/+6
|
* SERVER-27938 Rename all OperationContext variables to opCtxMaria van Keulen2017-03-071-5/+6
| | | | | | This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo.
* SERVER-22671 adding migration status to serverStatus' sharding sectionDianna Hohensee2016-08-241-0/+8
|
* SERVER-24720/SERVER-24782 Move serverStatus.balancer to a balancerStatus commandKaloian Manassiev2016-06-291-25/+5
| | | | | | | | This change gets rid of the serverStatus.balancer section and moves its functionality to a new balancer command called 'balancerStatus'. In addition it gets rid of the 'controlBalancer' command and splits it into two commands - balancerStart and balancerStop.
* SERVER-24652 Expose the balancer state through serverStatus sectionKaloian Manassiev2016-06-201-0/+86
This change exposes some of the internal state of the balancer through section only available on the config server. It also enables previously disabled tests, which needed to wait for a balancer round to complete.