Issue adapters

MAIA connects to external Issue Tracker Systems (ITS) to retrieve additional issue (task) information, enhancing traceability and control.

There is an adapter for each system brand containing a configuration file specifying the address to the system and credentials to access the data.

Currently MAIA Software is integrated with:

  • Atlassian Jira
  • Redmine
  • Azure DevOps

Jira

Example on config file installation path/sysconfig.db/jira_adapter/jira_adapter.yml

---
url: https://myjira.com
username: myuser
password: mypassword

Redmine

Config file installation path/sysconfig.db/redmine_issue_adapter/redmine_adapter.yml

---
url: https://myredmine.host.com
username: my-user
password: some-password
use_ssl: true

Azure DevOps

To access Azure, a Personal Access Token must be used. This token must have the permission 'Work Items (Read)'

Config file installation path/sysconfig.db/azure_devops_adapter/config.yml

---
url: https://dev.azure.com/mycompany
username: my-user@mycompany.com
token: some-access-token
log_level: debug # or info

Results