Replies: 1 comment
-
Hi @R4cOOn, I don't think there's any way to express this currently; your best bet, if you can, would be to modify the serialization of Since we recently did implement lamba functions in the Seq query syntax, though, in future we might consider enabling something like |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using the Serilog middleware logger for ASP.NET.
The following query
select HttpContext.Route from stream limit 20
gives me
What I'd like is to be able to group by and select the "controller" and "action" values.
Please note that the order is random so I can't use
HttpContext.Route[0]
.Ideally I'd be able to write a query similar to
select HttpContext.Route['controller'], HttpContext.Route['action'] from stream limit 20
and get
Is this sort of query supported?
Beta Was this translation helpful? Give feedback.
All reactions