• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1SELECT
2  ts,
3  REPLACE(name, " Transmitted KB", "") AS dev,
4  EXTRACT_ARG(arg_set_id, 'cpu') AS cpu,
5  EXTRACT_ARG(arg_set_id, 'len') AS len
6FROM
7  counter AS c
8  LEFT JOIN
9  counter_track AS t
10  ON c.track_id = t.id
11WHERE
12  name GLOB "* Transmitted KB"
13ORDER BY ts;
14