You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Can anyone tell me what the difference is between Config exporter and Configuration exporter in ScriptRunner? I see both options in the System category when browsing the built-ins. We haven't been using it for long and I'm curious what the former (Config exporter) does. I've tried looking through the docs and can only find information about the latter (Configuration exporter).
I've tested to see what Config exporter does--all you have to do is choose a directory to save the export. I've done that, and I see it builds a file named "CurrentConfig.groovy", as well as a sub-directory "workflows" which contains one XML file for each workflow in the exported instance. The .groovy script begins with
package com.onresolve.jira.upgrades
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.jira.groovy.metadata.JiraMetadataDSL
import groovy.transform.BaseScript
import com.onresolve.jira.groovy.metadata.workflows.WorkflowsMigrator
import com.atlassian.jira.issue.operation.IssueOperations
@BaseScript JiraMetadataDSL dsl
def i18nHelper = ComponentAccessor.getJiraAuthenticationContext().getI18nHelper()
ComponentAccessor.getJiraAuthenticationContext().setLoggedInUser(ComponentAccessor.getUserUtil().getUserByKey("admin"))
and then basically contains objects for all of the following from the instance:
Not being sure what it was meant for, I did an export from our prod instance, copied the exported files to the dev box, then tried to use the ScriptRunner console to run that CurrentConfig.groovy file, but it throws some errors (not surprising).
Can anyone tell me what the use case for the Config exporter is and how to use it properly?