sink.utils.counter: use a default step of 10,000
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 6 Mar 2019 23:15:06 +0000 (18:15 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 3 May 2019 22:19:38 +0000 (18:19 -0400)
1000 makes this way too fast for the terminal.

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
plugins/utils/counter/counter.c

index f834378875fc058ef8d0f07e068f34bfaccc27e8..97bed28d4ab8abbc5c20496ab64462eaa39f3884 100644 (file)
@@ -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;
This page took 0.024796 seconds and 4 git commands to generate.