Upen
Upen

Reputation: 1438

Jenkins Build Stability/Statisitics Report plugin

I have a jenkins instance running around 200 jobs. What I need is a plugin to show the build statistics for all the jobs.

  1. Total Builds for each project
  2. Failures
  3. Success
  4. Average time per build.

Searched a lot, but couldn't find a proper report plugin. Please help

Upvotes: 25

Views: 33405

Answers (2)

blueheart_2
blueheart_2

Reputation: 153

For collecting nodes machine metrics (CPU Time/ Used Memory / Build Time per node etc.), I found the monitoring plugin to be the best.

https://wiki.jenkins.io/display/JENKINS/Monitoring

When it comes to aggregates build times group by job, I couldn't find anything good within Jenkins UI, but if you have a datadog license, you can just enable the datadog Jenkins plugin, configure the datadog api key and hostname in Jenkins Config, and you are good to go.

https://www.datadoghq.com/blog/monitor-jenkins-datadog/

Upvotes: 1

Related Questions