I have multiple servers reporting a value(Temperature or reliability score). I want to plot them on the same time series. value over time for each metric.
the table looks like this
reading a few of the posts here it looks like
SELECT
time AS “time”,
reliability as value,
machine_id as metric
FROM machine
WHERE
$__unixEpochFilter(time)
GROUP BY machine_id,time
ORDER BY time asc
but this does not work. if I remove the grouping to plot the two columns. not two series base in matric