I have some metrics that I got from Jenkins builds or custom runs.
Can I configure graph for using build # as X axes?
I tried to use Grafana + Graphite with metric names like _<build_no> and use construction as:
aliasSub(removeBelowValue(stats.metrics.error_rate_*, 0), '(.*)_([0-9]+)(.*)', 'Build \\2')
and display with bars.
But this solution have 3 problems:
- Performance troubles with big count of builds (too many metric names)
- Ordering troubles with X axes (cannot order build #)
- Cannot display graph as lines, only bars
Also, I would like to show some other information (like time, and GIT commit ID) in datapoint tooltip. Any ideas how can I do that?
I have Graphite and ELK and can store data in any of these products.