In Grafana - how do I separate metrics by route

In Grafana, we have response times. How can I further separate that to routes and response status?

Hi Marcus,

The Fly proxy’s metrics don’t contain an endpoint label (it’d be tricky to do so), but you can add instrumentation to your application (sounds fancy but it’s usually just adding a prometheus exporter library or module and following the module’s instructions to wrap your application in it) and then collect those metrics with Fly Prometheus:

You can then add a custom dashboard with your http access metrics and slice and dice by label (which most framework-specific Prometheus exporters do add by default).

  • Daniel