Time Saving Tips Every Admin Needs to Know

  1. Customize User Interface – Script Fragment using ScriptRunner
  2. Monitor / Interact with your Jira / Confluence Application
    • Open Source Automate the Atlassian Command Line on Github – Helps with
      • Monitoring Jira Mail Queue & LDAP Sync Status
      • To have different Look & Feel for your Test Confluence Wiki Spaces.
  3. Monitor Jira Mail Queue using REST API
  4. REST API Client – Postman
  5. Avoid REST APIs – Use Python JIRA Client Library
  6. Development made easy – JupyterLab
  7. See only things that matter – hide all unwanted issue types during Workflow migration, run following script from console!
table = $("#workflow-mapping-table")
tbodies = table.find('tbody')
for (i = 0; i < tbodies.length; i++) { 
    img_element = $(tbodies[i]).find('img:first-of-type')
    img_text = img_element.attr('alt')
    span_element = $(tbodies[i]).find('span:first-of-type')
    issue_count_for_this_issue_type = parseInt(span_element[0].innerText.trim())
    if (issue_count_for_this_issue_type == 0){
        $(tbodies[i]).hide()
    }else{
        console.log( img_text, issue_count_for_this_issue_type)    
    }
}