Which transaction option should be used to ensure that a transaction does not exceed a total duration of 10 minutes?
Correct. maxspan= sets the maximum total duration allowed for a transaction from start to end.
Why this answer
The correct option is D (maxspan=10m) because maxspan sets the maximum total duration of a transaction from start to end. Option A (endswith) defines the ending event, not duration. Option B (maxpause) limits the maximum pause between events within a transaction.
Option C (startswith) defines the starting event. Therefore, maxspan is used to ensure the entire transaction does not exceed 10 minutes.