Reputation: 29689
What would you all recommend as the best way to save Jenkins job-history/success-rate stats for 6+ months (for service-level agreement purposes)? Normally, Jenkins jobs are configured to save history for a certain amount of time but on our Jenkins server, which has hundreds of jobs, it may not be realistic to have all jobs not clean up on a regular basis.
SO, I am wondering if there is a typical way people might store light-weight stats on job success history?
My only ideas are:
Upvotes: 1
Views: 1640
Reputation: 10104
You can send execution data to InfluxDB and visualize it using Grafana.
There is a plugin for that: InfluxDB Plugin
That plugin supports sending at least the following metrics:
Upvotes: 0