HI
I am new to Grafana.
I wants to plot a graph for below mentioned MySql table
Y axis as ExecutionTime and X axis as TestName or TestID.
Could someone help me on this.
Thanks in advance
HI
I am new to Grafana.
I wants to plot a graph for below mentioned MySql table
Y axis as ExecutionTime and X axis as TestName or TestID.
Could someone help me on this.
Thanks in advance
Hi Marcus
I manage to plot Bar like
But I wanted to have a graph like
When I executed the below query query , I get null value for series.
could you please help me ,to plot the graph
SELECT
UNIX_TIMESTAMP(ExecutedAt) as time_sec,
TestExecutionTime/1000 as value,
TestName as metric
FROM mqa_performance_msql_db01.tbl_tests
WHERE TestName=‘UserLogin’ and $__timeFilter(ExecutedAt)
ORDER BY ExecutedAt ASC
You probably need to group by executedAs and testname. But it seems like your where clause are making the query match no rows?
when I exclude $__timeFilter(ExecutedAt) from the query then rows are returned but with error on panel as “Data point outside time range”
and when i add $__timeFilter(ExecutedAt) in where clause no rows are returned.
ExecutedAt are not in fix interval , does it make any difference ?
Probably timezone related. What timezone on grafana server vs mysql server? Quick workaround could be timeshift 1h
Good info @mefraimsson! Your link seems to be slightly outdated (likely due to a wording change by the webpage manager). Could you update the link to this when you get a second?
Need to piggy-back here. I’m having a similar issue to original poster. My dataset comes back but is graphed as if each day is its own series, where I would like it treated as a single series. is there a way to accomplish this? I’m not particular about whether it’s a bar or a line graph, I just want this series to return all the same color:
you can try serier override, here I explain it briefly
How did u managed to get the “bar” chart ? … i am facing problem here
Hello
Can anyone help me how to make bar chart with the amount every month from this datas?
Hi can you plz show me how u did this .