Hi everyone,
I’m using Grafana Loki version 2.9.4.
I have the issue that the logs level colors are not consistent between the time series panel and the logs panel.
As you can see, in my case:
- The color of log level debug in graph is green, but in the log panel is blue.
- The color of error is yellow in graph, but in the logs panel is red.
The color of log level “info” and “warning” still aren’t consistent.
The graph query is :
sum by(severity,level) (count_over_time({source=“${source}”,zone=“$zone”, vm_name=“$vm_name”} | json | logfmt | drop error , error_details [$__range]))
The logs panel query is:
{zone=~“$zone”, vm_name=~“$vm_name”, source=~“$source”} |~$filter
|json | logfmt | drop error , error_details
Do you guys know how can I sync the color between panels?