Hi team,
I’m using Grafana Loki to compose dashboards. I need to group the logs by level to create the graph. I used this query to sum the logs based on log-level:
sum by(severity,level) (count_over_time({source=“${source}”,zone=“$zone”, vm_name=“$vm_name”} | json | logfmt | drop error , error_details [$__range]))
As you can see, In addition to log level, on the graph always appears a field named Std Logs.
Can anyone explain to me what is Std Logs and how can I remove it from my graph?