blob: 52e35bd49d436545e531f0c315738cd2b0da5592 [file] [log] [blame]
SELECT
t.name,
c.ts,
c.value
FROM
counter AS c
LEFT JOIN
counter_track AS t
ON c.track_id = t.id
WHERE
name GLOB "Cpu ? Cap" OR name GLOB "Cpu ? Util" OR name GLOB "Cpu ? Nr Running"
ORDER BY ts;