Skip to content

Commit 93cdf00

Browse files
author
cthomas
committed
add flags for stats block size and seconds
1 parent 51c919c commit 93cdf00

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

stenotype/stenotype.cc

+13-2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ int64_t flag_filesize_mb = 4 << 10;
9494
int32_t flag_threads = 1;
9595
int64_t flag_fileage_sec = 60;
9696
int64_t flag_blockage_sec = 10;
97+
int64_t flag_stats_blocks = 100;
98+
int64_t flag_stats_sec = 60;
9799
uint64_t flag_blocksize_kb = 1024;
98100
uint16_t flag_fanout_type =
99101
// Use rollover as the default if it's available.
@@ -191,6 +193,12 @@ int ParseOptions(int key, char* arg, struct argp_state* state) {
191193
case 321:
192194
flag_promisc = false;
193195
break;
196+
case 322:
197+
flag_stats_blocks = atoi(arg);
198+
break;
199+
case 323:
200+
flag_stats_sec = atoi(arg);
201+
break;
194202
}
195203
return 0;
196204
}
@@ -233,6 +241,8 @@ void ParseOptions(int argc, char** argv) {
233241
{"blockage_sec", 319, n, 0, "A block is written at least every N secs"},
234242
{"blocksize_kb", 320, n, 0, "Size of a block, in KB"},
235243
{"no_promisc", 321, 0, 0, "Don't set promiscuous mode"},
244+
{"stats_blocks", 322, n, 0, "Size block stats will be displayed, requires verbose, default 100, 0 disables"},
245+
{"stats_sec", 323, n, 0, "Seconds stats will be displayed, requires verbose, default 60, 0 disables"},
236246
{0},
237247
};
238248
struct argp argp = {options, &ParseOptions};
@@ -513,8 +523,9 @@ void RunThread(int thread, st::ProducerConsumerQueue* write_index,
513523
block_offset++;
514524

515525
// Log stats every 100 blocks or at least 1/minute.
516-
if (blocks % 100 == 0 ||
517-
lastlog < current_micros - 60 * kNumMicrosPerSecond) {
526+
if ( (flag_stats_blocks != 0 && blocks % flag_stats_blocks == 0) ||
527+
(flag_stats_sec != 0 &&
528+
lastlog < current_micros - flag_stats_sec * kNumMicrosPerSecond) ) {
518529
lastlog = current_micros;
519530
double duration = (current_micros - start) * 1.0 / kNumMicrosPerSecond;
520531
Stats stats;

0 commit comments

Comments
 (0)