- What Grafana version and what operating system are you using?
{
"commit": "30bb7a93ca",
"database": "ok",
"version": "8.3.3"
}
I have tested both with chrome and microsoft edge , both having same issues
- What are you trying to achieve?
I’m trying to scroll the log panel and it cannot work
- How are you trying to achieve it?
Just scroll the log panel back and forth
- What happened?
Basically I cannot scroll the log panels as shown in the video above
- What did you expect to happen?
I expect the log panel can be scrolled normally , the table view works fine but when i change to log panel it becomes like this
- Can you copy/paste the configuration(s) that you are having problems with?
I use Influxdb and this is my query
import "strings"
from(bucket: "telegraf")
|> range(start: 0, stop: now())
|> filter(fn: (r) => r["_measurement"] == "flowfuse_log")
|> filter(fn: (r) => r["_field"] == "value")
|> filter(fn: (r) => r["host"] == "${gw}")
|> filter(fn: (r) => r["path"] == "/var/log/flowfuse-device/flowfuse-device-output.log")
|> filter(fn: (r) => strings.containsStr(v: r._value, substr: "${level}"))
|> tail(n: ${amount})