• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1SELECT
2  ts,
3  value,
4  EXTRACT_ARG(arg_set_id, 'protocol') AS prot
5FROM
6  counter AS c
7  LEFT JOIN
8  counter_track AS t
9  ON c.track_id = t.id
10WHERE
11  name GLOB "Kfree Skb IP Prot"
12ORDER BY ts;
13