Increase latency sample size by a factor of 10.

This commit is contained in:
A.J. Beamon 2020-07-10 08:52:59 -07:00
parent 4562d20f81
commit 28b6281848
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ ServerKnobs::ServerKnobs(bool randomize, ClientKnobs* clientKnobs, bool isSimula
init( TIME_KEEPER_MAX_ENTRIES, 3600 * 24 * 30 * 6 ); if( randomize && BUGGIFY ) { TIME_KEEPER_MAX_ENTRIES = 2; }
// Server request latency measurement
init( LATENCY_SAMPLE_SIZE, 10000 );
init( LATENCY_SAMPLE_SIZE, 100000 );
init( LATENCY_METRICS_LOGGING_INTERVAL, 60.0 );
// clang-format on