From a79f976c26dcf430867c26974308659909c5fad6 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Wed, 6 Mar 2019 18:15:06 -0500 Subject: [PATCH] sink.utils.counter: use a default step of 10,000 1000 makes this way too fast for the terminal. Signed-off-by: Philippe Proulx --- plugins/utils/counter/counter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/utils/counter/counter.c b/plugins/utils/counter/counter.c index f8343788..97bed28d 100644 --- a/plugins/utils/counter/counter.c +++ b/plugins/utils/counter/counter.c @@ -155,7 +155,7 @@ bt_self_component_status counter_init( } counter->last_printed_total = -1ULL; - counter->step = 1000; + counter->step = 10000; step = bt_value_map_borrow_entry_value_const(params, "step"); if (step && bt_value_is_integer(step)) { int64_t val; -- 2.34.1