How to display number of log entries per day in Grafana and Loki

I am trying to aggregate Grafana Loki logs per day (provided by Serilog) so that I can view a vertical bar chart (or line, TBD) of errors per day. An error will be denoted by the log level (“level” in the JSON data) being Warning, Error or Fatal. My data json looks like:

{Message:"Message goes here",MessageTemplate:"Message goes here","level":"info"}

This is my query:

sum(count_over_time({ApplicationName="MyAppName"} | json | level="info"[1d]))

And I set Type to Range and Step to 1d, but everything for the current day is not displayed. I want to also show current day as they come in. What am I missing?

Anyone?