I want to create a multi series graph , but the metric name is keep on repeating for each graph.
I had two mysql queries and each queries appearing one by one and not overlapping. Below I pasted the graph and two queries. Kindly suggest.
Mysql queries are:
A:
SELECT
UNIX_TIMESTAMP(creation_Date) as time_sec,
count(status) as value,
month as metric
FROM 'january'
where Source=‘RTC’
group by status;
B:
SELECT
UNIX_TIMESTAMP(creation_Date) as time_sec,
count(status) as value,
month as metric
FROM 'january'
where Source=‘Doors’
group by status;