summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/run_aggregate.cpp
diff options
context:
space:
mode:
authorMaddie Zechar <mez2113@columbia.edu>2023-01-23 18:58:05 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-23 21:03:27 +0000
commit2091bc8a02bc884e8df85fb02f706aac18b6278e (patch)
treedf16439e69ad6730b4208c22d4a89555ea98e374 /src/mongo/db/commands/run_aggregate.cpp
parentdc6bdd52af8ea92f8ddd31b8b4849ff93399f3c9 (diff)
downloadmongo-2091bc8a02bc884e8df85fb02f706aac18b6278e.tar.gz
SERVER-71484 Store telemetry key on OpDebug
Diffstat (limited to 'src/mongo/db/commands/run_aggregate.cpp')
-rw-r--r--src/mongo/db/commands/run_aggregate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/run_aggregate.cpp b/src/mongo/db/commands/run_aggregate.cpp
index 949615d2772..459c327f294 100644
--- a/src/mongo/db/commands/run_aggregate.cpp
+++ b/src/mongo/db/commands/run_aggregate.cpp
@@ -1119,7 +1119,7 @@ Status runAggregate(OperationContext* opCtx,
curOp->debug().setPlanSummaryMetrics(stats);
curOp->debug().nreturned = stats.nReturned;
- telemetry::recordExecution(opCtx, curOp->debug(), didDoFLERewrite);
+ telemetry::recordExecution(opCtx, didDoFLERewrite);
// For an optimized away pipeline, signal the cache that a query operation has completed.
// For normal pipelines this is done in DocumentSourceCursor.