summaryrefslogtreecommitdiff
path: root/src/mongo/db/service_entry_point_common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/service_entry_point_common.cpp')
-rw-r--r--src/mongo/db/service_entry_point_common.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/service_entry_point_common.cpp b/src/mongo/db/service_entry_point_common.cpp
index 11a859255fb..f39f599eeb7 100644
--- a/src/mongo/db/service_entry_point_common.cpp
+++ b/src/mongo/db/service_entry_point_common.cpp
@@ -1510,7 +1510,10 @@ void ExecCommandDatabase::_initiateCommand() {
// Connections from mongod or mongos clients (i.e. initial sync, mirrored reads, etc.) should
// not contribute to resource consumption metrics.
const bool collect = command->collectsResourceConsumptionMetrics() && !_isInternalClient();
- _scopedMetrics.emplace(opCtx, dbname, collect);
+ _scopedMetrics.emplace(
+ opCtx,
+ DatabaseNameUtil::deserialize(request.getValidatedTenantId(), request.getDatabase()),
+ collect);
const auto allowTransactionsOnConfigDatabase =
(serverGlobalParams.clusterRole.has(ClusterRole::ConfigServer) ||