jenkins-stats.py is used to generate statics for jenkins server, so far it display the plugin's usage in each job, see related stackoverflow question:how can I know whether the plugin is used by any jobs in jenkins
python-requests module is required
| // This script is for Jenkins' Groovy console, and sets a timeout | |
| // strategy for any job which doesn't have one. | |
| // Based on http://janmaterne.wordpress.com/2010/07/11/how-to-check-if-all-hudson-jobs-have-a-timeout/ | |
| // Updated and modified by Sean Flanigan. | |
| import hudson.model.* | |
| String describe(strat) { | |
| if (strat instanceof hudson.plugins.build_timeout.impl.ElasticTimeOutStrategy) { | |
| return "Elastic(${strat.timeoutPercentage}, ${strat.numberOfBuilds}, ${strat.timeoutMinutesElasticDefault})" |
jenkins-stats.py is used to generate statics for jenkins server, so far it display the plugin's usage in each job, see related stackoverflow question:how can I know whether the plugin is used by any jobs in jenkins
python-requests module is required