I have a dashboard that uses MySQL as a data source and has a column that is timestamp called f_received this time is IST the query I am writing is this :
select
f_received as ‘time’,
f_sprint_cycle as SprintCycle,
f_authorName as AuthorName,
f_repository as Repository,
f_received as TimeReceived
from
<table_name>
group by f_authorName,f_sprint_cycle,f_repository,f_received
order by f_received DESC
I am unable to use the filter in grafana to filter the results based on time . the sample time received from sql timestamp is 2020-11-06T10:38:53Z I am using this as ‘time’ can you please suggest some lines to write to enable filtering of the data ? Thanks !