jamesfalkner / microprofile-grafana

This project presents a web frontend to generate Grafana dashboards that show metrics from a MicroProfile application.
36 stars 8 forks source link

Make the instance variable multi-valued, add its value to the legend #1

Closed jmartisk closed 4 years ago

jmartisk commented 4 years ago

Makes dashboards more friendly toward viewing metrics from multiple instances For example, a counter that exists on two instances localhost:8080 and localhost:8081 and has two variants on each instance, will look like this

2020-06-22_14-06

The Instance variable now supports multiple values image

The problem with this is that some of the panels that we currently include don't support displaying multiple series at the same time, so when you select multiple instances, some plots stop working. So if accepted, the next step will be to change these panels to support something that supports multiple series.

jamesfalkner commented 4 years ago

Thank you!