Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

Table of Contents
maxLevel3
minLevel3
exclude

How can I check which feature of the app are used and where?

Starting with v2.2.0 version of AM Utils and above you are able to find out how much the AM Utils app is used in your Jira instance.

To do this, go to Administration →  Manage apps →  Am Utils →  Workflow Viewer. For more details, click here.


Screen Shot 2020-07-10 at 10.15.23.pngImage Modified

Other way is to make the request to your DB:

Code Block
SELECT workflowscheme.name, workflowschemeentity.scheme, issuetype.pname, workflowschemeentity.issuetype
FROM issuetype, workflowschemeentity, workflowscheme
WHERE issuetype.id= workflowschemeentity.issuetype andworkflowscheme.id= workflowschemeentity.scheme and workflowschemeentity.workflow in (SELECT jiraworkflows.workflowname FROM jiraworkflows WHERE jiraworkflows.descriptor like '%ru.andreymarkelov.atlas.plugins%');

...