SimplyTim

Archives
  • December 2021
  • November 2021
  • October 2021
  • March 2021
Categories
  • Docker
  • GitHub
  • Jenkins
  • Ruby
  • Shell Scripts
Meta
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Skip to content

SimplyTim

0
0
315
    • Jenkins
    • Shell Scripts

Auditing Durability in Jenkins Jobs

  • bytim
  • Posted on March 2, 2021March 2, 2021
  • 357 views
  • 1 minute read
0
0
0

Something that came up with one of my customers was the ability to audit Durability settings for Pipelines in Jenkins. The main use case was, that once Durability was set globally, is there a way to look into jobs and find out if they’re using the global Durability setting or something else. This would enable the customer to check-in and ensure Durability is enforced and used correctly in different settings by those who have specifically discussed it with the owner of the Controller.

The below script is designed to check jobs in your JENKINS_HOME directory (specify it on line 3); from there it will check each job’s latest log for Durability and return the job name and Durability level in the command line.

This has only been tested in limited capacity and may need extra retooling to suit your needs.

#!/bin/bash
# Assumes your JENKINS_HOME is set properly
JENKINS_HOME=/var/lib/cloudbees-core-cm
cd "$JENKINS_HOME/jobs/"
for file in */ ; do
        cd "$JENKINS_HOME/jobs/"
        # Gets the job name as the directory without a trailing slash
        jobname=$(echo "$file" | sed 's:/*$::')
				echo "*** Job name is \"$jobname\" ($file)"
        cd "$JENKINS_HOME/jobs/$jobname/builds"
        job_number=$(ls -1dt */ | head -n 1)
        job_durability=$(cat "$JENKINS_HOME/jobs/$jobname/builds/$job_number/log" | sed -n -e 's/^.*Durability level: //p')
        echo "Job \"$jobname\" is set to $job_durability";
done
Code language: Bash (bash)
Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts
  • Mounting a SFTP (SSH) Share as a Volume in Docker-Compose
  • Finding Jobs Running On A Controller Executor
  • Hacktoberfest: Analyzing CloudBees CI Plugins List for Support Level
  • Auditing Durability in Jenkins Jobs
Recent Comments
    Copyright 2021 Tim H.
    Cookies Notice
    We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
    Do not sell my personal information.
    Cookie SettingsAccept
    Manage consent

    Privacy Overview

    This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
    Necessary
    Always Enabled
    Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
    CookieDurationDescription
    cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
    cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
    cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
    cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
    cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
    viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
    Functional
    Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
    Performance
    Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
    Analytics
    Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
    Advertisement
    Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
    Others
    Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
    SAVE & ACCEPT