Add proxy debug ID

This commit is contained in:
Lukas Joswiak 2022-04-27 10:31:04 -04:00
parent 0dc662bfd2
commit 0ae0bf9e31

View File

@ -1409,7 +1409,7 @@ ACTOR Future<Void> postResolution(CommitBatchContext* self) {
if (estimatedDelay >= SERVER_KNOBS->MAX_COMPUTE_DURATION_LOG_CUTOFF || if (estimatedDelay >= SERVER_KNOBS->MAX_COMPUTE_DURATION_LOG_CUTOFF ||
self->computeDuration >= SERVER_KNOBS->MAX_COMPUTE_DURATION_LOG_CUTOFF) { self->computeDuration >= SERVER_KNOBS->MAX_COMPUTE_DURATION_LOG_CUTOFF) {
TraceEvent(SevInfo, "LongComputeDuration") TraceEvent(SevInfo, "LongComputeDuration", pProxyCommitData->dbgid)
.suppressFor(10.0) .suppressFor(10.0)
.detail("EstimatedComputeDuration", estimatedDelay) .detail("EstimatedComputeDuration", estimatedDelay)
.detail("ComputeDuration", self->computeDuration) .detail("ComputeDuration", self->computeDuration)