I am using Seq logging in my .NET application. I have the blow log appearing multiple times,
Execute Owin configuration completed in 56.1 ms
The time varies for each time the app starts up. The timing info is available as a property in Properties Array.
I want to create a dashboard showing the timing for each startup. How can I do that?
But, based on the query, my chart looks like,
If you change your query to:
select max(@Properties['1'])
from stream
where @EventType = 0x8308754F
group by time(1h)
And execute it, you can then press the "Add to dashboard" button just to the right of the filter box and you should get a chart with the info you want.