aboutsummaryrefslogtreecommitdiffstats
path: root/tapset/libosmocore.stp
blob: a3e8f211b3d8b347bf8d41cf0cfd8049ebb5e0c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* libosmocore tapset
 *
 * This file is part of libosmocore.
 *
 * Each probe defines the probe name and a full probestr which consist of the probe name and between
 * brackets all argument names and values.
 */

probe libosmocore_log_start = process("libosmocore").mark("log_start")
{
 count = $arg1;
 probestr = sprintf("%s(count=%d), $$name, count);
}

probe libosmocore_log_done = process("libosmocore").mark("log_done")
{
 probestr = sprintf("%s", $$name);
}

probe libosmocore_stats_start = process("libosmocore").mark("statsd_start")
{
 count = $arg1;
 probestr = sprintf("%s(count=%d), $$name, count);
}

probe libosmocore_stats_done = process("libosmocore").mark("statsd_done")
{
 probestr = sprintf("%s", $$name);
}