-
What are you trying to achieve?
In an attempts to solve my problem posted here, I have a table with fields startTime, endTime, logname. I don’t think I understand thoroughly how state timeline works, so I have endTime to so that each logname is plotted according to its duration length. -
How are you trying to achieve it?
SELECT
logdate AS "time",
logname,
logend
FROM logscombine
WHERE
$__timeFilter(logdate) AND
"userName" = 'Keianna Mickler'
ORDER BY 1
I got UI error convert value to float failed: metricIndex 2 type []*time.Time can't be converted to float
and there is no date now.
The query is formatted as Time series. If the format is Table, it works okay.
- What did you expect to happen?
I’ve seen other use case which has start date and end date being used with state timeline or status history. I want something like this
Any ideas what it’s the case? I’m obviously missing something here.
Thank you!