blob: a3e8f211b3d8b347bf8d41cf0cfd8049ebb5e0c1 [file] [log] [blame]
Harald Welte433005c2020-09-26 11:51:32 +02001/* libosmocore tapset
2 *
3 * This file is part of libosmocore.
4 *
5 * Each probe defines the probe name and a full probestr which consist of the probe name and between
6 * brackets all argument names and values.
7 */
8
9probe libosmocore_log_start = process("libosmocore").mark("log_start")
10{
11 count = $arg1;
12 probestr = sprintf("%s(count=%d), $$name, count);
13}
14
15probe libosmocore_log_done = process("libosmocore").mark("log_done")
16{
17 probestr = sprintf("%s", $$name);
18}
Harald Welte3217d512021-02-18 14:56:46 +010019
20probe libosmocore_stats_start = process("libosmocore").mark("statsd_start")
21{
22 count = $arg1;
23 probestr = sprintf("%s(count=%d), $$name, count);
24}
25
26probe libosmocore_stats_done = process("libosmocore").mark("statsd_done")
27{
28 probestr = sprintf("%s", $$name);
29}