Dear all,
i am using opsgenie ,OEC and Python Script for creating some jira issues with some custom jira fields which are not filled by default,the synchronization opsgenie-jira works fine and the jira tickets are created.In order to use the py script i have to define the projectKey within config.json like below:
{
"apiKey": "",
"baseUrl": "",
"logLevel": "DEBUG",
"globalArgs": [],
"globalFlags": {
"url": "https://jira....",
"username": "tec-opsgenie",
"password": "
"issueTypeName": "Incident",
"projectKey": "CFORQ"
},
Now every alert will create a ticket under Q-Queue but since i have different alerts for different projects i want tickets to be created for project specific queue.Let say i have project which is called BMW and another project wich is called Audi.
How to create BMWA-123 tickets for all BMW alerts and AUDIA-123 for all Audi alerts?Why the projectKey is hardcoded?Hardcoding the projecKey means that i must have different OEC instances for different projects,but what if i have more than 100 projects.