Hi,
Is it possible to add tags/context to logs once the come in based on certain logic?
For example create a name for routes based on method and path structure:
“GET” & “/dashboards/111” → “GET /dashboards/{id}”
“GET” & “/dashboards/222” → “GET /dashboards/{id}”
“POST” & “/dashboards” → “POST /dashboards”
“GET” & “/dashboards” → “GET /dashboards”
“GET” & “/dashboards?limit=50” → “GET /dashboards”
“GET” & “/dashboards/111/graphs/123” → “GET /dashboards/{id}/graps/{id}”
Thanks in advance!