question
dict | answers
listlengths 1
27
| url
stringlengths 66
601
| tags
sequencelengths 1
15
⌀ |
---|---|---|---|
{
"author": "robbie_kohler",
"title": "Deployment Frequency Metric - How to populate from GitLab",
"body": "Hi, I connected to GitLab to Compass and I see metrics for the following:\n\n* Build Success Rate\n* Pull Request Cycle Time\n* Build Time\n* Open Pull Requests\n\n<br />\n\nIt shows \"Deployment Frequency\" as having \"no events\" though. Is there something specific that needs to be configured on the GitLab CI side for the project to automatically know when deployments are going to Production?\n"
} | [
{
"author": "Steffen Opel _Utoolity_",
"body": "Hi [@robbie_kohler](/t5/user/viewprofilepage/user-id/1607182), and welcome to the Atlassian Community!\n\nThe sibling GitHub app documents a fairly advanced GitHub [environment name mapping](https://developer.atlassian.com/cloud/compass/integrations/integrate-Compass-with-GitHub/#github-environment-name-mapping) to infer the environment type.\n\n* NB: The Compass UI annoyingly still only supports staging and production environment types, even though the API supports more, see my answer to [Cannot see development environment for Compass component](https://community.atlassian.com/t5/Compass-questions/Re-Cannot-see-development-environment-for-Compass-component/qaq-p/2405027/comment-id/277#M277)).\n\nThis kind of documentation is missing for the GitLab app, but without being an active GitLab user myself, there seems to be the concept of [environment tiers](https://developer.atlassian.com/cloud/compass/integrations/integrate-Compass-with-GitHub/#github-environment-name-mapping), which are indeed used in the GitLab app's source code, see e.g. [mapEnvTierToCompassDeploymentEnv](https://github.com/atlassian-labs/gitlab-for-compass/blob/e1b780784a4ebf1b027d1e963e3b4a02b256b1c7/src/services/deployment.ts#L33):\n\n```\nexport const mapEnvTierToCompassDeploymentEnv = (env: EnvironmentTier): CompassDeploymentEventEnvironmentCategory => {\n\n switch (env) {\n case EnvironmentTier.PRODUCTION:\n return CompassDeploymentEventEnvironmentCategory.Production;\n\n case EnvironmentTier.STAGING:\n return CompassDeploymentEventEnvironmentCategory.Staging;\n\n case EnvironmentTier.TESTING:\n return CompassDeploymentEventEnvironmentCategory.Testing;\n\n case EnvironmentTier.DEVELOPMENT:\n return CompassDeploymentEventEnvironmentCategory.Development;\n\n case EnvironmentTier.OTHER:\n\n default:\n return CompassDeploymentEventEnvironmentCategory.Unmapped;\n\n }\n};\n```\n\nAccordingly, you can probably make the events show up when you ensure that your GitLab environments have either the staging or production tier.\n\nGood luck!\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/Deployment-Frequency-Metric-How-to-populate-from-GitLab/qaq-p/2749128 | null |
{
"author": "paul.graves",
"title": "Basic Users can't see metrics",
"body": "I'm setting up Compass for my organisation and have added compass.yml files to a number of repos so that certain metrics from Github automatically appear on each components page (open PRs, build time, etc).\n\nAs an Admin user I can see these fine, but I've set up most users in my org as Basic users. For some reason Basic users can only see the \"Component Readiness\" card on each page and none of the metrics.\n\nFrom the pricing page, it would see that Basic users should be able to view all the metrics. I was planning to add many users both technical and non-technical and use Compass as the source of truth for our platforms components, engineering health etc. If everyone needs to be a full user then pricing-wise this isn't going to be an option.\n\nSo my question is, should Basic users be able to see all the metrics on a Components page?\n"
} | [
{
"author": "Alie Sesay",
"body": "Hey Paul, and welcome to the community!\n\nSince Basic users are primarily catalog consumers with limited permissions, they don't have access to view any metrics, whether **predefined/built-in** or **custom** metrics.\n\n\n\n\\* Reference: [Compass user roles](https://developer.atlassian.com/cloud/compass/getting-started/understand-user-roles-in-Compass/)\n\nI hope this clarifies things! Please feel free to reach out if you need any further assistance.\n\n<br />\n\nBest regards, \nAlie\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/Basic-Users-can-t-see-metrics/qaq-p/2736747 | null |
{
"author": "kiran_kantrathi",
"title": "Changes related to specific module in a mono repo using compass.yml file",
"body": "Hi, \n\nI have a single repository on bitbucket which has sub modules for a projct. I would like to see code changes i.e., commits specific to the sub module on compass components activity. I have followed the below documentation to manage multiple components using config as code in a single repo. \n\n<https://developer.atlassian.com/cloud/compass/config-as-code/manage-components-with-config-as-code/> \n\nHowever, after adding compass.yml files in sub module in different commits, I see the same metrics for all components as well as the activity such as commits and deployments. \n\nBut, I would like to see the same metrics and activities specific to the sub module, so that I can easily identify what changes are being done for each module as I have added different compass.yml files in different sub modules in a single repo. \n\nHere is one of the compass.yml file added to one of the sub modules. I have added the id after creating component through compass.yml. Is there anything I am doing wrong here. Thanks in advance for your help. \n\n```\nconfigVersion: 1\nname: dms-search\nid: 'ari:cloud:compass:61623334-7326-4601-ae4e-7c8035c74bdd:component/0ebafb6b-9df8-47cf-931e-64ee8a16172e/28f1af45-e78d-4df8-b922-d1c02430e3ee'\ndescription: This is a dms-search component in Compass.\ntypeId: SERVICE\nfields:\n tier: 1\n lifecycle: Active\nlinks:\n - name: My Jira project\n type: PROJECT\n url: 'https://plevenn.atlassian.net/browse/PPLM'\n - name: Service repository\n type: REPOSITORY\n url: 'https://bitbucket.org/plevenn-plm/dms/src/main/dms-search/'\nlabels:\n - foo:bar\n - baz\ncustomFields: []\n```\n"
} | [
{
"author": "Michelle Carr",
"body": "Same Issue here\n",
"comments": null
},
{
"author": "kiran_kantrathi",
"body": "Hello @Compass, \n\nCould you please look into it question and reply back? We have recently subscribed to Compass components and now I have a road block here. I would be great if I can have some quick reply here.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/Changes-related-to-specific-module-in-a-mono-repo-using-compass/qaq-p/2746766 | null |
{
"author": "visby8em",
"title": "Compass training",
"body": "How do i learn about Compass and how to use it?\n\nIs there any online training available?\n"
} | [
{
"author": "Tushar Gohel",
"body": "Hello [@visby8em](/t5/user/viewprofilepage/user-id/3565089)\n\nThere no online training available but there are learning resources that you can use.\n\n<https://www.atlassian.com/software/compass/resources>\n\n<https://ace.atlassian.com/events/details/atlassian-live-learning-presents-get-started-with-compass-march-2024-cohort/>\n\nThanks,\n\nTushar\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/Compass-training/qaq-p/2734624 | null |
{
"author": "kiran_kantrathi",
"title": "Integrate Compass components in Team-Managed Project",
"body": "I have a team-managed project created on Jira to monitor the project workflow. What I was understood from Jira is, we can use Jira components or Compass components only with in the company-managed projects. But, I would like to integrate my compass components with my team-managed project. It would be great, if there is any ideal way to do. \n\nSo, here is what I am trying to achieve. I have a bitbucket repo which has sub modules of spring boot application. I would like to create an individual compass component for each sub module, then I can link my Jira issues by simply selecting the corresponding component within the Jira ticket. In this way, I would be easily manage what all Jira tickets are linked to the respective sub modules with in a single repository. I may also create different versions for different components. Currently, I don't see such option on the compass components. I am able to create new components, and for the exisiting repos on bitbucket, those components have been created automatically after I subscribed to the compass components. \n\nIt would be really grateful if there is any way to achieve this one or I am missing anything in the existing features on both Jira Components or Compass Components to achieve my goal.\n"
} | [
{
"author": "Katie Silver",
"body": "Hi [@kiran_kantrathi](/t5/user/viewprofilepage/user-id/5520043) , there isn't a way to do this today I'm afraid. However I am collecting feedback like this so we can prioritize it in the future, and I'll add you to the list. I'm hoping we can do it soon, but at present I can't commit to a timeline.\n",
"comments": [
{
"author": "Quan Vo",
"body": "Hi [@Katie Silver](/t5/user/viewprofilepage/user-id/641274) , this type of request was raised from 2019 like this one <https://jira.atlassian.com/browse/JSWCLOUD-17601>\n\nWhy does it take you and the Atlassian team so long to prioritize the needs of many people and companies?\n"
},
{
"author": "Joao Santos",
"body": "hello [@Katie Silver](/t5/user/viewprofilepage/user-id/641274) any update on this? it is really important if you want us to use compass,..\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Integrate-Compass-components-in-Team-Managed-Project/qaq-p/2725945 | null |
{
"author": "Matt Richards",
"title": "Can we assign a Compass component to an individual instead of a team",
"body": "It appears as though Compass components can only be assigned to teams. Is it possible to assign them to individual users?\n"
} | [
{
"author": "Dave Rosenlund _Trundl_",
"body": "Hi, [@Matt Richards](/t5/user/viewprofilepage/user-id/5202592). As far as I know, the answer is no. Everything is spelled out in [this document](https://developer.atlassian.com/cloud/compass/components/assign-and-update-a-components-owner/).\n\nSorry to be the bearer of bad news,\n\n-dave\n",
"comments": [
{
"author": "Matt Richards",
"body": "Thanks for the clarification. Bummer!\n"
}
]
},
{
"author": "Jonathan Appel",
"body": "[@Matt Richards](/t5/user/viewprofilepage/user-id/5202592) not an ideal workaround but you could create teams of 1. ?\n",
"comments": [
{
"author": "Matt Richards",
"body": "Yeah, that's what we are going to do, and we'll use the name of the individual for the team name. Ridiculous that we have to go about it this way, but typical of Atlassian.\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Can-we-assign-a-Compass-component-to-an-individual-instead-of-a/qaq-p/2724055 | null |
{
"author": "Suzanne Cooley",
"title": "Import from Jira not showing anything even though Jira is connected to Gitlab",
"body": "We have a self hosted Gitlab instance which is connected to our Jira instance. \n\nI've done the ['before you begin' steps from this article](https://developer.atlassian.com/cloud/compass/components/import-components-from-repositories-linked-to-Jira/#before-you-begin) and I see repos showing in the code section of my project in Jira.  \n\nHowever, when I click 'Import from Jira' in Compass, I get the following: \n\nDoes Compass not recognize self-hosted Gitlab repos in Jira? Or is there something else I'm doing wrong?\n"
} | [
{
"author": "Josh_Unito",
"body": "Hi [@Suzanne Cooley](/t5/user/viewprofilepage/user-id/4931709), you're right - Compass doesn't support self-hosted repos in Jira. So you're not doing anything wrong! I found this in [an Atlassian developper doc](https://developer.atlassian.com/cloud/compass/components/import-components-from-GitLab/):\n> *only GitLab.com SaaS/cloud hosted instances are supported, we do not currently support self-managed GitLab instances*\n\nIf you're looking for an alternative solution for connecting a self-hosted GitLab to Jira though, I can recommend [Unito's integration for Jira GitLab](https://bit.ly/ATL-KB-JiraGitLab). Here's a [guide to setting up the self-hosted server](https://bit.ly/ATL-GitLabOnPrem) to sync GitLab with Unito.\n\nIf this was a helpful answer, please don't forget to accept it as the solution!\n\nThanks,\n\nJosh\n",
"comments": [
{
"author": "Josh_Unito",
"body": "[@john smith](/t5/user/viewprofilepage/user-id/5501932) I just wrote this guide on [how to import issues from Jira to GitLab](https://bit.ly/ATL-GitLab-Jira-Guide) with Unito's 2-way integration.\n\nIt should be pretty clear, but let me know if it's not!\n\n1. [Sign up for Unito](https://bit.ly/UnitoSignUp) (comes with a free trial!)\n2. Create a flow (a no-code integration)\n 1. Connect your GitLab and Jira accounts\n 2. Set a flow direction (Unito can automatically create issues in GitLab based on your issues in Jira and vice versa)\n 3. Apply rules (point and click interface to set conditions: e.g., only sync issues from Jira to GitLab with the XYZ label or issue status)\n 4. Link fields (choose exactly which fields you need to sync between Jira and GitLab)\n 5. Launch!\n\nFeel free to reach out with any questions\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Import-from-Jira-not-showing-anything-even-though-Jira-is/qaq-p/2717098 | null |
{
"author": "Patrick Smyrl",
"title": "Open Pull Requests metric not populating from GitHub",
"body": "Evaluating Compass for use generating DORA and other metrics. I have created a sandbox repo in GitHub and linked a component in Compass. The GitHub app is installed and if I understand correctly, metrics around pull requests should be populating automatically.\n\nDeployments to production and staging are showing up in the activity feed and the deployment frequency metric is populating, but Open Pull Requests is not populating.\n\nI know the webhook is working as I am getting deploy and workflow events in compass. I have the webhook triggering on deployment status, pushes, and workflow runs per the documentation. When I add Pull Requests, the delivery gets a 400 response.\n\nAny direction would be greatly appreciated, thanks.\n"
} | [
{
"author": "Enrique Serrano Valle",
"body": "Hi, [@Patrick Smyrl](/t5/user/viewprofilepage/user-id/5504505) !\n\nCurrently the Compass GraphQL and the Rest APIs don't allow to directly push PR events - the documentation should be updated shortly to reflect this. Is this when you were receiving 400s?\n\nOtherwise, installing the GitHub app in Compass [following these steps](https://developer.atlassian.com/cloud/compass/integrations/integrate-Compass-with-GitHub/), and adding a repository link to your Compass component should be updating PR metrics. PR events don't currently show in the activity feed but you would know that the setup has worked because you'd see the data connection next to the repository link added to your sidebar, the \"open pull requests\" metric populating and a link to the source repository just at the bottom of that metric.\n\n\n\nLet me know whether that worked! If for any reason that still didn't solve it, please let us know - providing the site that is used for these tests could also help us narrow down other factors.\n",
"comments": [
{
"author": "Patrick Smyrl",
"body": "I am getting the deployment frequency, so I know there is connectivity between the repo and Compass, but the Open PR's still are not populating. Any thoughts?\n"
},
{
"author": "Enrique Serrano Valle",
"body": "You can verify that you're using the latest version of the Compass GitHub app in your Compass instance as \\`<https://yoursite/compass/marketplace/discover/app/compass.github>\\` and update it if necessary.\n\nOtherwise it may be related to something specific to your configuration. If the issue persists, either sharing your site name here, or opening a support ticket with Atlassian and providing more installation information there may help triage this situation.\n"
}
]
},
{
"author": "xhammer",
"body": "I have a similar issue which is that I can see an open pull request on the components and the components are assigned to my teams. But in my team on the pull requests tab I'm showing 0 pull requests.\n",
"comments": [
{
"author": "Enrique Serrano Valle",
"body": "Hi, [@xhammer](/t5/user/viewprofilepage/user-id/5478352) ! The Open PR metric count that you see in the component is populated based on the connection to the repository associated with that component (the repository link that you have added to the right sidebar) so that means that the data connection is successful.\n\nThe pull requests tab under Teams would aggregate PR information at the Team level. The first thing I'd confirm is whether the Team assigned to the Component where you're seeing the PR count (in the top-right sidebar) is exactly the same Team that you're checking the pull requests information for, in the Teams \\> (Your team) \\> Pull requests section.\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Open-Pull-Requests-metric-not-populating-from-GitHub/qaq-p/2707002 | null |
{
"author": "Jordan Stone",
"title": "Configuring a monolith",
"body": "We have a monolithic application in a single repository that we are breaking into modules. I reflected some of these modules in Compass as services and included links to the subdirectories for these modules, however it appears all of the metrics are scoped to the repository and not to the subdirectory within the repository. Is there a way to scope these metrics (e.g. only show open PRs that contain files in the subdirectory) or do we need everything in its own repository to take advantage of the metrics capabilities of Compass?\n"
} | [
{
"author": "Jonathan Appel",
"body": "Sounds like you have a monorepo. A few others have asked similar questions but no clear direction yet.\n\n1. <https://community.atlassian.com/t5/Compass-questions/Support-for-monorepos/qaq-p/2350062>\n2. <https://community.atlassian.com/t5/Compass-questions/How-can-I-disable-derived-metrics/qaq-p/2645416>\n",
"comments": [
{
"author": "Jordan Stone",
"body": "Thanks Jonathan; seems like Compass just doesn't support this use case.\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Configuring-a-monolith/qaq-p/2706257 | null |
{
"author": "Ken Young",
"title": "Compass Components and JSM \"Operations\" Services in \"new\" JSM",
"body": "Hi All,\n\nI am wondering if there is any changes (current or upcoming) in how Compass Components and JSM (Operations/Affected) Services interact with OpsGenie being folded into JSM. We haven't been upgraded because we are currently using JSM/OpsGenie, but I am wonder if there have been any changes that would effect their use, and possibly Automation opportunities. Thx\n"
} | [
{
"author": "Katie Silver",
"body": "Hey [@Ken Young](/t5/user/viewprofilepage/user-id/4596309) , we're working out the details of this now. When we are closer to releasing the on call and alerting functionality in Compass, I'll make sure to update here.\n",
"comments": [
{
"author": "Ken Young",
"body": "Thanks [@Katie Silver](/t5/user/viewprofilepage/user-id/641274) . I think I misread a different document and though a new feature had rolled out.. I thought I read if a \"App Service\" component was created in JSM, a Component was automatically created in Compass--- possibly thinking there had been a change with how the GitHub integration will now dynamically create a component when a new GitHub repo is created.\n\nThx\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Compass-Components-and-JSM-quot-Operations-quot-Services-in-quot/qaq-p/2697571 | [
"jira-service-management",
"service"
] |
{
"author": "Luca Ferretti",
"title": "Component not disconnected after removing compass.yml from GitHub repository",
"body": "I followed the guide\\[1\\] to disconnect a couple of component from linked GitHub repositories, but the components are still \"managed\" by config-as-code and keep to fetch updates from github integration.\n\nI tried to re-add the compass.yml file in the repo and remove it again, but with no success.\n\nAny idea? The component in Compass seems \"locked\" in some weird state, but there is no way to apply any change.\n\n\\[1\\] <https://developer.atlassian.com/cloud/compass/config-as-code/disconnect-managed-components-from-config-as-code/>\n"
} | [
{
"author": "Kelvin T",
"body": "Hello [@Luca Ferretti](/t5/user/viewprofilepage/user-id/5494282)\n\nI hope you are doing great. This is Kelvin from the Compass Support Team. Thanks for your question.\n\nIn order to further check this issue, I opened a ticket for you.\n\nPlease let me know if you have any questions.\n\nThank you!\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/Component-not-disconnected-after-removing-compass-yml-from/qaq-p/2694290 | null |
{
"author": "matthew wilson",
"title": "How can we visualize the start and end times of deployment?",
"body": "We've initiated the process of incorporating deployment information into Compass, aiming to generate a visualization in a component's activity timeline akin to the one depicted below on the Compass site. This visualization features the commencement and conclusion of a deployment delineated by a green line.\n\nI've attempted two methods to achieve this, both without success. Initially, I endeavored to utilize the 'startedAt' and 'completedAt' timestamps within the deployment event in the JSON payload, specifically when the state was 'SUCCESSFUL'. Additionally, I experimented with sending two distinct events: one denoting the state 'IN PROGRESS' with the 'lastUpdated' timestamp indicating the start time, and another event denoting the state 'SUCCESSFUL' with the 'lastUpdated' timestamp marking the completion time. However, it appears that only the conclusion time is being recorded, represented by a single solid green tick, rather than a line connecting the two points as illustrated in the visualization below.\n\nCould you advise if there's an aspect I might be overlooking?\n\nThanks, \nMatthew\n"
} | [
{
"author": "Alastair Wilkes",
"body": "Hey Matthew - sorry, but your image(s) didn't come through. Can you try adding them again?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/How-can-we-visualize-the-start-and-end-times-of-deployment/qaq-p/2692699 | null |
{
"author": "Caylie Panuccio",
"title": "Help us improve Compass for $200!",
"body": "Hello Community!\n\nI'm Caylie, the researcher for Compass.\n\nI'm conducting **research to understand your experience using Compass** so far, and what we can do to **improve how Compass works for you and your teams**.\n\n* Sessions are 1 hour and conducted over video-conference, so you can participate from anywhere.\n\n* During the research, we'll start with a general chat to get to know you, then, we'll look at Compass together\n\n* As a token of our appreciation, you'll **receive an e-gift card worth $200 USD** within 5 days of completing your session.\n\nIf you're **interested in taking part, [please click here](https://www.userinterviews.com/projects/i5NrKmWHow/apply)** **to answer a few questions** **and pick a time.**\n\nCheers,\n\nCaylie\n"
} | [
{
"author": "Todd Schwartz",
"body": "I have just become aware of Compass, so I'm not quite ready for a user experience interview. But I do have some feedback on a feature that concerns me: Dependencies. Compass appears to be designed for a human to manually enter and manage dependencies. I think this is problematic, because it would duplicate the dependencies that are already expressed in code. As the code continues to change, the manually entered dependencies would very easily become out of sync with the actual dependencies in the code.\n\nInstead, I suggest that Compass be designed to scan the project repo for key files that identify potential dependencies, e.g. requirements.txt or pyproject.toml for a python project. When Compass finds such potential dependencies, it could allow a human developer to confirm/correct/reject the dependencies. When a dependency is removed from the requirements.txt or pyproject.toml file, then Compass would automatically remove the associated dependency.\n",
"comments": [
{
"author": "Caylie Panuccio",
"body": "Thank you for sharing your thoughts Todd! I will pass this onto the team.\n"
},
{
"author": "Taylor",
"body": "Hey [@todd](/t5/user/viewprofilepage/user-id/4117696) glad you discovered Compass and thank you for jumping in with your feedback!\n\nI'd love to clarity a few things on dependencies and get your thoughts. Our goal with dependencies was to indeed design it for a human, but primarily to understand and navigate that information rather than manually input it.\n\nWe do allow for manual input of the values of course, however, to your point, depending on how complex the system is the need to automate quickly becomes paramount. We deal with a massive variety of customers and their internal systems and developer experience all have their nuances.\n\nFor the manual update, we do see a lot of teams actually just start by documenting their 'upstream dependencies' manually via key services so they can understand when their are deployments, incidents, and other events happening - this appears on the activity feed once you add dependencies.\n\nFor the automated side, we allow customers to add the dependency in their [\\`compass.yml\\` definition](https://developer.atlassian.com/cloud/compass/config-as-code/structure-and-contents-of-a-compass-yml-file/) which is usually automated by some bot/job their internal platform engineering team would setup. There are so many strategies for dependency management - maybe you have a proper service mesh effectively deployed and you are quite mature, you may use observability tools to look at API requests, or you may map dependencies in some kind of file in code.\n\nIn addition to [registering this in the \\`compass.yml\\` definition](https://developer.atlassian.com/cloud/compass/config-as-code/structure-and-contents-of-a-compass-yml-file/), you can also just use our public GraphQL API (which is available for every feature in the product) to interactive with the data model, dependencies included. Inside the [Update Component mutation](https://developer.atlassian.com/cloud/compass/graphql/#mutations_updateComponent) you can take whatever existing ways you use to detect dependencies and send that to Compass. We have an [open-source repo with several code snippets](https://github.com/atlassian-labs/compass-examples?tab=readme-ov-file) to help here but reach out to us if you need further help.\n\nOnce pushed into Compass, we try to focus on how developers will use this information. Today, we see customers using this for several different reasons\n\n1. **They use the activity feed to see upstream events (deployments/incidents, etc.) during development or incidents**. It helps an individual developer or team working on a single service understand the larger picture. These dependencies can cut across various component types - so the services, libraries, ML models, and other aspects that may change and they want to know about it.\n2. **During an incident**, they will see the affeted service(s) in Slack or in their incident management tool and will jump into the link to the Compass service. They will check the activity feed, and then jump into a couple of different dependencies to see more information about those component - who owns them, where the slack channel is, etc. This radically cuts down time to resolve as it let's developer self-serve and quickly find critical information.\n3. **Building a new feature**is increasingly involving multiple services/code bases that are assembled together to deliver some end value for the customer. Developers can use Compass to find popular services but also understand what THOSE services rely on and what tier it is. They would probably trust a Tier 0 service with 20 existing dependencies by other well-known services with lots of documentation than a Tier 3 service with no existing dependencies and no documentation. Furthermore, when they register that dependency, the team that owns the service providing the functionality can broadcast changes to all downstream consumers via announcements. This saves a TON of time and energy.\n\nThere is a lot more we want to do in tying these workflows together with JSW and JSM using the Automation platform and Notifications which we will continue to improve. But the bones are there.\n\nLastly - We have thought about building our own mechanism to 'auto-detect' dependencies and put that into a triage bay exactly how you have described! If we can find a flexible and performant way to do this that covers most customers' setups or preferences then we will absolutely prioritise it, we have just been focussed on a few other areas for the time being.\n\nWith that being said - [did you know we have a live marketplace to host various apps, using Forge, do extend Compass in an infinite number of ways](https://marketplace.atlassian.com/addons/app/compass)....building a small app to do this and hosting it on our marketplace would fill a needed gap right now. We will be offering paid apps in the near future. \n\nLet me know any further questions you have or general thoughts on this approach? When we circle back to an auto-detect feature, can we reach out to you?\n"
}
]
},
{
"author": "Jaki3",
"body": "Hi Caylie,\n\nThank you for reaching out. I'm interested in participating in the research session for Compass. The opportunity to share my experience and contribute to its improvement sounds great, and the e-gift card is a nice bonus.\n\nPlease let me know the next steps, and I'll be happy to answer the preliminary questions and schedule a time for the video conference. You can also visit my website [vista roofing lincoln](https://vistaroofinglincoln.co.uk/).\n\nCheers,\n",
"comments": null
},
{
"author": "Manuel Niederkofler",
"body": "hi,\n\ncan I also participate even if I am currently not using Compass.\n\nRegards\n",
"comments": [
{
"author": "Caylie Panuccio",
"body": "Hi Manuel, thanks for checking! Unfortunately I do need people who use Compass for this study.\n\nHowever, if you'd like to participate in our research projects you can sign up to the Atlassian Research Group here: <https://www.atlassian.com/research-group>\n\nCheers,\n\nCaylie\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Help-us-improve-Compass-for-200/qaq-p/2719135 | [
"feedback",
"research"
] |
{
"author": "Spencer Robertson",
"title": "Details on predefined metrics",
"body": "I am trying to figure out how the predefined metrics are calculated against a Github repo and haven't been able to find any documentation on the subject.\n\nIve managed to make some best guesses on some of the metrics but would be quite nice to have some extra documentation , specifically on how to set them up, best practises and how they are actually calculated. (I also think this could be helpful for peole making custom metrics, having a baseline on which data is being brought in)\n\nI.E. Deployment time vs Build time:\n\nMy guess is this calculates the time for a workflow to finish, and the only difference is if one of the workflows is tagged as \"environment: production\" then it goes under the Deployment time metric?\n\nAny help, or links to documentation please?\n"
} | [
{
"author": "Alastair Wilkes",
"body": "Hi Spencer, thanks for your question!\n\nBuild time and deployment time are derived from build and deployment events sent from GitHub via the GitHub/Compass integration. More details are here:\n\n<https://developer.atlassian.com/cloud/compass/integrations/integrate-Compass-with-GitHub/#supported-metrics>\n\nYou're correct that the integration looks for the environment tag to detect deployment events. The link above goes into this in a bit more detail.\n\nYou can see more info about other predefined metrics here: <https://developer.atlassian.com/cloud/compass/components/available-predefined-metrics/>\n\nFor the most part, you shouldn't *have* to do much to get things set up if you're using the out of the box integration (except check the environment name for deployments, as you pointed out). Let me know if you have any other questions!\n\nAlastair\n",
"comments": [
{
"author": "Spencer Robertson",
"body": "Most of the metrics worked but was just struggling to see how they were generated to \"fine tune\" them (turns out some of our workflows had incorrect enviroment tags so the metrics were being thrown off)\n\nThis page really helped <https://developer.atlassian.com/cloud/compass/integrations/integrate-Compass-with-GitHub/#supported-metrics>. Thanks for that!\n"
}
]
}
] | https://community.atlassian.com/t5/Compass-questions/Details-on-predefined-metrics/qaq-p/2690464 | [
"metric"
] |
{
"author": "Matthias Moll",
"title": "Automatic assignment based on components",
"body": "Using the old Jira components, issues are automatically assigned to the component lead of the component which is assigned to the issue. How is this dealt with using compass components? Are issues automatically assigned to team leads?\n"
} | [
{
"author": "YY Brother",
"body": "Hi [@Matthias Moll](/t5/user/viewprofilepage/user-id/5103209)\n\nWelcome to our Community.\n\nI think you've asked a good question. I just tried it and we may need an automation rule to implement issue's auto assignment:\n\n\n\nHope it helps.\n\nThanks,\n\nYY?\n",
"comments": null
},
{
"author": "Matthias Moll",
"body": "Thank you for the reply. Surely you can do everything (a lot) with automation. I could solve it by:\n\n- create a custom field to the compass component defineing the 'default assignee'\n\n- introduce a post function after creation of an issue type which assigns the issue automatically to the default assignee of the first compass component which is assigned to the issue\n\nHowever, this would be more complex than working with the \"old\" components. I don't want to introduce new tooling that makes things more complicated that were previously simple. Does anyone have any other ideas?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/Automatic-assignment-based-on-components/qaq-p/2689691 | [
"assign"
] |
{
"author": "David Inkpen",
"title": "What is the naming convention needed for deploys to be picked up?",
"body": "I've got the integration with GitHub working for a component.\n\nA workflow named \"Deploy UAT\" runs, and is successfully shown in the Activity view.\n\nHowever, it appears under \"Other\" instead of \"Deployments\".\n\nI've also tried explicitly setting the \\`environment: uat\\` within the workflow to no avail.\n\nWhat is the naming convention needed to pick up the deployment?\n"
} | [
{
"author": "faraz rashdi",
"body": "The naming convention needed for deploys to be picked up can vary depending on the deployment tool or system you are using. However, there are some common naming conventions that are often used to ensure deploys are picked up correctly:\n\n1. \\*\\*Semantic Versioning\\*\\*: Using semantic versioning for your deploy names can help organize and track different versions of your application. Semantic versioning typically follows the format \\`major.minor.patch\\`, where each part represents a different level of change in the software. For example, \\`v1.2.3\\` indicates major version 1, minor version 2, and patch version 3.\n\n2. \\*\\*Timestamps\\*\\*: Including timestamps in deploy names can provide a clear indication of when each deploy occurred. Timestamps are often formatted in a way that is sortable and easily readable, such as \\`YYYYMMDDHHMMSS\\` (year, month, day, hour, minute, second).\n\n3. \\*\\*Environment Indicator\\*\\*: Adding an environment indicator to deploy names can help distinguish between different environments, such as development, staging, and production. For example, you might use prefixes like \\`dev-\\`, \\`stage-\\`, or \\`prod-\\` to indicate the environment.\n\n4. \\*\\*Branch Name\\*\\*: Including the name of the branch being deployed can be useful for tracking changes and debugging issues related to specific branches. This is especially relevant in continuous integration/continuous deployment (CI/CD) workflows.\n\n5. \\*\\*Release Name or Tag\\*\\*: If your deployment process involves creating releases or tags in your version control system (e.g., Git), you can use the release or tag name as part of the deploy name. This helps link the deploy to a specific release or version of your application.\n\n6. \\*\\*Descriptive Labels\\*\\*: Including descriptive labels or identifiers in deploy names can provide additional context about the changes included in the deploy. This might include features, bug fixes, or other relevant information.\n\nHere's an example of a deploy name [incorporating](http://zakbags.com/products/louis-vuitton-favorite-bag-1) some of these elements:\n\n\\`\\`\\` \nv1.2.3-prod-20220501-143000 \n\\`\\`\\`\n\nThis deploy name indicates that it is version 1.2.3 deployed to the production environment on May 1, 2022, at 2:30:00 PM.\n\nIt's important to establish a consistent naming convention that works well for your team and aligns with your deployment process and tooling. Additionally, ensure that your deployment tool or system is configured to recognize and process deploy names according to your chosen convention.\n",
"comments": null
},
{
"author": "Steffen Opel _Utoolity_",
"body": "The [GitHub environment name mapping](https://developer.atlassian.com/cloud/compass/integrations/integrate-Compass-with-GitHub/#github-environment-name-mapping) documents the applied naming convention for the environment type, and it maps 'uat' to 'testing', i.e. it seems supported as such (the keywords are case insensitive):\n> The GitHub app for Compass evaluates the name of your [GitHub Environment](https://docs.github.com/en/actions/deployment/about-deployments/deploying-with-github-actions#using-environments) for all deployment events and uses a mapping to determine what environment type (Production, Staging, etc.) it falls into. We look for the presence of the below words within the name of the environment to determine the type.\n>\n> * production: \"production\", \"prod\", \"prd\", \"live\"\n> * staging: \"staging\", \"stage\", \"stg\", \"preprod\", \"model\", \"internal\"\n> * testing: \"testing\", \"test\", \"tests\", \"tst\", \"integration\", \"integ\", \"intg\", \"int\", \"acceptance\", \"accept\", \"acpt\", \"qa\", \"qc\", \"control\", \"quality\", \"uat\", \"sit\", \"canary\"\n> * development: \"development\", \"dev\", \"trunk\"\n>\n> In the case that an environment name matches more than one type, we use the order shown above to determine the mapping. For example, if your environment is named \"dev-prod\" we would map it to Production.\n\nThat being said, what you describe seems to indicate that your workflow isn't even recognized as a deployment in the first place - can you verify that the optional keyword *deployment* is present in your workflow? For example:\n\n jobs: deployment: runs-on: ubuntu-latest environment: uat steps: - name: deploy # ...deployment-specific steps\n",
"comments": null
}
] | https://community.atlassian.com/t5/Compass-questions/What-is-the-naming-convention-needed-for-deploys-to-be-picked-up/qaq-p/2686212 | null |
{
"author": "Janne Magnusson",
"title": "Linked Jira tickets not displayed in Goals",
"body": "In Atlas Goals I link Jira issues but once added I cannot see the links anymore.\n\nIn the upper part of the picture below I added a Jira Epic to the Goals and it seems ok. But notice that \"Contributing Jira issues\" say 3, while only the recently added are displayed.\n\nAfter moving to another section and going back to the same page the link to the Epic has diapered (lower part of below picture).\n\nWhen looking at the issues in Jira I can see the link to Goals.\n\nMy objective is to find a way to track work in Jira at a higher level using Atlas Goals or Projects with links to multiple issues in Jira.\n\nAny advice would be appreciated.\n\n\n"
} | [
{
"author": "Carlos Garcia Navarro",
"body": "Hi [@Janne Magnusson](/t5/user/viewprofilepage/user-id/5539452) ,\n\nWelcome to the Community! I'm trying to reproduce this issue and it's working for me. I added a few Jira epics linked to Goals and they consistently appear in the 'Jira' tab under the Goals section. Is this issue still happening? What browser are you using? Can you please check with a different browser? Are other users experiencing the same issue? Thanks,\n",
"comments": [
{
"author": "Janne Magnusson",
"body": "Hi [@Carlos Garcia Navarro](/t5/user/viewprofilepage/user-id/1031232)\n\nThanks for your reply. I've tested again in Chrome and Edge, same result. One of my colleges also tested with the same result.\n\n/Janne\n"
}
]
}
] | https://community.atlassian.com/t5/Atlas-questions/Linked-Jira-tickets-not-displayed-in-Goals/qaq-p/2748513 | [
"goals"
] |
{
"author": "jporinchukutty",
"title": "While using Jira API to attach a file to an existing issue getting 500 Internal server error.",
"body": "Hi,\n\nI am trying to use Jira API to attach a file to the issues we created by calling below AP\n\nrest/api/3/issue/{Issue ID}/attachments\n\nWhile doing so in postman getting 500 error, not sure what is the actual issue.\n\nPlease guide.\n"
} | [
{
"author": "jporinchukutty",
"body": "Able to resolve the issue in Postman right now, modified content type as below and it worked.\n\nContent-Type - multipart/form-data; boundary=\\<calculated when request is sent\\>\n\nThanks\n",
"comments": null
},
{
"author": "Fernando Eug?nio da Silva",
"body": "[@jporinchukutty](/t5/user/viewprofilepage/user-id/5541696) , Welcome to the Atlassian Community!\n\nHave you added the special header: **X-Atlassian-Token: no-check**?\n\nThe documentation about add attachment in Jira mention this special header to be included in your REST API call: [The Jira Cloud platform REST API (atlassian.com)](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-attachments/#api-rest-api-3-issue-issueidorkey-attachments-post)\n\nAlso generally 500 errors are associated with not being able to call the application server, check if you are using the entire url complete with the HTTPS protocol\n",
"comments": [
{
"author": "jporinchukutty",
"body": "Thanks [@Fernando Eug?nio da Silva](/t5/user/viewprofilepage/user-id/4606715) ,\n\nI do provide **X-Atlassian-Token: no-check,**but still same error, URL as well same, able to call other api's for get and put.\n\nPlease suggest for any other chance for this error code in postman.\n\nThanks\n"
}
]
}
] | https://community.atlassian.com/t5/Atlas-questions/While-using-Jira-API-to-attach-a-file-to-an-existing-issue/qaq-p/2752061 | [
"jira-api"
] |
{
"author": "Lakshmi C",
"title": "Same teams across all jira products",
"body": "Requirement:\n\nI have teams created in Atlas for projects and assign them goals. However, I cannot add the same teams against my ideas in Project Discovery. Is it possible? if yes how?\n\nCurrently, I am creating teams in Project Discovery and assigning them the ideas.\n\nRegards,\n\nLakshmi\n"
} | [
{
"author": "Dave Rosenlund _Trundl_",
"body": "Hi, [@Lakshmi C](/t5/user/viewprofilepage/user-id/11417) ?\n\nThe Bad News: The simple answer is, no. There is no way to share the same team structure from Atlas with other Atlassian products today.\n\nThe Good News: There is a pending enhancement Suggestion that you can vote for and follow (\"watch\") and a workaround contained in this Knowlege Base document:\n\n#### [Exporting Atlassian Teams and Members data from my Organization](https://confluence.atlassian.com/jirakb/exporting-atlassian-teams-and-members-data-from-my-organization-1364560115.html) {#toc-hId-346921295}\n\nI hope this helps,\n\n-dave\n",
"comments": null
}
] | https://community.atlassian.com/t5/Atlas-questions/Same-teams-across-all-jira-products/qaq-p/2739087 | null |
{
"author": "Amandine Rimbert",
"title": "Unable to connect MS Teams channel to Atlas project ?",
"body": "We are using Atlassian Home to report on our projects and we successfully managed to allow connection with our MS Teams. In the Share feature of an Atlas project, you can then choose a specific MS Teams channel in which you would like to automatically post project updates. I am able to see our existing Channels and select one, but then when I want to save it and click on \"Done\", I systematically get a generic error message \"Something went wrong while connecting to Microsoft Teams. Please try again in a few minutes\". (We tried on multiple days already, so it's not just a temporary issue).\n\nAre there other people facing the same issue ? Any advice on what the problem could be ? As we are now stuck and do not know how to get more info on what is failing.\n\nThanks in advance !\n\n\n"
} | [
{
"author": "Steffen Opel _Utoolity_",
"body": "The Atlassian Team has provided an accepted answer to a related question [Could not Connect to Microsoft Teams](https://community.atlassian.com/t5/Atlas-Group-questions/Re-Could-not-Connect-to-Microsoft-Teams/qaq-p/2668179/comment-id/505#M505):\n> It's a known issue after releasing Microsoft Teams v2. There is a problem in the desktop application, especially if a user is logged in several Microsoft Teams accounts.\n>\n> As a workaround to sign in to Atlas application, you can use [the browser version of Microsoft Teams](https://teams.microsoft.com/). After that, you can continue using the desktop Microsoft Teams application.\n\nThat being said, given you are experiencing the problem despite being supposedly addressed already, there might be other root causes in play still, as suggested in an [alternative answer](https://community.atlassian.com/t5/Atlas-Group-questions/Re-Could-not-Connect-to-Microsoft-Teams/qaq-p/2665987/comment-id/502#M502):\n> I had this same issue. It seems that, for us at least, it's because we have a GCC High 365 account and this is the reason it can't connect.\n",
"comments": [
{
"author": "Amandine Rimbert",
"body": "Actually we figured out that this is due to privacy settings of the targeted MS Teams group. If the MS Teams group is public and I am not owner of it, then I am able to connect my Atlassian Home project to the needed Teams channel (provided that the channel is also public, and not private).\n"
}
]
}
] | https://community.atlassian.com/t5/Atlas-questions/Unable-to-connect-MS-Teams-channel-to-Atlas-project/qaq-p/2737877 | null |
{
"author": "Christian",
"title": "Jira project won't allow adding groups, but some groups are already added.",
"body": "This must be a bug, because it's worked fine in the past, but now the groups don't show-up and it won't let me add groups to the project...\n\nBut, there's are a few groups that I've added in the past, I just can't add an additional group, there's no other groups that show-up.\n\nUnder the People section of the Project Settings it even says \"Search for names, groups or email addresses.\" But now, it appears to try to create an email address from the group I'm trying to add, but it's a group name, so there's no email for it.\n\nThis used to work just fine in the recent past, so not sure what changed. I'm a full Jira and Org admin, so I \"should\" be able to see every group, etc.\n"
} | [
{
"author": "Christian",
"body": "UPDATE: Ok, I ended-up spending another hour or two troubleshooting this and finally got the drop-down to autofill again... Whew!\n\nBut, it's not clear exactly what fixed it, I kept changing around my user groups, and ignored the yellow warning symbol about a user having multiple roles. I needed admin users to be able to have User access admin product roles, but also be able to use Jira, which apparently requires them to have User roles.\n\nThen there's something strange where, even if a user has full Jira admin and Org admin access, this drop-down feature will break, if there's not a lower-level access given (I guess), which is kinda strange in my opinion.\n\nDoes anyone know where a really good tutorial or guide is to Jira/Atlassian users and groups is, where it explains when your company needs a dozen custom groups to separate-out access per department, Managed accounts, and how to deal with default groups, etc.?\n",
"comments": null
},
{
"author": "Drew McPayne",
"body": "I finally found the answer to this issue in our system...\n\nI have no idea why, but somehow the global system permissions have changed - only a single group of users was enabled in 'Browse users and groups'.\n\nGoto\n\nSettings Cog in top right --\\> System\n\nGlobal Permissions --\\> Add the relevant user groups to the permission\n\n\n\nIn my scenario, only Jira Developers were part of the permission, so admins couldn't browse groups etc in the user management groups view :O\n",
"comments": null
},
{
"author": "Trudy Claspill",
"body": "Hello [@Christian](/t5/user/viewprofilepage/user-id/5534414)\n\nWelcome to the Atlassian community.\n\nWhen I start to type in the name of a group, initially it shows as an email address but then quickly switches to showing the group names that match. At the bottom of the list is the email address it was trying to construct.\n\n\n\nAre you sure what you are typing in matches to a group that has access to the site?\n",
"comments": [
{
"author": "Christian",
"body": "Hi [@Trudy Claspill](/t5/user/viewprofilepage/user-id/3569011)\n\nThanks for your reply and great to be in the Atlassian community.\n\nWhat you describe and what your screenshot shows is exactly how it used to work, but atlas, for the last week the auto-filling stopped filling-in the groups or anything else besides the default email, and I've left it up waiting for a while and it never loads anything else as it used to.\n\nSee attached similar screenshot as you have done... This is one Jira project that is side-by-side with another Jira project that has groups starting with \"app-\", but as you can see from the screenshot it only has groups I added a month ago, but doesn't auto-fill the drop-down with any of my other app groups.\n\n\n"
},
{
"author": "Christian",
"body": "In fact... the moment I start entering anything into that \"Names or emails\" field, which used to take Group names without any issues... I get the following...\n\nWhich appears to be some sort of GET request to a RESTful API endpoint for \"groupuserpicker\" but it results in an HTTP 403 error (forbidden).\n\n* The \"app-\" groups have access to the Jira product.\n* The \"app-\" groups are in other Jira projects (from when I could add them).\n* I can add users from that group individually, if I copy the email address.\n* Nothing special about advanced permissions, should be close to default.\n* Nothing special about browser, just latest Chrome 126.0.6478.61 on macOS.\n\nSee attached screenshot from browser inspection panel...\n\n\n"
},
{
"author": "Trudy Claspill",
"body": "Have you tried the same steps in another browser application or a private browser window?\n\nDo other admins with the same permissions have the same experience?\n"
},
{
"author": "Christian",
"body": "[@Trudy Claspill](/t5/user/viewprofilepage/user-id/3569011)\n\n* Yes, definitely other Jira and Org admins; that's what started me to create the first support ticket and this community question.\n* I just tried a new Incognito/private window in Chrome, which does have the exact same issue/s.\n* I just tried it in Firefox 127.0.2 and attached is its console errors...\n\n\n"
},
{
"author": "Blake McLeod",
"body": "Did you ever get to a resolution for this? We're experiencing the same issue. I was consolidating our groups, removed all the old ones but now I can't add the new user groups.\n\nVery frustrating because now none of our staff can access the tickets...\n"
},
{
"author": "Christian",
"body": "[@Blake McLeod](/t5/user/viewprofilepage/user-id/5568767)\n\nYes, it was basically a permissions issue, and was not intuitive, but I finally ended-up changing around the user groups enough and ignored the yellow warning symbols about a user having multiple roles (which in most systems you would avoid), and then added lower level permissions, even though these were admin users, or users with admin product roles. So, even if a user has full Jira admin and/or Org admin access, this drop-down feature will break, so, if there's is not that lower-level access given it won't show. Hope that helps!\n"
},
{
"author": "Blake McLeod",
"body": "Awesome, that fixed it for me too. I added every role under the sun to my account and I was able to finally add groups to my the project I was an owner of.\n"
},
{
"author": "Trudy Claspill",
"body": "This came up recently with a colleague of mine consulting for a client.\n\nMy colleague discovered that the person trying to add groups to roles in a project needed to have the global permission for Browse User and Groups.\n"
}
]
}
] | https://community.atlassian.com/t5/Atlas-questions/Jira-project-won-t-allow-adding-groups-but-some-groups-are/qaq-p/2742434 | [
"cloud",
"jira",
"jira-cloud"
] |
{
"author": "Shepherd Moore, Jen (J.A.)",
"title": "How to query jira issues with atlas goals linked?",
"body": "I want to write a jql which returns all Jira work items (epics, stories, etc) with links to goals in Jira Atlas (Jira Cloud)\n"
} | [
{
"author": "Amanda Barber",
"body": "Hi, [@Shepherd Moore, Jen (J.A.)](/t5/user/viewprofilepage/user-id/4840243) - in [this recent community post](https://community.atlassian.com/t5/Atlas-questions/I-want-to-use-JQL-to-interact-with-Atlas-Is-it-possible/qaq-p/2664894) it sounds like JQL doesn't work with Atlas yet.\n\nQuoting [@Ste Wright](/t5/user/viewprofilepage/user-id/1166470)\n> Atlas doesn't support JQL at this stage.\n>\n> Atlassian confirms that in [this answer](https://community.atlassian.com/t5/Atlas-questions/Re-Is-it-possible-to-query-Atlas-records-using-JQL-terms/qaq-p/2417706/comment-id/509#M509), which also has some other options using URL parameters...\n> > 1. Atlas doesn't natively support \"advanced search\" *but* all searches are backed by something called TQL (Team Query Language). The search filters that are available are all translated to TQL - we just don't expose a way for you to type it in.\n> >\n> > 2. That said, you can enter parameters in the URL if you're very keen.\n> >\n> > 3. Otherwise if you just want to search for a specific project or goal key, you can enter the key in search and it will show up.\n>\n> ---\n>\n> You could suggest this though as a new feature request? You can do this through here: <https://jira.atlassian.com/secure/Dashboard.jspa>\n",
"comments": [
{
"author": "Shepherd Moore, Jen (J.A.)",
"body": "Hi Amanda! Totally got it on Atlas. \n\nI'm looking, though, to do the JQL within Jira itself to reflect where \"Goals\" have been linked. \n\nSo - I would not expect to query in Atlas. \n\n<br />\n\n\"Linked Goals\" in Jira itself is what I want to query, and have a list of issues return.\n"
},
{
"author": "Amanda Barber",
"body": "Sorry that I misunderstood your question!\n\nI do see Atlas Goals for filtering issues, but in JQL that is just a custom field, so it seems you might be able to use that. For some reason, my instance has multiple \"Atlas Goals\" custom fields which has sent me down a rabbit hole... ?\n"
}
]
}
] | https://community.atlassian.com/t5/Atlas-questions/How-to-query-jira-issues-with-atlas-goals-linked/qaq-p/2705445 | [
"jql"
] |
{
"author": "?????? ???? ?????? ????????",
"title": "I can't upgrade my account",
"body": "I am trying to upgrade my account, but an error message appears. I do not know the reason, but the card is valid and has sufficient balance, and I have tried more than one card.\n\n\n"
} | [
{
"author": "Eugenio Onofre",
"body": "Hi [@?????? ???? ?????? ????????](/t5/user/viewprofilepage/user-id/5417825),\n\nWelcome to the Atlassian Community. \nThis seems to be an error with the system itself.\n\nI would recommend raising a support request with the Billing team at <https://support.atlassian.com> so they can check and process your payment.\n\nPlease remember to accept this answer as it may also help other community members in the future.\n\nRegards, \nEugenio\n",
"comments": [
{
"author": "?????? ???? ?????? ????????",
"body": "in which one ? can you tell me more details\n"
}
]
}
] | https://community.atlassian.com/t5/Assist-questions/I-can-t-upgrade-my-account/qaq-p/2592804 | null |
{
"author": "Rudina Aldubayan",
"title": "Condition for Due Date and Blocker Priority",
"body": "**Script:**\n\nI would like to request changing the \"**Blocker\"** priority to be possible only when the due date of the raised request is on the ++same day++ or the ++next day++.\n\nOtherwise, a **notice/warning** should appear with the text \"**The selected priority is not appropriate for this request**\".\n\nI hope to explain the steps clearly as I am new to Jira.\n"
} | [
{
"author": "Rudina Aldubayan",
"body": null,
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/Condition-for-Due-Date-and-Blocker-Priority/qaq-p/2591317 | [
"block",
"cloud",
"due-date",
"priority"
] |
{
"author": "Manpreet kaur dhaliwal",
"title": "Why My jira account is not working ?",
"body": "**my jira account is not working when I am trying to login and fill the email id and password it shows verifying and then come to initial point that is login or sign up**\n"
} | [
{
"author": "Jack Brickey",
"body": "Please share a screenshot of what you see. Have you ever successfully logged in? Are others able to login successfully?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/Why-My-jira-account-is-not-working/qaq-p/2591173 | null |
{
"author": "Reda Meglaa",
"title": "How to withdraw my money.",
"body": "I did receive emails to withdraw my money from Google bitcoin .\n"
} | [
{
"author": "Nic Brough -Adaptavist-",
"body": "Welcome to the Atlassian Community! \n\nI think you are in the wrong place, your question does not seem to be about an Atlassian system. I suspect you have clicked on \"help with the system in use for documentation or issue tracking\" instead of \"help with the product\".\n\n(Oh, and there is no such thing as \"google bitcoin\")\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/How-to-withdraw-my-money/qaq-p/2584888 | null |
{
"author": "thariq mohamed",
"title": "Urgent: Excel Hanging Issue During Area Measurement - Request for Support",
"body": "Dear Community Members,\n\nI hope you're doing well. I'm facing a critical issue while using Planswift in conjunction with Microsoft Excel, and I'm seeking advice or solutions from the community.\n\n**Issue Summary:** When attempting to take area measurements using the Excel link to Planswift, my Excel application consistently hangs and becomes unresponsive. This issue is specific to area measurements, as other measurement types such as count, segment, and linear do not cause any problems.\n\n**Environment Details:**\n\n* Excel Version: Microsoft? Excel? for Microsoft 365 MSO (Version 2312 Build 16.0.17126.20132) 64-bit\n* Planswift Version: 11.0.0.129 (Paid version for 1 year)\n\n**Steps Taken:** I have made several attempts to resolve the issue, including:\n\n* Uninstalling and reinstalling both Planswift and Excel.\n* Running command prompt as an administrator using both 64-bit and 32-bit versions of PSConnector9.dll and SwiftXL9.dll.\n\nDespite these efforts, the problem persists, severely impacting my workflow.\n\n**Request for Assistance:** I would greatly appreciate any insights, advice, or recommendations from the community to help resolve this matter. If anyone has encountered a similar issue or knows of potential solutions, please share your expertise.\n\nThank you in advance for your time and assistance.\n\nBest regards, Thariq Mohamed MSc in CPM, (BSc (Hons) in QS and CM), RICS Aspirant\n"
} | [
{
"author": "Jack Brickey",
"body": "Hi [@thariq mohamed](/t5/user/viewprofilepage/user-id/5407550) ,\n\nI think you may be in the wrong place for support. This community is associated with support for Atlassian products.\n",
"comments": [
{
"author": "Jack Brickey",
"body": "it could be that you arrived here as a result of a Atlassian product link within the support portal for planSwift. It might be that they use Atlassian's Jira service management for support.\n"
}
]
}
] | https://community.atlassian.com/t5/Assist-questions/Urgent-Excel-Hanging-Issue-During-Area-Measurement-Request-for/qaq-p/2581303 | null |
{
"author": "Marcello Ferraro",
"title": "How i can get access to community emeter?",
"body": "Hello\n\nI'm trying to get access to emeter community , could you please indicate how i should proceed to get access\n\nthank you in advance for the help\n\nbest regards\n\nMarcello\n"
} | [
{
"author": "Nic Brough -Adaptavist-",
"body": "Welcome to the Atlassian Community!\n\nYou probably need to ask the administrators of your Emeter community.\n\nWe're the Atlassian community, not Emeter (although I did do a bit of work with a company called Emeter, who may have had their own Community, so, unusually, I might actually know who your admins are. Assuming they've not moved in the last 5 years)\n",
"comments": [
{
"author": "Marcello Ferraro",
"body": "thanks!\n"
}
]
}
] | https://community.atlassian.com/t5/Assist-questions/How-i-can-get-access-to-community-emeter/qaq-p/2576570 | [
"unknown-hosting-type"
] |
{
"author": "Riyaben Agrawal",
"title": "Assist App logo not visible inside microsoft Teams",
"body": "Hello Halp/Assist,\n\nI've pinned Assist App in messaging extension in Teams. it's still pinned but doesn't appear in messaging bar. Please help! We use **Assist app** organization-wide and there's some issue with Log of Assist which is disappeared from the teams.\n\nI did contact to Microsoft teams support Team but they suggested there is some update issue with the app itself.\n\nCould you please advise!\n"
} | [
{
"author": "Eugenio Onofre",
"body": "Hi [@Riyaben Agrawal](/t5/user/viewprofilepage/user-id/5389136)\n\nWelcome to the Atlassian Community.\n\nThe Assist app logo is default from the Assist and hence we, from the community, are not able to assist with this investigation as we do not have access to customer instances.\n\nI would recommend raising a support request with Atlassian Support team at <https://support.atlassian.com>\n\nPlease do not forget to accept this answer in case it helps you resolve your question so it can help other community members in the future.\n\nRegards, \nEugenio\n",
"comments": null
},
{
"author": "Riyaben Agrawal",
"body": "Thanks you eugenio. I'll contact them.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/Assist-App-logo-not-visible-inside-microsoft-Teams/qaq-p/2562248 | [
"cloud"
] |
{
"author": "??????? ???????",
"title": "I can't register an account because of the geo-political situation in the world. I have not lived in",
"body": "I can't register an account because of the geo-political situation in the world. I have not lived in Russia for 4 years. How do I register an account?\n"
} | [
{
"author": "Andy Heinzer",
"body": "Hi [@??????? ???????](/t5/user/viewprofilepage/user-id/5377828)\n\nI believe that your account is being blocked due to your email address domain ending in a .ru top-level domain. Even if your IP address is not located within Russia or Belarus, your domain technically is based in Russia.\n\nTry creating an account that doesn't use a .ru address for your email. If you're still getting blocked, try reaching out using <https://www.atlassian.com/company/contact/purchasing-licensing>\n\nThis link should put you in contact with our advocate team that can better help here.\n\nAndy\n",
"comments": null
},
{
"author": "Jack Brickey",
"body": "Hi [@??????? ???????](/t5/user/viewprofilepage/user-id/5377828) ,\n\nI will flag for Atlassian input.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/I-can-t-register-an-account-because-of-the-geo-political/qaq-p/2550073 | [
"atl-rvw"
] |
{
"author": "J?nior Oliveira",
"title": "Ajusa",
"body": "N?o estou conseguindo abrir o trelo do meu trabalho\n"
} | [
{
"author": "Nic Brough -Adaptavist-",
"body": "Welcome to the Atlassian Community!\n\nYou will need to explain more. What work log? Where is it?\n\nWhat are the symptoms of \"can not open\"? No option to click? Click does nothing? Error message? Large Penguin sleeping on your keyboard so you can't use the computer?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/Ajusa/qaq-p/2537689 | null |
{
"author": "????",
"title": "Halp trial is not available.?Halp????????????????",
"body": "I'm currently trying out Jira Service Management on the Free plan. As for the question, I'm trying to connect to our company's Slack (Grid plan), but it's not working.\n\nSpecifically, I chose to connect to our workspace on the Jira chat settings page, but after setup, it also connected to another department's workspace. An error message appears in Slack saying, \"Your Halp trial is over. We have notified your Halp Admin,@contact name.\"\n\nIt appears that a trial of Halp was previously introduced in another department. Please let me know how I can avoid this. \n\n???Jira Service Management ?Free????????????\n\n???????????Slack?Grid?????????????????????????????????Jira????????????????????????????????????????????????????????????????????Slack??Your Halp trial is over. We have notified your Halp Admin,@????.???????????????????\n\n???????Halp?????????????????????????????????????????????????\n"
} | [
{
"author": "Ai Hirama",
"body": "?????????????????????????\n\n??????????Free????????????????????????????????????????????????????????????????????????????????????????????\n\n?????????????????????????????????????????????????????????????????????????????????????????\n",
"comments": [
{
"author": "????",
"body": "??????????????\n\n?????????????????????????????????????????????????\n\n???????????????\n"
}
]
},
{
"author": "Emel Do?rus?z",
"body": "Hello,\n\nSince Halp is not available anymore, you may want to use Actioner's ticketing solution instead:\n\n<https://actioner.com/solutions/help-desk>\n\n<https://actioner.com/support-use-cases>\n\n<https://actioner.com/app-directory/conversational-ticketing-with-zendesk-47>\n\nYou can connect it to your ticketing tools like Jira Service Management or Zendesk, or use the standalone version. And run all your ticketing and service management actions from Slack. Let me know if you need any help.\n\nThanks,\n\nEmel Dogrusoz\n\nCo-founder @ [Actioner](http://www.actioner.com)\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/Halp-trial-is-not-available-Halp%E3%81%AE%E3%83%88%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%AB%E3%81%8C%E5%88%A9%E7%94%A8%E3%81%A7%E3%81%8D%E3%81%BE%E3%81%9B%E3%82%93/qaq-p/2511335 | [
"cloud"
] |
{
"author": "Huaning_Gu",
"title": "Can not enter Atlassian",
"body": "After login in ATLASSIAN can not found projects button\n"
} | [
{
"author": "Tim Kopperud",
"body": "[@Huaning_Gu](/t5/user/viewprofilepage/user-id/5340033), welcome to the community.\n\nDo you have the oppertunity to attach an image of what you see after login (remember to obscure private information).\n\nTimK.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/Can-not-enter-Atlassian/qaq-p/2504813 | null |
{
"author": "Jhorelle Mendoza",
"title": "How am I not seeing the customize button on the right side pane on my Channel page?",
"body": "How am I not seeing the customize button on the right side pane on my Channel page?\n\nI'm only seeing announcement instead even though I have all the permissions needed as an admin. Please help!\n\n\n"
} | [
{
"author": "Tomislav Tobijas",
"body": "Hi [@Jhorelle Mendoza](/t5/user/viewprofilepage/user-id/5336533)\n\nBy the look of the screenshot, this would mean that the portal/project is configured in a way so that agents can add announcements to the portal. If you wish to configure the portal name, description or logo, you would need to be **project administrator** in order to do so by following the [instructions](https://support.atlassian.com/jira-service-management-cloud/docs/brand-your-portal/).\n\nOn the other hand, if you wish to configure the help center (what you mentioned there, to be able to see ***Configure*** button) you need to be **Jira administrator** . You can read more [here](https://support.atlassian.com/jira-service-management-cloud/docs/what-can-i-customize-about-the-help-center/).\n\nOne more thing - Halp is actually ex. product (now Assist) so this is not actually a 'help' group but I can see people often write general questions about other products.\n\nBest regards, \nTom\n",
"comments": [
{
"author": "Jhorelle Mendoza",
"body": "Thank you so much for your response. Regarding the Project administrator. I already have the permission for that one and I am still unable to customize and also I don't have the access for the look and feel. And advise?\n\n\n"
},
{
"author": "Tomislav Tobijas",
"body": "As a project administrator, can you navigate to **Project settings \\> Portal settings** ?\n\nRegarding **++help center++** ++look and feel++ , as stated above, you will need to be **Jira administrator** in order to view that option.\n"
},
{
"author": "Jhorelle Mendoza",
"body": "Hello , Yes I can navigate portal settings , But that's gonna be it.\n\nAs mentioned, I am an administrator already but I am unable to customize and have access with the look and feel.\n\nAre you saying that **Jira service management administrator** is different from **Jira administrator**?\n\n\n"
},
{
"author": "Tomislav Tobijas",
"body": "Jira administrator covers the administration part for all Jira products. Can you confirm that you can navigate to **Settings \\> Products** . If not, that would mean you are not Jira administrator and therefore cannot see options to configure the help center look \\& feel.\n"
},
{
"author": "Jhorelle Mendoza",
"body": "This is all I see in here. Does that mean that I am not a Jira Administrator? If so? How can I have access on that? Can we have multiple administrators on Jira? Please advise.\n\n\n"
},
{
"author": "Tomislav Tobijas",
"body": "Hi [@Jhorelle Mendoza](/t5/user/viewprofilepage/user-id/5336533)\n\nYes - by the look of the screenshot that would mean you are not in fact Jira administrator. Please contact your Jira administrator to request administrator rights (you can contact them via organization channels or via that form link you can see in the yellow panel once you open **Settings** menu).\n\nTo answer this question:\n> *Can we have multiple administrators on Jira?*\n\nYes - you can have unlimited number of Jira administrators, however, it is recommended to keep that number to a minimum.\n"
},
{
"author": "Jhorelle Mendoza",
"body": "[@Tomislav Tobijas](/t5/user/viewprofilepage/user-id/3848395) Hello Again!\n\nIs there a way that I can modify/edit this form? \nI want to add some information that tells my client to make sure to create a loom video recording and send us the link when submitting a ticket. Is there a way?\n\n\n"
},
{
"author": "Tomislav Tobijas",
"body": "Hello [@Jhorelle Mendoza](/t5/user/viewprofilepage/user-id/5336533) !\n\nFrom what you've described, I would suggest trying out [forms in Jira Service Management](https://support.atlassian.com/jira-service-management-cloud/docs/use-forms-in-jira-service-management/). Basically, you could create a form with only an informational part or with all fields the same as in the form from the screenshot. Once you create the form, you can connect it with request type(s) where in the example above, that would be request type **Technical support**.\n\nIn the example below, you can see that I've added *note panel* with some content and also *Description* field description with some content. You can choose any of the two.\n\n\n\nAdditionally, if you don't want to use forms, you can simply navigate to Project settings \\> Request types \\> \\*select request type and then just change the display description for some field (e.g., \"Description\" field).\n\n\n\nHope this helps!\n\nBest, \nTomislav\n"
},
{
"author": "Jhorelle Mendoza",
"body": "Thanks again for your help!\n"
}
]
}
] | https://community.atlassian.com/t5/Assist-questions/How-am-I-not-seeing-the-customize-button-on-the-right-side-pane/qaq-p/2500493 | [
"cloud"
] |
{
"author": "NOC TEAM",
"title": "projectdeliverytsat.atlassian.net",
"body": "we cant able to access this web site projectdeliverytsat.atlassian.net\n"
} | [
{
"author": "Matthias Gaiser _K15t_",
"body": "Hi [@NOC TEAM](/t5/user/viewprofilepage/user-id/5305832)\n\nwelcome to the Atlassian Community.\n\nYou've posted your request to a public site where volunteers and Atlassians try to help you. However, we can't help you in getting access to the site. I'd advice you to reach out to your Jira Administrator, to the [Atlassian Support](https://support.atlassian.com/contact/#/) or describe your problem in more detail, e.g. are you the admin of that instance?\n\nCheers, \nMatthias.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/projectdeliverytsat-atlassian-net/qaq-p/2465074 | [
"unknown-hosting-type"
] |
{
"author": "Saad Mehmood",
"title": "Recovery link never arrives",
"body": "Hi,\n\nI had updated the password but my password got lost. Now I am trying to reset password using recovery link, but I am not able to receive recovery link. \n\nMy email address is: (\\<deleted\\>) \ncan you please help me resolve this issue?\n"
} | [
{
"author": "Tomislav Tobijas",
"body": "Hi [@Saad Mehmood](/t5/user/viewprofilepage/user-id/5311068)\n\nI would suggest contacting [Atlassian Support](https://support.atlassian.com/) regarding this issue. Most likely it is the case that the email address is marked as \"Bounced\" and they would need to clear email/user from the bounce list.\n\nCheers, \nTom\n",
"comments": [
{
"author": "Saad Mehmood",
"body": "Hi [@Tomislav Tobijas](/t5/user/viewprofilepage/user-id/3848395) \n\nThanks for your response. I am able to receive email notification related to atlassian community portal. If my email is marked as \"Bounced\" then I should not be able to receive any email notification from any atlassian service, right?\n"
},
{
"author": "Tomislav Tobijas",
"body": "I cannot confirm or deny that. In my opinion/experience, these two are ++not++ 'connected' but I cannot be sure. Would be great if anyone would clarify that here, or if you'll raise a ticket to Atlassian Support [@Saad Mehmood](/t5/user/viewprofilepage/user-id/5311068), you could ask them that as well (if they provide the answer, please share it here).\n\nMy initial reply was based on my/our experience we had we our clients where that issue you mentioned was caused due to system bouncing email for that specific user email address. Again, we're only talking about trying to reset the password using the link from the User Directory in the Admin Hub.\n"
},
{
"author": "Saad Mehmood",
"body": "Thanks [@Tomislav Tobijas](/t5/user/viewprofilepage/user-id/3848395) , I have created a ticket on Atlassian Support. I\n"
},
{
"author": "Saad Mehmood",
"body": "My email was blocked on their end. So, they have removed my email from blocker list and now I am able to reset my password.\n"
},
{
"author": "Muhammad Humayun",
"body": "Same happen with my colleague's email. \nI'm receiving (from the same email domain) the recovery email but my colleague not. \nAnd the support is not actively taking request, cause I can not submit any queries. \nLooks like that email address has been blocked by Atlassian \nShall I mention the email here? \nMay I help through this platform?\n"
},
{
"author": "Naeemah Steward",
"body": "what is the recovery link eemail address so I can add this to the safe list\n"
},
{
"author": "Muhammad Humayun",
"body": "Here you [@Naeemah Steward](/t5/user/viewprofilepage/user-id/5485390) go with the email below\n\n```\[email protected]\n```\n"
}
]
}
] | https://community.atlassian.com/t5/Assist-questions/Recovery-link-never-arrives/qaq-p/2470968 | null |
{
"author": "Greg Moseley",
"title": "How is it possible that I have a account on this site that I never created",
"body": "I don't know what this site is or how it works I never had a account on it and I want it removed because it's a scam and a fraud and a fake account and I will report this account to the authorities\n"
} | [
{
"author": "Andy Heinzer",
"body": "Hi [@Greg Moseley](/t5/user/viewprofilepage/user-id/5296238)\n\nSorry to hear about this. Is it possible that you received a spam message from an atlassian.net site? If you did, then it's possible that account could have been created that references your email address. However when I did a lookup on your email address, I don't see any messages sent to it before 2023-08-18T20:54:02.000Z and I suspect this is the first message we send when you complete the account creation.\n\nWith some email providers such as gmail, it's possible that a spam message was sent to your account in a format such as [email protected] If that happens, the account [email protected] gets that message delivered to it. If you still have such a spam message that you received from us, please let me know the specific email address it was sent to, this way I can make sure that the abusive site has been shut-down.\n\nAlternatively, you can also forward any spam message received from an Atlassian site directly to [email protected] however that inbox is not able to respond directly to reports sent to it.\n\nAndy\n",
"comments": null
},
{
"author": "Jack Brickey",
"body": "Hi [@Greg Moseley](/t5/user/viewprofilepage/user-id/5296238) , this forum is a support forum for all Atlassian products. It is tied to your Atlassian account. To be clear it is not a scam. With that said I have flagged your post to have someone from Atlassian assist you. Cheers!\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/How-is-it-possible-that-I-have-a-account-on-this-site-that-I/qaq-p/2454253 | [
"atl-rvw"
] |
{
"author": "Leah Lenehan",
"title": "Jira ticket created from Slack workflow is poorly formatted",
"body": "I am using the the workflow that allows me to create a Jira ticket through Slack. However when this ticket is created , the text within the ticket is poorly formatted i.e. there is a lack of spaces between line entries on the form.\n\nFor example, I would fill out the lines on the form:\n\nType of request: Data analytics\n\nPriority level of request: Urgent\n\nHowever on the ticket description, these will appear as 'Data analyticsUrgent'\n\nIf I use emojis beside the questions in the form , these will also appear in the jira ticket i.e. '\n\n:white_circle:Data analytics :ok_hand:Urgent'\n\nPlease can you help me with this?\n"
} | [
{
"author": "Ian Winter",
"body": "Not an answer I'm afraid, but, I have the same issue. I've got a slack workflow posting via jira cloud plugin however no matter what formatting I try it just turns up as plain text! \n\nEven \\*bold\\* won't render.\n",
"comments": null
},
{
"author": "Kalpana Chinnappan",
"body": "Same here, bold text does not render. Text formatting in general does not work when adding a Jira issue description via the Jira Cloud Slack workflow step.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Assist-questions/Jira-ticket-created-from-Slack-workflow-is-poorly-formatted/qaq-p/2452301 | [
"cloud"
] |
{
"author": "Albert Feytons",
"title": "Is there a way to colour code the items in the matrix views",
"body": "It seems possible to set a field to determine the size of the items in the matrix views, it would be handy to also allow to colour code, based on an attribute with colours.\n"
} | [
{
"author": "Hermance NDounga",
"body": "Hello,\n\nIf you click on Fields, select a field and in the formatting options, check \"highlight row and cards\", your matrix bubbles will be color coded\n\n\n\nBest Regards, \nHermance \nProduct Manager @ Jira Product Discovery\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Is-there-a-way-to-colour-code-the-items-in-the-matrix-views/qaq-p/2813628 | [
"cloud",
"jira-product-discovery"
] |
{
"author": "sahil_dharamsi",
"title": "Looking for a Teams API for Jira Cloud",
"body": "It does not seem like there is an API in Jira Cloud to get ALL Teams. I am seeing this [link here](https://developer.atlassian.com/platform/teams/components/team-public-rest-api/), however it does not have an option to pull every single team. Wanted to see if adding this was on the roadmap for Atlassian?\n"
} | [
{
"author": "Hermance NDounga",
"body": "Hey Sahil,\n\nTeams aren't yet in Jira Product Discovery. I suggest to post your message in the dedicated developper forum : <https://community.developer.atlassian.com/>\n\nBest Regards, \nHermance \nProduct Manager @ Jira Product Discovery\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Looking-for-a-Teams-API-for-Jira-Cloud/qaq-p/2813328 | null |
{
"author": "etalase visuals",
"title": "i new user one week ago",
"body": "#### There are many things I want to ask, but why is there a notification every time I do something? {#toc-hId-373491152}\n"
} | [
{
"author": "Nikola Perisic",
"body": "Hello [@etalase visuals](/t5/user/viewprofilepage/user-id/5591708)\n\nThis is probably due to the default personal setting\n\n\n\nYou can always toggle these off.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/i-new-user-one-week-ago/qaq-p/2812269 | null |
{
"author": "Matt Allen",
"title": "Product and Engineering Ideas/Roadmap in JPD",
"body": "Myself (being the Product guy) and our Engineering lead want to have a more collaborative approach to roadmapping, primarily to get better insight into each other's work, conflicting priorities and dependencies.\n\nFor info, there are two product portfolio's to handle, within each portfolio are around 3-4 individual products.\n\nAny thoughts/suggestions on how others use JPD between engineering, product and across many multiple products?\n\nOur thinking is one single JPD project, then split into different sections by product/team.\n"
} | [
{
"author": "Jet",
"body": "Hi [@Matt Allen](/t5/user/viewprofilepage/user-id/5273145)\n\nYou could use a single JPD project that has multiple sections and views by product/team/craft.\n\nThis is also how we set it up for our Atlassian Growth team that works on multiple products.\n\n**1. Create a section for each product**\n\n****\n\n**2. Create views within each section**\n\nFor example, as a PM I want to create a high level (now, next, later) roadmap that I can share with my stakeholders. To do that I *create a new board*grouped by now, next later (and add a label to the ideas to filter by now/next/later)\n\n\n\nYou Engineering counterpart probably wants to see the roadmap on a timeline, so you could create a a timeline view for that within each section\n\n\n\n**3. Create an ideas backlog filtered by team to collaborate on prioritisation**\n\nI recommend creating an ideas backlog for each product, organised by feature/focus area, which allows you to prioritise your roadmap as a team (together with engineering)\n\nHere's an example of what that could look like\n\n* Create themed list view that shows ideas with prioritisation criteria/scoring. You can drag ideas around to list them in order of priority.\n\n\n\n* Once you have done the high level prioritisation with you eng/design counterparts, you can create a board view like this that's easier to read and allows you to easily see the top priorities and re-prioritise if needed. Again, you could do this for all your products/features.\n\n\n\nHope this helps! Happy to answer any other questions\n\nCheers,\n\nJet\n",
"comments": [
{
"author": "Tanguy Crusson",
"body": "Hi [@Matt Allen](/t5/user/viewprofilepage/user-id/5273145) : what [@Jet](/t5/user/viewprofilepage/user-id/397079) shared above ?\n\nAlso, you'll find some answers for this in the Jira Product Discovery handbook, in particular the [Prioritization](https://pm-dev.atlassian.net/wiki/external/ZWFjOTNkMThiZTY1NGY2MmFlODQ0MTAyNDM5MmE4YTg) and [Roadmapping](https://pm-dev.atlassian.net/wiki/external/OGY3MmI5ZTFhYWEwNDk4NjhhZTM3YzkwMTUyMjMwYzk) sections.\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Product-and-Engineering-Ideas-Roadmap-in-JPD/qaq-p/2811718 | [
"cloud",
"jira",
"jira-cloud"
] |
{
"author": "Josh",
"title": "Idea Template language is English instead of German",
"body": "Hi all,\n\nWhen signing up for Jira I initially set everything to English, however given that I am collaborating with other Germans, I ultimately decided to change the settings everywhere to German.\n\nNow in my Jira Product Discovery Project when creating a new idea, I used to see the four default templates in German but for some reason they are now being shown in English despite everything else working perfectly well in German.\n\nDoes anybody know how I can change the language of those templates to German or do I need to recreate them myself?\n\nOne thing to note: In the project selection my test project is correctly called \"Ideenfindungsprojekt\" in German. However, as you can see on the top left, once opened, it is now described as \"Discovery Project\".\n\n\n"
} | [
{
"author": "Tanguy Crusson",
"body": "Hi [@Josh](/t5/user/viewprofilepage/user-id/5591327) - we haven't added translations for the templates yet. Something on the todo list!\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Idea-Template-language-is-English-instead-of-German/qaq-p/2811149 | [
"deutsch",
"german"
] |
{
"author": "Simon Rimbert",
"title": "Jira Product Discovery WORKFLOW update button greyed out",
"body": "Hello everyone,\n\nDoes anybody know why the idea workflow \"Update workflow\" is greyed out for me and my other ADMINISTRATOR \\& CREATOR colleagues?\n\nThanks a million\n\nSimon\n\n\n"
} | [
{
"author": "Simon Rimbert",
"body": "Figured this out on my own. I can modify the things, and the Update button becomes clickable after I've made a change. So the default setting of the window is editing mode, in a way.\n\nI don't reckon that's intuitive haha.\n\nCheers\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Jira-Product-Discovery-WORKFLOW-update-button-greyed-out/qaq-p/2810724 | [
"status",
"workflow"
] |
{
"author": "Snorre Strand Asbj?rnsen",
"title": "Automation between discovery idea and delivery issue",
"body": "++Note 1: Our Issue hierarchy in delivery projects: (Bets (Custom)-\\>Initiative(Custom)-\\>Epics-\\>Story)++\n\n++Note 2: All initiatives exist under a singular project and the underlying epics are represented in multiple other projects.++\n\n++Note 3: Bets are represented as the overarching Issue where some Bets live in perpetuity and projects with a specific timeline (1 year, 2 years etc)++\n\nWe currently have our Initiatives in the delivery project (Jira Software Project) which are issues living from over a Quarter to a year.\n\nWe are exploring the option to move our Initiatives from delivery projects to our discovery project (Jira Discovery Project) for roadmaps, development of initiatives etc.\n\nWe want to create ideas in discovery project and than linking to an initiative (potentially have that initiatives automatically created in our Jira Software Project based on the idea from the Jira Discovery Project). Our reasoning for wanting it to be represented in both a JSP and JPD project is that from our governing team we want to use the discovery project (JPD) for upper management engagement with certain fields and development of our Initiatives with other fields.\n\n**What it boils down to is this:**\n\nIf we have corresponding idea in a JDP with an initiative in a JSP. Can we have 2 way automation between description or specific fields between the two? If so, how does one do that?\n"
} | [
{
"author": "Jet",
"body": "Hi [@Snorre Strand Asbj?rnsen](/t5/user/viewprofilepage/user-id/5473273)\n\nIt sounds like you are using Jira Plans to track initiatives? We are currently working on the Jira Plans x JPD integration <https://community.atlassian.com/t5/Jira-Product-Discovery-articles/Early-Access-Program-new-integration-with-Jira-Plans-ex-Advanced/ba-p/2743110>\n\nThis first version of the integration allows you to link initiatives to ideas, with some limitations, like only seeing the key issues and summary, no other fields just yet. We plan to improve the integration based on feedback (see community post), so soon you will be able to see specific fields between the two.\n\nIn the meantime, you can follow [@Bill Sheboy](/t5/user/viewprofilepage/user-id/1685313) advice (thanks [@Bill Sheboy](/t5/user/viewprofilepage/user-id/1685313)\n",
"comments": [
{
"author": "Jet",
"body": "We also have automation templates if you purely want to automate the global fields between your delivery tickets and JPD ideas\n\nHere's how you can do that <https://support.atlassian.com/jira-product-discovery/docs/manage-automation-templates/>\n"
}
]
},
{
"author": "Bill Sheboy",
"body": "Hi [@Snorre Strand Asbj?rnsen](/t5/user/viewprofilepage/user-id/5473273)\n\nShort answer: that is likely possible.\n\nFirst, Jira Product Discovery (JPD) projects have Idea issue types, and those have specialized link types to \"delivery tickets\". Those delivery tickets are normally Jira Software Project (JSP) issues, allowing visibility of delivery progress.\n\nNext, a project-scope rule can create issues in other projects (e.g., a rule in a JPD project creates an issue in a JSP project), but it cannot access them otherwise. To access or update issues in another project, a rule must have multiple-project or global scope. Your Jira Site Admin will need to manage such rules in the global admin functions.\n\nNext, and from my perspective, a JPD project is a special type of team-managed project (TMP), and so the field types and configurations are different. For many fields it is possible to use automation rules to move / copy data back and forth with a JSP project's issue. The \"trick\" is understanding the underlying structure of the JPD Idea fields so the data can be moved. One exception is the Calculated Field type in JPD: those are set based on values in Ideas and cannot be set by rules.\n\nFinally, please consider that rules could have errors or fail to run when expected (e.g., such as during an Atlassian outage). Please consider creating a test, free Jira site (or use a sandbox) to fully exercise your configuration and rules before using them in production. And, consider how to \"catch up\" if rules do not run when expected.\n\nKind regards, \nBill\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Automation-between-discovery-idea-and-delivery-issue/qaq-p/2810706 | [
"cloud",
"jira",
"jira-cloud",
"jira-product-discovery",
"link"
] |
{
"author": "Rebecca Graf",
"title": "Show full content of labels in a view",
"body": "Hey all,\n\nI am currently using a workaround as long as there is no parent - child relation available in JPD.\n\nI create a custom field to reflect a target (Key Result) and label the contributing ideas accordingly.\n\nBut, when setting up the corresponding view, the field, which is used as column header, is cut.\n\nAny chance to change the configuration of a view to showing the full content of labels etc.?\n\nBest\n\nRebecca\n"
} | [
{
"author": "Tanguy Crusson",
"body": "Hi Rebecca, I assume you mean for the board view, for each board column? That is not possible currently. Could you please send a screenshot to [email protected] so we can see how bad this is for you? Thanks!\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Show-full-content-of-labels-in-a-view/qaq-p/2809558 | [
"fields",
"view"
] |
{
"author": "Rebecca Graf",
"title": "Show comments in views",
"body": "Hey all,\n\nis there a way to display the content of the lastest comment in a view? When adding comment as field to a view, only the number of comments is shown, but not the content.\n\nI would prefer to not create a new customer field comment, as I'd like to keep the full history of comments in the ticket itself (and don't want to overwrite it again and again using a custom field for latest updates).\n\nAny ideas?\n\nBest regards\n\nRebecca\n"
} | [
{
"author": "Tanguy Crusson",
"body": "Hi Rebecca, that is not possible currently - the comment field just shows the number of comments (and if there are new ones you haven't seen yet).\n\nWhat do you put in comments? Status updates?\n",
"comments": [
{
"author": "Rebecca Graf",
"body": "[@Tanguy Crusson](/t5/user/viewprofilepage/user-id/502312) yes, we wanted to use it for status updates. Today, we are doing this with a dedicated field but that means, that we always have to overwrite the last entry. We'd prefer to keep the history of those status updates available in the ticket (without switching to the history).\n"
},
{
"author": "Tanguy Crusson",
"body": "OK I see, thank you.\n\nI can't really see another option than the dedicated field today. There are a few things we're exploring for later, but it's too early to share.\n"
},
{
"author": "Rebecca Graf",
"body": "I will stay tuned ;-) Thanks for your fast response anyways.\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Show-comments-in-views/qaq-p/2809283 | [
"comments",
"field",
"list-view"
] |
{
"author": "mm_ambrogi",
"title": "Attachment number error limit",
"body": "Hello,\n\nin a specific board users are experiencing a weird error: they seem to be not able to load more than 1 attachment at time.\n\non yesterday the limit seemed to be 6... today things got worse and lowered to just 1 upload at time...\n\nthey are \"service desk team\" members. maybe it is related to that?\n"
} | [
{
"author": "Tanguy Crusson",
"body": "Hi [@mm_ambrogi](/t5/user/viewprofilepage/user-id/4788194) , would you mind doing a screen recording (e.g. Loom) and sending it to [email protected]? So I can see what's going on.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Attachment-number-error-limit/qaq-p/2809186 | null |
{
"author": "Claire Holmes",
"title": "Is it possible to auto update Jira PD status when Jira software status reaches a certain point?",
"body": "Looking to link the workflow status between Jira PD ideas and Jira software status, either for individual stories or EPICs. So that when a story in Jira Software has the status \"In testing\" for example, the same is reflected in Jira PD\n"
} | [
{
"author": "Mart Postma",
"body": "Hi Claire, \n\nI believe that this is what you are looking for: \n \n\nNot sure if this is still the easiest way to do so, but it's been working great for us.\n\nPlease note that we have copied this automation rule for all status mappings that we want from Jira to JPD. I guess you could also create a single automation rule which triggers on a status transition and then branches through different IF-statements based on the mapping you configure.\n\nHope it's of help to you!\n",
"comments": [
{
"author": "Adrian_Lester",
"body": "Adding a comment at the end of an automation is a really nice touch, I'd never thought of that. Thanks for sharing this!\n"
},
{
"author": "Tanguy Crusson",
"body": "[@Claire Holmes](/t5/user/viewprofilepage/user-id/5458943) from the [FAQ](https://community.atlassian.com/t5/Jira-Product-Discovery-articles/Frequently-asked-questions-about-the-product-how-do-I/ba-p/2002378), I think this should be relevant:\n\n**How do I automatically change an idea when its delivery issues are done?**\n\nYou can use Project Automation to automatically change an idea (e.g., change a field value, transition to a status) when its delivery epics/issues are done.\n\n[Demo: project automation in Jira Product Discovery](https://community.atlassian.com/t5/Jira-Product-Discovery-articles/Product-demo-Automation-for-Delivery/ba-p/2057152)\n"
},
{
"author": "Claire Holmes",
"body": "Thanks I will try this out!\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Is-it-possible-to-auto-update-Jira-PD-status-when-Jira-software/qaq-p/2808953 | null |
{
"author": "Levi Palmer",
"title": "Delivery Tickets in API Response",
"body": "I'm trying to analyze the size of our JPD ideas in terms of story points broken down by team using the API. When I call the API for a JPD Idea, the fields for Delivery Status and Delivery progress come back as null or not at all. This makes it impossible to link out to our delivery tickets in subsequent.\n\nIs there not a way to pull back the delivery tickets using the API? Or is there another way to do this? When I download a CSV of a JPD view that includes the delivery fields, the csv only includes a count of the tickets by status, but not the keys/ids of the related tickets.\n"
} | [
{
"author": "Tanguy Crusson",
"body": "Hi Levi, to get the list of delivery tickets, you need to get the list of linked issues (that's how it's stored). They are linked using a specific issue link type.\n",
"comments": [
{
"author": "Levi Palmer",
"body": "Thanks [@Tanguy Crusson](/t5/user/viewprofilepage/user-id/502312) that works! After playing with the API results, I was able to pull them by looking for linked issues with the link type \"Polaris issue link.\" Not sure what that means exactly, but it seems to be the unique link type for JPD \\<\\> Jira Delivery tickets, since I wanted to make sure I only use delivery tickets in my code and not pull in other kinds of linked tickets.\n"
},
{
"author": "Tanguy Crusson",
"body": "Awesome. Yes that's the name of the link type (very obscure - back from when JPD was called \"Polaris\" - we need to clean that up at some point)\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Delivery-Tickets-in-API-Response/qaq-p/2808551 | [
"api"
] |
{
"author": "Rebecca Graf",
"title": "Automation to align status between JPD and Jira",
"body": "Hey all,\n\nI'd like to create an automation, which checks if a status of delivery tickets in Jira is aligned with the JPD ticket (only in a certain JIRA project).\n\nThe challenge: Our workflow in Jira is different from JPD, meaning that I need a mapping like\n\nif status in JPD is A please set status of linked issue in Jira project X to B\n\nif status in JPD is C please set status of linked issue in Jira project X to D\n\nand so on...\n\nThe automation should run regularly without being triggered by a status change. How do I set it up properly?\n\nThanks for your help :-)\n\nBest\n\nRebecca\n"
} | [
{
"author": "Nick H",
"body": "Hi [@Rebecca Graf](/t5/user/viewprofilepage/user-id/3020706) ,\n\nAn automation like that one below should work for the use case - which uses multiple IF / ELSE components to map each JPD status to Jira status:\n\n\n\n1) WHEN: Issue transitioned\n\n2) IF / ELSE\n\n* Status = \"JPD status A\"\n\n3) Branch rule / related issues\n\n* Type of related issues = Linked issues\n* Link types = is implemented by\n\n4) THEN: Transition the issue\n\n* Destination status = \"Jira project X, status B\"\n\n5) IF / ELSE\n\n* Status = \"JPD status C\"\n\n6) Branch rule / related issues\n\n* Type of related issues = Linked issues\n* Link types = is implemented by\n\n7) THEN: Transition the issue\n\n* Destination status = \"Jira project X, status D\"\n\n\\^ And so on depending on how many JPD idea statuses you want to map to Jira issues statuses.\n\nSo each *IF / ELSE* component should be tied to the top *WHEN: Issue transitioned* component, and each *IF / ELSE* component branches after to look for the delivery ticket.\n\nIf an *IF / ELSE* component does not match (Ex: steps 2-4 above), the automation will then check the following (Ex: steps 5-7 above), and so on, until a there is a match - then stop reviewing the following *IF / ELSE* components after the match.\n\nHope that helps! Let us know if you have any questions.\n",
"comments": [
{
"author": "Rebecca Graf",
"body": "Hi [@Nick H](/t5/user/viewprofilepage/user-id/2540930) , thank you so much for your explanation, that definitely helps.\n\nJust one more question: Would it be possible to run this automation without a specific trigger (step 1) but on a daily basis? There can be usecases, where we'll have a mismatch between the two tools and I'd like to cover them as well (without waiting for a transition in JPD).\n\nHaven't done anything like this before and didn't find an explanation how to run an automation regularly without trigger.\n\nBest regards\n\nRebecca\n"
},
{
"author": "Nick H",
"body": "Hi [@Rebecca Graf](/t5/user/viewprofilepage/user-id/3020706) ,\n\nYes I believe that should be possible with something like this is as the main trigger instead:\n\n\n\n\\^ Where the automation is scheduled to run daily (or depending on your use-case).\n\nNotice I also added a [JQL](https://support.atlassian.com/jira-service-management-cloud/docs/use-advanced-search-with-jira-query-language-jql/) to specify that this automation only executes for my JPD project / ideas - which will help narrow down the number of times this actual runs.\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Automation-to-align-status-between-JPD-and-Jira/qaq-p/2808278 | [
"automation",
"linked-issue",
"status"
] |
{
"author": "Rebecca Graf",
"title": "Create delivery tickets by automation",
"body": "Hey all,\n\nI'd like to create a delivery automatically once a JPD ticket reached a certain status and has dedicated field values.\n\nI already tried to achieve that with a global rule, but the link was not set:\n\nWhen issue transitioned from to\n\nAnd: bucket equals initiative\n\nAnd: No linked issues match Types: is implemented by, implements Match project = INIT (to ensure that there wasn't already a delivery ticket created)\n\nThen: Create a new Initiative in Initiatives\n\nAnd: Link issue to trigger issue\n\nThe error message I got is:\n\nUnknown fields set during create, they may be unavailable for the project/type. Check your custom field configuration. Fields ignored - \nLinked Issues (issuelinks) \nBoth projects (Jira and JPD) us the implements / is implemented by already to link delivery tickets, but so farthis is only set manually. \nAny ideas what needs to be changed to make that rule work? \nYour help is highly appreciated :-) \nBest \nRebecca\n"
} | [
{
"author": "Nick H",
"body": "Hi [@Rebecca Graf](/t5/user/viewprofilepage/user-id/3020706) ,\n\nI think an automation like the one below should work for your use case:\n\n\n\n1) WHEN: Issue Transitioned to (select your workflow's / idea's status)\n\n2) AND IF: Issue fields condition (select your Bucket field = Initiative)\n\n3) AND IF: Related issues condition\n\n* Related issues = Linked issues\n* Link types = implements, is Implemented by\n* Condition = Are not present\n\n4) THEN: Create issue (select your Jira project / issue type)\n\n(If you were to copy any of the JPD idea's fields to this Jira issue's fields, copy from **Current issue**)\n\n5) AND THEN: Link issues\n\n* 6) Link issues: is Implemented by - Most recently created issue\n\nI tested with the automation above after those fields / conditions were met, and it worked as expected.\n\nBut the error you shared sounds similar to what other customers have run into where the A4J (Automation for Jira) user has not been granted JPD permission.\n\nTo have this corrected, you'll want to open a ticket with JPD support so they can grant your A4J user with JPD permission. The A4J user cannot be granted permission from your end.\n\nYou can open a ticket within JPD support [HERE](https://support.atlassian.com/contact/), or under the *Give Feedback* tab \\>\\> *Get help from the support team.*\n\nA workaround for the time being is adjusting the [Actor](https://support.atlassian.com/cloud-automation/docs/what-is-a-rule-actor/) of the automation to a user that has JPD permission to see if results vary and/or are successful.\n",
"comments": [
{
"author": "Rebecca Graf",
"body": "Great [@Nick H](/t5/user/viewprofilepage/user-id/2540930) , that worked. Step 5 was a bit different in my configuration and thus failed before. With your help I was able to fix it - thank you so much!\n\nBut: The link is only visible in Jira and not in JPD (neither as delivery ticket nor as any other linked issue). Any idea why?\n"
}
]
},
{
"author": "Rebecca Graf",
"body": "[@Nick H](/t5/user/viewprofilepage/user-id/2540930) not sure if you have seen my last comment, but I am still struggeling with one little thing:\n\nThe link is only visible in Jira and not in JPD (neither as delivery ticket nor as any other linked issue).\n\nAny idea why?\n",
"comments": [
{
"author": "Nick H",
"body": "Hi [@Rebecca Graf](/t5/user/viewprofilepage/user-id/3020706) ,\n\nPlease share a screenshot of your configured automation. The JPD idea should link to the Jira delivery as \"Implements,\" and the delivery should then be found in the idea's Delivery tab.\n\nHere are screenshots of the same automation previously shared, along with a test run just before this response:\n\n\n\nFeel free to also open a JPD support ticket [HERE](https://support.atlassian.com/contact/#/), or within JPD under the *Give Feedback* tab \\>\\> *Get help from the support team*.\n"
},
{
"author": "Rebecca Graf",
"body": "Thanks once again for your help [@Nick H](/t5/user/viewprofilepage/user-id/2540930) ! I just mixed up is implemented by and implements, after changing the config it works now!\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Create-delivery-tickets-by-automation/qaq-p/2808269 | [
"automation",
"delivery",
"issue-link",
"jira"
] |
{
"author": "Wendy Grapentine",
"title": "Help! I accidentally deleted the Categories - how do I get them back? **Update Resolved**",
"body": "Help! I accidentally deleted my Categories field - how do I get them back?\n"
} | [
{
"author": "Tanguy Crusson",
"body": "Hi [@Wendy Grapentine](/t5/user/viewprofilepage/user-id/5294147) , unfortunately you can't get it back (that's why we show that big scary warning asking you to type the field name before confirming). You'll have to re-create it...\n\nIf you look in the \"history\" tab for each idea, you can find which value it had for that field.\n",
"comments": [
{
"author": "Wendy Grapentine",
"body": "Thank you\n"
}
]
},
{
"author": "Dirk Lachowski",
"body": "Isn't that just a single select tag field?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Help-I-accidentally-deleted-the-Categories-how-do-I-get-them/qaq-p/2807433 | null |
{
"author": "Wendy Grapentine",
"title": "Is there a way to display Jira Product Discovery in Confluence? **Update - Resolved**",
"body": "Hello, \n\nI am using Jira Product Discovery to organize and display where each of my customer's are at with the implementation of a new feature/product. \n\nEach customer is an Jira Product Discovery Issue. \nColumns are: Initial Call, SOW sent, SOW received, Amendment sent, Amendment received, Environments Set Up, Feature Implementation, Testing, Deployment, Maintenance. \nThen I have Categories set up as Phases: Request Phase, Initial Call Phase, SOW and Amendment Phase, Environment Phase, Implementation Phase, Testing Phase etc. (I know it is redundant to the columns, I am just trying to organize a bit differently for easy visuals) \n\n<br />\n\nI am using Jira Product Discovery because it has the ability to move around rows easily to show priority etc. \n\nWe have set up a Confluence Space just for this project as a \"one stop\" place for all information on this project. I would like to display the Jira Product Discovery page inside of a Confluence Page so that everyone will be able to see where everything is at quickly. \n\nIs this possible? How would I go about doing that?\n"
} | [
{
"author": "Nick H",
"body": "Hi [@Wendy Grapentine](/t5/user/viewprofilepage/user-id/5294147) ,\n\nJPD and Confluence don't necessarily have a prebuilt integration, but we see some customers pasting a view's link into a Confluence page to populate a preview!\n\nFor more on this in general: [Improvements to Atlassian links](https://community.atlassian.com/t5/Jira-Product-Discovery-articles/Improvements-to-Atlassian-links/ba-p/2598564)\n\nChanges cannot be made in Confluence to reflect back in JPD, but any changes completed to the view within JPD should reflect in Confluence:\n\n\n",
"comments": null
},
{
"author": "Amanda Barber",
"body": "If you drop the link for your view into Confluence, the view will be displayed. I recorded a quick Loom to show it here: <https://www.loom.com/share/6abad4973a5a4a32a56c3cb2e252c16e>\n",
"comments": [
{
"author": "Wendy Grapentine",
"body": "Thank you\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Is-there-a-way-to-display-Jira-Product-Discovery-in-Confluence/qaq-p/2807348 | [
"confluence",
"jira-product-discovery"
] |
{
"author": "Seth Mason",
"title": "Is \"About this view\" supposed to update?",
"body": "When looking at a View, under the name of the View, there is a link \"About this View\". If you edit it via a popout box, is the text \"About this view\" supposed to update to reflect what you put in the box? Would be nice if you could put something here that describes what is here without requiring a click.\n"
} | [
{
"author": "Walter Buggenhout",
"body": "Hi [@Seth Mason](/t5/user/viewprofilepage/user-id/5404484),\n\nNo. The *about this view* is a link to the dialog that pops up on the right hand side explaining what it is about.\n\nYou have probably noticed that you can put quite an extensive description / manual in that box, as a view can contain a lot of information that you might want to explain to your users. As it can become quite elaborate, plenty of space has been provided rather than having a short popup or something.\n\nThe *about this view* text is about the only thing that is not customisable.\n\nHope this helps!\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Is-quot-About-this-view-quot-supposed-to-update/qaq-p/2805521 | null |
{
"author": "Andrew Klein",
"title": "Error creating a new project using \"Product Discovery\" Template",
"body": "When creating a new project using the Product discovery template, I get the non-descript error: \"We had some technical trouble\". How can I figure out the issue without more information?\n"
} | [
{
"author": "John Funk",
"body": "Hi Andrew - Welcome to the Atlassian Community!\n\nYou do have a license for the Jira Project Discovery product - correct?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Error-creating-a-new-project-using-quot-Product-Discovery-quot/qaq-p/2805340 | [
"cloud",
"jira",
"jira-cloud"
] |
{
"author": "Omar Bennani",
"title": "Global Fields in Calculations",
"body": "Hi! I'm noticing when I tried to use a global field that I added weights to in a write your own calculation I got a validation:\n\nField \"\" is not supported yet\n\nanyone else figured out any work arounds? Our when will this get built/fixed?\n\nThanks!\n"
} | [
{
"author": "Hermance NDounga",
"body": "Hello Omar,\n\nThank you for raising this bug, we are investaging it.\n\nCheers,\n\nHermance\n",
"comments": null
},
{
"author": "Amina Bouabdallah",
"body": "hi! any chance you might share a screenshot to the problem you faced? is it still happening?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Global-Fields-in-Calculations/qaq-p/2804753 | null |
{
"author": "Mark Sadegursky",
"title": "Support for 'Select List (cascading)' and 'Fix Versions' in Jira Product Discover",
"body": "Are there plans to support 'Select List (cascading)' custom field types as Global Fields?\n\nAre there plans to include 'releases' so that the Fix Versions field can be included on the JPD issues?\n"
} | [
{
"author": "Tanguy Crusson",
"body": "Hi Mark, we don't currently have those on the roadmap. What are you trying to do?\n",
"comments": [
{
"author": "Mark Sadegursky",
"body": "We have global fields that we would like to add to JPD that track certain values that would be tied to the delivery tickets, being able to leverage those custom fields that have been built is critical to the success of using JPD. This also goes into roadmap reporting and being able to create the necessary pages automatically for presentations using the board views.\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Support-for-Select-List-cascading-and-Fix-Versions-in-Jira/qaq-p/2804685 | null |
{
"author": "Mark Colonnese",
"title": "Dependency tracking - Any advice on how best to manage in JPD",
"body": "Does anyone have any advice as to how best, record, report and track dependencies in JPD. Thanks in advance for any advice.\n"
} | [
{
"author": "Amina Bouabdallah",
"body": "Hi Mark! when you say \"dependency\" do you mean dependency on teams (team X needs work from team y), or dependency on idea (for Idea X to ship, we first need to ship Idea A).\n\nFor the latter you can leverage issue links. From an idea's issue view, you can link to another idea in the project. Then once on an idea, you can read what dependent ideas a given idea has. You have multiple issue link types, to denote how 2 ideas are linked.\n\nHope this helps!\n\nAmina\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Dependency-tracking-Any-advice-on-how-best-to-manage-in-JPD/qaq-p/2804142 | null |
{
"author": "?krlantov? Nikola",
"title": "Can't find the Inserter / Extender Duplicates Filter option",
"body": "Hello,\n\nI have the same problem that Amit describes here: [Solved: Can't find the Inserter / Extender Duplicates Filt... (atlassian.com)](https://community.atlassian.com/t5/Confluence-questions/Can-t-find-the-Inserter-Extender-Duplicates-Filter-option/qaq-p/2069750)\n\nI am trying to set up a structure in cloud Jira where I only use these rules:\n\n\n\nBut I get some tasks duplicated. I see them both under the epic and on their own: \n\n\nKathryn replied to Amit's post that we can write to [email protected] and that maybe there is a JQL workaround, but this email is no longer working, so I am trying to ask for help here. Could you help me with JQL, please? \n\nThank you in advance.\n\nNikola\n"
} | [
{
"author": "Stepan Kholodov _Tempo_",
"body": "Hello [@?krlantov? Nikola](/t5/user/viewprofilepage/user-id/5585020) \n\nThe goal with the JQL approach is to exclude issues from the top level of the structure, that will later be duplicated by an Extend generator. So you can try to add to your current JQL query of the Insert generator a condition like this: ... *AND parent is empty* \nThis way the inserter will not add issues of Epics even if they match other conditions; but these issues will be added by the extender if their parent Epic is present in the structure. \n\nI hope this helps. If you need further assistance or if you have other questions about Structure - please reach out to us directly at our [support portal](https://tempo-io.atlassian.net/servicedesk/customer/portal/6/group/1051). The email address you mentioned indeed no longer in use, so please use the link. \n\nBest regards, \nStepan \nTempo (the Structure app vendor)\n",
"comments": [
{
"author": "?krlantov? Nikola",
"body": "Hello [@Stepan Kholodov _Tempo_](/t5/user/viewprofilepage/user-id/5205346) ,\n\nthank you very much, that makes perfect sense, but unfortunately this condition does not work for me, because in my case the parent is never empty. Epic is linked to an initiative owned by someone else and I don't need to see it in my structure. So I can't use *\"and parent is empty\"*.\n\nIs there another way to not display duplicates using JQL? I really appreciate your help.\n\nBest regards\n\nNikola\n"
}
]
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Can-t-find-the-Inserter-Extender-Duplicates-Filter-option/qaq-p/2804054 | null |
{
"author": "Rebecca Graf",
"title": "Group by more than one field",
"body": "We use JPD to create a roadmap on initiative level across teams by using a timeline view grouped by \"team\". Usually, more than one team needs to contribute to an initiative so the initiative shows up in all matching swimlanes (=teams).\n\nWe'd now like to differentiate between \"driving team\" (=mainly responsible for making it happen) and \"supporting team\" (=required for getting it done, but rather with side tasks). The idea is to have your most important topics on top of your swimlane, following by those you need to support.\n\nIs there any way to create swimlanes based on two fields? We definitely want to keep one timeline view across all teams and not switch between different views.\n\nAny idea on how to solve that?\n\nBest, Rebecca\n"
} | [
{
"author": "Amina Bouabdallah",
"body": "hey there! we don't have the ability to group by X then Y yet. I can add this request to our insights for future prioritization!\n",
"comments": null
}
] | https://community.atlassian.com/t5/Jira-Product-Discovery-questions/Group-by-more-than-one-field/qaq-p/2803907 | [
"field",
"group",
"swimlane",
"timeline"
] |
{
"author": "Bob Dobson",
"title": "Is it possible to \"prepend\" the Entity name (and perhaps a colon delimiter) to the message text?",
"body": "Is it possible in Opsgenie to to \"prepend\" the Entity name (and perhaps a colon delimiter) to the message text? That is, without having to modify the vehicle(s) we are using to convey the alert to Opsgenie? We find the lack of the Entity in the default alert view to be at best ambiguous and at worst confusing. Granted, you can always open the alert to get this information, but ir would be tremndously helpful to not have to do this. Thanks.\n"
} | [
{
"author": "Jennifer Leitch",
"body": "I'm not sure if this would work for you, but for us, we use various alert emails to OpsGenie to send the alert. For the integration, I edit the Alert Rule to prepend the system name, and then have then have the dynamic properties subject. This tells us what system it is (very helpful for the middle of the night alerts!) \n\n\n",
"comments": [
{
"author": "Bob Dobson",
"body": "I ended up finding something almost identical under the integration we had set up. Thanks! Great minds really do think along the same lines.\n"
}
]
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Is-it-possible-to-quot-prepend-quot-the-Entity-name-and-perhaps/qaq-p/2794858 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "Cameron McAuley",
"title": "Parsing ResultsJSON within SumoLogic payloads",
"body": "The SumoLogic integration allows you to add the \\`ResultsJson\\` from a given Sumologic payload. This can be added to the description of your alert as follows {{ ResultsJson }}\n\nHowever, it can look quite messy. The format of this ResultsJson is a full JSON array that can contain multiple JSON objects within it (each JSON object will have the same fields).\n\nFor example, what if I wanted to extract \\`env\\` out of this ResultsJson:\n\n\\[{\"Timeslice\":1724426340000,\"avg\":12.2584685,\"env\":\"stage-env\"},{\"Timeslice\":1234567894666,\"avg\":12.2584685,\"env\":\"prod-env\"},{\"Timeslice\":3566463246466,\"avg\":12.2584685,\"env\":\"stage-env\"}\\]\n\nI have tried {{ ResultsJson.env }} but it did not work. I then tried something like this {{ ResultsJson.\\[0\\].env }} with the expectation that it might display just the first result within my SumoLogic payload. But it seems that \\`\\[\\]\\` aren't accepted\n\nI have read articles and answers here on using {{ _payload }}. It is not clear to me if this works in the case of having a full JSON array within that a _payload field. \n"
} | [
{
"author": "Shashwat Khare",
"body": "Hello [@Cameron McAuley](/t5/user/viewprofilepage/user-id/1913734) , \n\nThis is Shashwat from Opsgenie support and here to help! :) \n\nYes, you can use the _payload operator to bring in the entire JSON payload into the Opsgenie alert description field. \n\nFor extracting exact variable values like env out of the above JSON, we would recommend using one of the string operators from the below help document from substringBetween, substring(int from), substring(int from, int to) OR extract(regular expression): \n<https://support.atlassian.com/opsgenie/docs/string-processing-methods-in-opsgenie-integrations/> \n\nBest, \nShashwat\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Parsing-ResultsJSON-within-SumoLogic-payloads/qaq-p/2793425 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "Jacob Clark",
"title": "URLs are being truncated in Alert previews in Slack",
"body": "Slack message previews of Alerts are truncating URLs that are included. The full URL is included in the alert message in the integration but it is broken in Slack. \n"
} | [
{
"author": "Shashwat Khare",
"body": "Hello [@Jacob Clark](/t5/user/viewprofilepage/user-id/5575246) , \n\nThis is Shashwat from Opsgenie support and here to help! :) \n\nCould you please help confirm if you're passing these URLs in the Alert message or description field in the Opsgenie alert? \n\nThis is because the alert message is limited up to 130 characters whereas the alert description field has a big limit of up to 15000 characters: \n\n \n\n<br />\n\nBest, \nShashwat\n",
"comments": [
{
"author": "Jacob Clark",
"body": "Thank you, Shashwat, this addresses my concern!\n"
},
{
"author": "Shashwat Khare",
"body": "My pleasure, Jacob, glad it helped! :)\n"
}
]
}
] | https://community.atlassian.com/t5/Opsgenie-questions/URLs-are-being-truncated-in-Alert-previews-in-Slack/qaq-p/2793258 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "Alex John",
"title": "Can we silence a normal alert if it triggers an Incident Alert?",
"body": "Hello - In our set up we say if an alert comes in through an integration, it has priority P1, and tag of prod/production etc., then create an incident (alert). When this happens the on-call person now has two separate alerts, one for the incoming alert and one incident alert. Is it possible to either silence or ack the original alert when the incident alert is ack'd?\n"
} | [
{
"author": "Wei Wung",
"body": "Hi [@Alex John](/t5/user/viewprofilepage/user-id/5081011)\n\nThank you for reaching out! Currently, the initial incoming alert gets associated with the incident that is being created. The incident generates a responder alert for each of the incident responders. If the incident was manually created, an additional responder alert is generated for the person that created the incident.\n\nUnfortunately, at this time, when the incident generated responder alert is acknowledged, it doesn't ack the incoming (associated) alert(s). This is probably because sometimes there can be multiple incident responders and if so, the incident will generate multiple responder alerts to separately notify these responders, each following their own escalation paths.\n\nWe have a similar feature request: ([OPSGENIE-28](https://jira.atlassian.com/browse/OPSGENIE-28)) Auto-close associated alerts when an incident is closed and acknowledge when incident is resolved\n\nFrom within the incident, under \"**Associated Alerts** \", when you click on \"**See alerts** \", you have the option to selectively **Close** associated alerts or \"Close all\" of them, although there isn't an \"Ack\" option. \n\nHope the above helps!\n\nBest Regards,\n\nWei\n",
"comments": [
{
"author": "Alex John",
"body": "Thank you for the information, Wei!\n"
}
]
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Can-we-silence-a-normal-alert-if-it-triggers-an-Incident-Alert/qaq-p/2792017 | null |
{
"author": "gnaneswar seshu",
"title": "How to use opsgenie api to get alert list between a datetime range",
"body": "Hi,\n\nI was trying to get alerts between a period of time, when I used the query as \"\" \nquery\": \"createdAt\\>=20-08-2024 and createdAt\\<=22-08-2024\" it is giving me some list of alerts but when I was trying the query including time within it for example \"\" \nquery\": \"createdAt\\>=20-08-2024'T'10:30:00z and createdAt\\<=22-08-2024'T'18:30:00z I am not getting any alerts while I can see alerts from ui or app \nhere is the sample url which is working: \n\"[https://api.opsgenie.com/v2/alerts?limit=20\\&sort=createdAt\\&offset=20\\&order=desc\\&query=status+open+OR+closed+NOT+tag+QA+createdAt%3E31-07-2024+AND+createdAt%3C31-08-2024](https://api.opsgenie.com/v2/alerts?limit=20&sort=createdAt&offset=20&order=desc&query=status+open+OR+closed+NOT+tag+QA+createdAt%3E31-07-2024+AND+createdAt%3C31-08-2024)\", \nSample url which is not working \n\"[https://api.opsgenie.com/v2/alerts?limit=20\\&sort=createdAt\\&offset=20\\&order=desc\\&query=status+open+OR+closed+NOT+tag+QA+createdAt%3E31-07-2024'T'10:30:00z+AND+createdAt%3C31-08-2024'T'18:30:00z](https://api.opsgenie.com/v2/alerts?limit=20&sort=createdAt&offset=20&order=desc&query=status+open+OR+closed+NOT+tag+QA+createdAt%3E31-07-2024'T'10:30:00z+AND+createdAt%3C31-08-2024'T'18:30:00z)\", \nThanks in advance\n"
} | [
{
"author": "Wei Wung",
"body": "Hi [@gnaneswar seshu](/t5/user/viewprofilepage/user-id/5574205)\n\nThank you for reaching out!\n\nPlease try using this format:\n\n```\ncreatedAt>=\"20-08-2024T10:30:00Z\" and createdAt<=\"22-08-2024T18:30:00Z\"\n```\n\nThe workaround in the following ticket addressed this issue as well:\n\n<https://jira.atlassian.com/browse/OPSGENIE-1588> Incident API and Alert API using the \"createdAt\" condition display incorrect usage error\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/How-to-use-opsgenie-api-to-get-alert-list-between-a-datetime/qaq-p/2791746 | null |
{
"author": "Sanjana Nellore",
"title": "How can I create an alert in Opsgenie if the count of my emails exceeds 100 within 30 minutes?",
"body": "How can I create an alert in Opsgenie, after integrating with email, if the count of my emails exceeds 100 within 30 minutes? \nHow to Create a new policy and set the condition to trigger when the count of emails reaches 100 within 30 minutes.?\n"
} | [
{
"author": "Muhammad Zeeshan",
"body": "Hey [@Sanjana Nellore](/t5/user/viewprofilepage/user-id/5574203)\n\nIt may not be outright possible in Opsgenie to create an alert when you have 100 Emails received in 30 minutes, which is why we have a Feature suggestion ticket for such functionality here: <https://jira.atlassian.com/browse/OPSGENIE-471> that you can track and vote on.\n\nHowever, as a workaround you can make use of [Notification policies](https://support.atlassian.com/opsgenie/docs/create-and-manage-team-alert-policies/#Notification-Policy) which can delay / suppress notifications until a certain deduplication count is met in a certain period for an alert but will not notify initially when the alert is created.\n\nIn order to make use of that you will need to make sure that all those alerts created via the Email integration are deduplicated so that they can be counted together as a single alert and their deduplication count used to trigger the notification policy:\n\n\n\nBR,\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/How-can-I-create-an-alert-in-Opsgenie-if-the-count-of-my-emails/qaq-p/2791736 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "JONATHAN BOHLMANN",
"title": "API to pull hours out per month",
"body": "We use another system to for schedule resourcing and would like to be able to pull monthly data out of Opsgenie. We have looked at the Get Schedule and Get Schedule timeline apis but don't see an easy way to pull this data. What we would like is something like this:\n\n* October\n * Person 1 - 162 hours\n * Person 2 - 16 hours\n * Person 3 - 176 hours\n* November\n * ...\n\nThis would allow us to then import into our resource allocation software (Netsuite - Openair).\n\nHas anyone done something like this before?\n"
} | [
{
"author": "Elelta D",
"body": "Hey there Jonathan,\n\nThanks for posting here with an interesting problem, as you state the Get Schedule api does not give you the time a person was on call.\n\nThe analytics with Opsgenie would have this information in the format you need it, it is possible to schedule an export of this data in a CSV format to be delivered to on of the Opsgenie users.\n\nHere is an outline of how to do that.\n\n<https://community.atlassian.com/t5/Opsgenie-articles/Creating-a-Scheduled-Report-in-Opsgenie-Explanation-of/ba-p/2720680>\n\nwould this wokr for you?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/API-to-pull-hours-out-per-month/qaq-p/2789872 | null |
{
"author": "Kaloyan G_ Georgiev",
"title": "Can i restore deleted team?",
"body": "A team was deleted by mistake and now we need to recover it. it would be best to recover all data and setups, but only the schedule would be good enough.\n\nIs this possible.\n"
} | [
{
"author": "Mona Singh",
"body": "Hi [@Kaloyan G_ Georgiev](/t5/user/viewprofilepage/user-id/5513724) ,\n\nThis is Mona here, happy to help :)\n\nUnfortunately, we will not be able to recover a deleted team in Opsgenie directly from the UI. You'll have to recreate the team and configuration in it according to the data in the logs. \n\nIf the team was deleted within the last 13 days, you can check the Logs in your account under Settings and search for **\"Team \\[TEAM NAME\\] deleted\" or \"Team\" AND \"deleted\".** Once you have the data, you can perform the restoration manually by adding the Team in the UI and configuring it as per the logs retrieved.\n\nThe other way would be to create Team, Routing, Escalation, Schedule \\& Rotations using the API Endpoints. \n\n[Create Team](https://docs.opsgenie.com/docs/team-api#section-create-team) \n[Create Schedules](https://docs.opsgenie.com/docs/schedule-api#section-create-schedule) \n[Create Escalations](https://docs.opsgenie.com/docs/escalation-api#section-create-escalation) \n[Create Routing Rules](https://docs.opsgenie.com/docs/team-routing-rule-api#section-create-team-routing-rule) \n[Create Integration](https://docs.opsgenie.com/docs/integration-api#section-create-api-based-integration)\n\nPlease let me know if this works for you. Incase you have any further queries, please feel free to reach out to us by creating a ticket in this [link](https://support.atlassian.com/) and we'll take it from there :) \n\nThanks! \nMona\n",
"comments": [
{
"author": "Kaloyan G_ Georgiev",
"body": "Thank you, Mona! Appreciate the response!\n"
}
]
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Can-i-restore-deleted-team/qaq-p/2789117 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "Dominic Utz",
"title": "Opsgenie Priority mapping from Statuspage",
"body": "Hi all, \n\nmy question is hopefully simple to solve. \n\nI wanna map the Priority (or as Statuspage name it, \"impact\") from the incoming alerts to the Priority inside of opsgenie. \n\nwe use Datadog to set the priority and trigger alerts within Statuspage. Statuspage then communicates a failure to Opsgenie and this is where I reach the limitation because although Datadog has set the priority, Statuspage does not pass it on to Opsgenie. \n\nCan somebody help here? :) \n\nThank u and have a great week \nDominic\n"
} | [
{
"author": "Rafael Meira",
"body": "Hey [@Dominic Utz](/t5/user/viewprofilepage/user-id/5571380) \n\nCan you check these steps to [map priority](https://support.atlassian.com/opsgenie/docs/what-is-the-priority-level-of-integration/) from Statuspage to Opsgenie? \n\n**Check Integration Settings** for additional field mapping. \n**Use Tags/Custom Fields** to set priorities via [Opsgenie rules.](https://support.atlassian.com/opsgenie/docs/add-a-forwarding-rule/) \n[**Create Policies**](https://support.atlassian.com/opsgenie/docs/create-and-manage-maintenance-policies/) to adjust priorities based on alert conditions. \n**Use Opsgenie's [API](https://docs.opsgenie.com/docs/api-overview)** to update priorities programmatically. \n\nIf these steps don't resolve the issue, please open a support ticket at [Atlassian Support](https://support.atlassian.com/contact/). so our team could assist and troubleshoort it. \n\n<https://support.atlassian.com/opsgenie/docs/integrate-opsgenie-with-statuspage/>\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Opsgenie-Priority-mapping-from-Statuspage/qaq-p/2788072 | [
"datadog",
"statuspage"
] |
{
"author": "Ronald Heijn Buys",
"title": "Configure SSO with Azure AD (Entra ID)",
"body": "Do I need Atlassian Access? Because I see you have to pay for it before I can integrate with Azure AD (Entra ID)?\n"
} | [
{
"author": "Tejaswi G",
"body": "Hi [@Ronald Heijn Buys](/t5/user/viewprofilepage/user-id/5562003)\n\nThis is Tejaswi from the Atlassian support team and happy to help.\n\nIf you are using the Atlassian login and wish to login to Opsgenie with Azure AD via SSO. You need to use the Atlassian Access (Atlassian Guard) to setup this. Ideally, You should not be billed for the users using only the Opsgenie for the SSO.\n\nYou can refer to Guard page [here](https://support.atlassian.com/subscriptions-and-billing/docs/manage-your-bill-for-atlassian-guard-standard/) for more details on this.\n\nKind Regards, \nTejaswi\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Configure-SSO-with-Azure-AD-Entra-ID/qaq-p/2786729 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "HN",
"title": "Is it possible to have both \"and\" and \"or\" when making conditional routing rules?",
"body": "Working on getting some routing rules setup and running into an issue (more of an annoyance but potential issue based on rules).\n\nCurrently I want to create routing rules for the following cases:\n\nRoute to team Alpha for: \n- **AND** (Tags contain \"A\" **OR** -Tag contain \"B\") \n- **AND** Tag does not contain \"X\" \n- **AND** Priority \\> 3\n\nRoute to team Bravo for: \n- **AND** (Tags contain \"A\" **OR** -Tag contain \"B\") \n- **AND** Tag does not contain \"X\" \n- **AND** Priority \\> 4 \n\nIs there a way to have the rules contain both AND/OR in the conditions?\n\nAs I have multiple teams, tag conditions and priorities to address; it becomes super cumbersome to have a separate rule for each OR condition. I'm not sure if there's a limit to the amount of rules that can be made so it may not be an actual issue but if there's a limit then the split OR conditions essentially doubles the amount of rules I'd need.\n"
} | [
{
"author": "Sean Suwal",
"body": "Hey [@HN,](https://community.atlassian.com/t5/user/viewprofilepage/user-id/5535606)\n\nThank you for reaching out to Atlassian Community!\n\nYes, this can be achieved via the use of [Regular expressions for customizing and filtering alerts](https://support.atlassian.com/opsgenie/docs/regular-expressions-for-improved-alert-filtering/)\n\nTo use the **OR** condition for an entry you can use the **Matches (Regex)** and then have the values as **.\\***(Value1\\|Value2\\|Value3).\\*\n\nNote: The rules are executed in a top-down hierarchy, which means if the first rule matches, it will skip the remaining rules.\n\nHere's an example screenshot of one of the conditions:\n\n\n\nI hope this helps resolve your query.\n\nRegards, \nSean\n",
"comments": [
{
"author": "HN",
"body": "That's awesome and helps immensely [@Sean Suwal](/t5/user/viewprofilepage/user-id/5078924)!\n\nI don't have permissions to view the screenshot unfortunately.\n\nOne more question in addition to the top-down hierarchy. How would you go about having multiple groups getting alerts?\n\nIdeally my situation needs to have cascading alerts, so if Priority is greater than 4, then the rule for greater than 3 would need to be addressed as well as two different teams are on call.\n\n<br />\n\nI've considered having escalation policies for the different teams, having the users for lower priority included in the higher priority escalation but this seemed a bit messy. I'm still learning how to utilize OpsGenie effectively, so I'm eager to know if there's better ways to do things.\n"
},
{
"author": "Sean Suwal",
"body": "Hi [@HN](/t5/user/viewprofilepage/user-id/5535606)\n\nI am glad it was helpful. I have also updated the screenshot, which you should now be able to see.\n\nBased on your requirements, I believe using [**Global alert policies**](https://support.atlassian.com/opsgenie/docs/create-and-manage-global-alert-policies/) would be best suited. With the global policy, you can set your condition which when matched, adds the team(s) you want as responders.\n\nLet us know how you go.\n\nRegards, \nSean\n"
}
]
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Is-it-possible-to-have-both-quot-and-quot-and-quot-or-quot-when/qaq-p/2785156 | null |
{
"author": "Dario Alarc?n",
"title": "?Alert in Opsgenie from JSM ticket value",
"body": "Hello community, I need your help. I am currently a Jira administrator in training, I have a standard license and I need to know if it is possible to automatically generate an alert in Opsgenie from a ticket created in JSM?\n\nIf possible, can some data be taken from the ticket?\n\nFor example: Priority or some text in the ticket description or summary? or the type of request?\n\nI hope you can help me with this concern, if you have any explanatory material to share with me it would be of great help. I have a test environment in which I could carry out. If you need any additional information, I am at your disposal.\n"
} | [
{
"author": "Alicia Peebles",
"body": "Hi [@Dario Alarc?n](/t5/user/viewprofilepage/user-id/5307057) !\n\nYou can setup Opsgenie alerts from JSM requests! You will need to integrate your JSM with Opsgenie but once that is done, then you can set alerts based on many different components.\n\nHere is some documentation for you to refer to: [Integrate Opsgenie with Jira Service Management Cloud \\| Opsgenie \\| Atlassian Support](https://support.atlassian.com/opsgenie/docs/integrate-opsgenie-with-jira-service-management-cloud/)\n\nI am not sure if the recent merger of Opsgenie into the JSM platform changes this process, as I have not completed that.\n\nHope that helps! Have an awesome week!\n",
"comments": [
{
"author": "Dario Alarc?n",
"body": "Hi [@Alicia Peebles](/t5/user/viewprofilepage/user-id/5415758)\n\nThanks for you reply. Actually I?m using Opsgenie with Jira **Service Management's****Standard** **plan**, that to say, with the merged version.\n\nI followed the steps from the documentation but didn't find the JSM Cloud integration in the search. \nI would like to know if that is possible to enable in my JSM projects? \nI have different request types to configure alerts in Opsgenie. \nCommunity, I will keep atent to you comments.\n"
}
]
},
{
"author": "Alicia Peebles",
"body": "Hi [@Dario Alarc?n](/t5/user/viewprofilepage/user-id/5307057)\n\nThere is a clarification in the documentation for the Standard plan, Integrations are not in the Settings on the Standard plans. It does say you can add to a dashboard, however, this is only for 1 team. That could make setting the alerts a bit more difficult, if you are trying to do it for multiple teams.\n\n\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Alert-in-Opsgenie-from-JSM-ticket-value/qaq-p/2785084 | [
"alert",
"jira-service-management",
"monitoring"
] |
{
"author": "Maryam Gharib",
"title": "history of emails received by Opsgenie , or a relevant report",
"body": "Dear Community ,\n\nWe seem to be having an issue that the email alert we sending to Opsginie from Sqlserver every 5 mins but it seems .\n\nThe Opsgenie has a 15 mins span wait time to receive this email and if after 15mins it doesn't receive it in sets off an alert.\n\nEverything was fine up until yesterday but for the last 24 hours Opsgenie seems not receiving all the emails hence we receiving alerts where they are really false alerts as it seems the Opsgenie not getting the emails in the 5 mins time spans .\n\nI was wondering if there is any reporting or tool we could use to see what Opsgenie is receiving.\n\nMany thanks in advance.\n"
} | [
{
"author": "Maryam Gharib",
"body": "Hi Alan, \nThanks for getting back to me. ? \nIs it because I don't have admin settings I can't see the logs from the Settings?\n\n**Settings** {#toc-hId--349617843}\n----------------------------------\n\n**My Profile** \n[Profile](https://id.atlassian.com/manage-profile) \n[Profile settings](https://onthebeach.app.opsgenie.com/settings/user/profile) \n[Notifications](https://onthebeach.app.opsgenie.com/settings/user/notification) \n[Your on-call schedule](https://onthebeach.app.opsgenie.com/settings/user/onCallSchedule) \n[Forwarding rules](https://onthebeach.app.opsgenie.com/settings/user/forwardingRules) \n**Integrations** \n[Heartbeats](https://onthebeach.app.opsgenie.com/settings/heartbeat) \n**Incident Config** \n[Conference rooms](https://onthebeach.app.opsgenie.com/settings/conferences) \n[Incident templates](https://onthebeach.app.opsgenie.com/settings/incident-templates) \n[Response roles](https://onthebeach.app.opsgenie.com/settings/response-roles) \n[Email templates](https://onthebeach.app.opsgenie.com/settings/email-templates) \nThanks again \nMaryam\n",
"comments": null
},
{
"author": "Alan Violada",
"body": "Hey Maryam, Alan from the Opsgenie Support Team here.\n\nFrom your description, it seems that you might be using the Heartbeat feature and using emails to maintain the heartbeat. Correct me if I'm wrong!\n\nTo validate what is being received, your best bet would be using the logs in the \"**Settings -\\> Logs**\" tab. That should show you everything coming in and out of the Opsgenie instance, and all actions taken.\n\nYou can also use search queries to filter this down, related documentation:\n\n[Search logs](https://support.atlassian.com/opsgenie/docs/search-logs/)\n\nAlso some documentation on the Heartbeats functionality:\n\n[Heartbeats documentation](https://support.atlassian.com/opsgenie/docs/add-heartbeats-to-monitor-external-systems/)\n\nIf you need more detailed assistance, feel free to create a ticket at [Atlassian Support](https://support.atlassian.com) and we will be happy to help troubleshoot!\n\nRegards,\n\nAlan\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/history-of-emails-received-by-Opsgenie-or-a-relevant-report/qaq-p/2784481 | [
"cloud"
] |
{
"author": "Eric Leo Lidi Okala",
"title": "Integration to Zabbix 7.0 Using Webhook Template",
"body": "Hi All,\n\nI've been working on the integration from Zabbix to Jira Helpdesk. Having some difficulties trying to get the zabbix triggers to create jira tickets. Any advise would be great to help me with this integration.\n\nSo far, I have created the API key to authenticate the connection and have used the correct project key to identify which project account the ticket is to be raised. Using the test feature is successful. However, its still not populating the tickets other from the manual testing.\n\nRegards,\n\nEric\n"
} | [
{
"author": "Rafael Meira",
"body": "Hey [@Eric Leo Lidi Okala](/t5/user/viewprofilepage/user-id/5568088) \n\nTo further investigate, since ti is a integration issue and we would need to request access permission to your account, I would recommend you to create a ticket with out support here: \n\n<https://support.atlassian.com/contact/#/> \n\n<br />\n\nBest, \nRafa\n",
"comments": [
{
"author": "Eric Leo Lidi Okala",
"body": "Hi Rafael,\n\nAppreciate the update, I will request account admin to request support ticket on behalf my department.\n\nRegards,\n\nEric\n"
},
{
"author": "Rafael Meira",
"body": "[@Eric Leo Lidi Okala](/t5/user/viewprofilepage/user-id/5568088) Your welcome :)\n"
}
]
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Integration-to-Zabbix-7-0-Using-Webhook-Template/qaq-p/2784310 | [
"jira-helpdesk",
"zabbix"
] |
{
"author": "Emily Carpenter",
"title": "How do you export your on-call schedule and see only yourself, not the team?",
"body": "When I go to an on-call schedule I can export the calendar that lists the entire team's schedule. But I only want to see my own on-call schedule on my Google Calendar, not my teammates'. How do I do this?\n\nWhen I go to Settings \\> Your On-Call Schedule it only shows 1 of my 2 on-call rotations. This is where I would think to export it, but it is not clear why it isn't showing both.\n"
} | [
{
"author": "Elelta D",
"body": "Hey there Emily,\n\nWelcome to the community :-)\n\nI see you would like to export your rotations but you cannot see the two teams that you work in, are you able to navigate to Teams and see the rotation from that screen? If you are a member of a team you should be able to see the on-call schedule.\n\nThat all said, it is not possible to download JUST your own schedule, you get the whole team's schedule.\n\nIf you goal is to get notified of you upcoming rotation, I recommend setting up your [notification rules.](https://support.atlassian.com/opsgenie/docs/create-and-manage-notification-preferences/#:~:text=Schedule%20Start%2C%20etc).-,Notification%20Rules,-Watch%20Using%20notification) You can, for example, you can configure it so you get an email or a text a few days before your scheduled shift, you have the option to get notified about the start and the end of your schedule.\n\n* **Schedule Start:** Your on-call rotation is being started.\n\n* **Schedule End:**Your on-call rotation is being ended.\n\nI hope this help, please do let me know if you have further questions :)\n\nCheers\n\nElelta\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/How-do-you-export-your-on-call-schedule-and-see-only-yourself/qaq-p/2783585 | null |
{
"author": "Ricardo Gonzalez",
"title": "Opsginie incident handler from Salesforce Case",
"body": "Can Opsgenie monitor events from Salesforce Service cloud?\n\nthen create tickets in Jira, etc?\n"
} | [
{
"author": "Slifer",
"body": "Yes, Opsgenie can track events from Salesforce Service Cloud and create tickets in Jira, along with supporting various other integrations. Here's an overview of how it works:\n\n#### 1. Salesforce Service Cloud Integration: {#toc-hId-351332475}\n\n- Event Monitoring: Opsgenie can be connected with Salesforce Service Cloud to monitor specific events like case creation, status updates, or other defined triggers. \n- Custom Workflows: You can configure custom workflows in Salesforce to send notifications or trigger API calls to Opsgenie when certain events occur.\n\n#### 2. Generating Alerts in Opsgenie {#toc-hId--1456121988}\n\n- Once integrated, Opsgenie can receive these events as alerts. \n- These alerts can include detailed information from Salesforce, such as the case number, description, and priority level.\n\n#### 3. Initiating Actions (e.g., Creating Jira Tickets) {#toc-hId-1031390845}\n\n- Jira Integration: Opsgenie seamlessly integrates with Jira, enabling it to automatically create issues or tickets in Jira based on the alerts it processes. \n- Automation Rules: You can set up automation rules in Opsgenie to define when and how these tickets are created in Jira. For instance, if a high-priority case is logged in Salesforce, an alert can trigger the creation of a corresponding high-priority ticket in Jira.\n\n#### 4. Bidirectional Synchronization: {#toc-hId--776063618}\n\n- In some configurations, Opsgenie can keep the Jira ticket updated with changes from Salesforce and vice versa, ensuring both systems remain synchronized.\n\n#### 5. Escalations and Notifications: {#toc-hId-1711449215}\n\n- Opsgenie can escalate issues, notify the appropriate teams, and perform additional actions based on the alert status or responses from Jira.\n\n#### 6. Setting Up the Integration: {#toc-hId--96005248}\n\n<https://support.atlassian.com/opsgenie/docs/integrate-opsgenie-with-salesforce-service-cloud/>\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Opsginie-incident-handler-from-Salesforce-Case/qaq-p/2782744 | null |
{
"author": "Kaloyan G_ Georgiev",
"title": "Can i restrict a notification policy to only on specific calendar days",
"body": "Hello All,\n\nWe have a on-call rotation for which we do not want to receive notifications to on-call users during working hours. This is why we created a notification policy which suppresses notification during regular business hours (Monday to Friday).\n\nThe issue is that we want to have this schedule to accommodate for public holidays.\n\nFor example if there is a public holiday on Wednesday, we would like the policy to be disabled and the on-call user to get notified.\n\nis that possible\n"
} | [
{
"author": "Sean Suwal",
"body": "Hi Kaloyan,\n\nThank you for contacting the Atlassian Community!\n\nCurrently, we don't have the ability to import/ list public holidays into Opsgenie. However, we do have a feature request [OPSGENIE-781](https://jira.atlassian.com/browse/OPSGENIE-781) open. Please vote and add yourself as a watcher to be notified of any updates.\n\nIn saying that, the workaround for you would be to create a [maintenance policy](https://support.atlassian.com/opsgenie/docs/create-and-manage-maintenance-policies/) for the public holiday that then disables/ enables the notification policy you have in place.\n\nI hope this helps.\n\nRegards, \nSean\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Can-i-restrict-a-notification-policy-to-only-on-specific/qaq-p/2780767 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "Edgardo Isaula",
"title": "How do you set up notifications when a P1 alert is acked but not closed?",
"body": "Im trying to set up notifications for P1 alerts, the alert is recedved, and then acked, but i want to notify after a certain period of time when this alert is not closed but just acked\n"
} | [
{
"author": "Chris DeGidio",
"body": "Hi [@Edgardo Isaula](/t5/user/viewprofilepage/user-id/5566653)\n\nYou would set this up in the team escalation policy. There are two options to select during a notification step/event. If the alert is not closed or if the alert is not ackd. You will want to add a step for not closed:\n\n\n",
"comments": [
{
"author": "Edgardo Isaula",
"body": "Hello [@Chris DeGidio](https://community.atlassian.com/t5/user/viewprofilepage/user-id/3202394) ! thank you for your answer! However, I saw that option, but the problem with it, is that it applies it to all of the alerts (P1-P5), it does not let me customize it by priority, for example, if I want to notify x user if a P1 alert is acked but not closed in 120 min, and another one, I want to notify x user if a P2 alert is acked but not closed in 180 min, so we can meet SLAs especifically. \n\nThanks in advance.\n"
},
{
"author": "Chris DeGidio",
"body": "hi [@Edgardo Isaula](/t5/user/viewprofilepage/user-id/5566653) you would apply a different escalation policy dependent on the details of the alert via a routing rule. So for example for a p1 you can route that alert to its own escalation policy seperate from other alerts with different priorities.\n\n\n"
},
{
"author": "Edgardo Isaula",
"body": "Thank you [@Chris DeGidio](/t5/user/viewprofilepage/user-id/3202394) that worked great :)\n"
}
]
},
{
"author": "Edgardo Isaula",
"body": ".\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/How-do-you-set-up-notifications-when-a-P1-alert-is-acked-but-not/qaq-p/2782578 | [
"cloud",
"jira-service-management"
] |
{
"author": "Fabio Santos",
"title": "OpsGenie event management and observability",
"body": "How OpsGenie event management-related functionalities compare with regards to other observability platforms own event managers?\n"
} | [
{
"author": "Mubeen Mohammed",
"body": "Hello [@Fabio Santos](/t5/user/viewprofilepage/user-id/5531864)\n\nThank you for contacting the Atlassian Community!\n\nOpsgenie offers robust event management features, making it a strong choice compared to other observability platforms.\n\n1. **Alerting and Notification:** Advanced alerting with customizable policies and multiple notification methods.\n\n2. **Incident Management:** Seamless incident creation and tracking, with strong integration with tools like Jira.\n\n3. **Integrations:** Extensive integrations with monitoring and collaboration tools for enhanced workflows.\n\n4. **Event Correlation:** Effective alert correlation and deduplication to reduce noise.\n\n5. **On-Call Management:** User-friendly on-call scheduling with automated escalation policies.\n\n6. **Reporting and Analytics:** Detailed insights into incident trends and operational performance.\n\nTo explore Opsgenie's full capabilities, you can start a trial at [this link](https://www.atlassian.com/software/opsgenie/try).\n\nI hope the details provided are helpful.\n\nRegards\n\nMubeen Mohammed\n\nCloud Support Engineer\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/OpsGenie-event-management-and-observability/qaq-p/2780708 | [
"observability"
] |
{
"author": "Fabio Santos",
"title": "OpsGenie does AIOps?",
"body": "Hi! \n\nIs there any information on OpsGenie regarding AIOps? I've found this article below, but I was hoping I could find some more specific to opsGenie, since my understanding is OpsGenie it is THE incident management platform.\n\n<https://community.atlassian.com/t5/Jira-Service-Management-articles/New-AIOps-capabilities-Alert-grouping-amp-PIR-creation-now-in/ba-p/2710532>\n"
} | [
{
"author": "Mubeen Mohammed",
"body": "Hello [@Fabio Santos](/t5/user/viewprofilepage/user-id/5531864)\n\nThank you for contacting the Atlassian Community!\n\nPlease note that currently, the AIOps feature is available within Jira Service Management and is designed to enhance its incident management processes.\n\nAs for Opsgenie, while similar functionalities are part of its robust alert management and incident response features however, this particular AIOps capability isn't available in Opsgenie at this time.\n\nOpsgenie continuously evolves, and new integrations and features are regularly considered to improve its offerings. You can follow <https://www.atlassian.com/roadmap/cloud?selectedProduct=opsgenie> for Opsgenie product roadmap.\n\nI hope this is helpful.\n\nRegards\n\nMubeen Mohammed\n\nCloud Support Engineer\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/OpsGenie-does-AIOps/qaq-p/2780706 | [
"aiops"
] |
{
"author": "Jason Rogers",
"title": "OpsGenie: Is it possible to have more than one Team as a responder?",
"body": "OpsGenie: Is it possible to have more than one Team as a responder?\n\nWe have set up our Teams and each Team has their Sync set up as well. One Team though, Operations, would like to be alerted for all Incidents alerts that come in. I have set this up, but it now appears that Operations are listed as the sole responder for Alerts now.\n\nIn the screenshot below, we have two Alerts. One should go to Operations, but the top alert should go to Accounting and Operations (Ops just want visibility). It has however only gone to Operations as the responding team, when the responding team should be Accounting.\n\nAny advice or guidance appreciated.\n\nCheers,\n\nJ\n"
} | [
{
"author": "Bruna Silva",
"body": "Hello [@Jason Rogers](/t5/user/viewprofilepage/user-id/5508518),\n\nThank you for reaching out to Atlassian Community!\n\nWhen using a [site-level integration](https://support.atlassian.com/jira-service-management-cloud/docs/add-an-integration-site-level/), it is possible to set more than 1 Team in the **Responders** field in its **Create alert** rule:\n\n\n\nHowever, if you configured a [team-level integration](https://support.atlassian.com/jira-service-management-cloud/docs/add-an-integration-team-level/), the **Responders** will always be the Team you used to add that integration.\n\nPlease note that *site-level integrations* are only available on Jira Service Management Premium and Enterprise plans.\n\nIf you have any other questions regarding this matter, please let us know.\n",
"comments": [
{
"author": "Jason Rogers",
"body": "Great. Thanks for this.\n\nI had indeed set up Team level Syncs, but can recreate the ones where I need two or more Teams.\n\nThanks!\n\nJ\n"
}
]
}
] | https://community.atlassian.com/t5/Opsgenie-questions/OpsGenie-Is-it-possible-to-have-more-than-one-Team-as-a/qaq-p/2780576 | [
"alerts",
"jsm",
"opsgenie-cloud",
"teams"
] |
{
"author": "Amardeep Singh",
"title": "salesforce integration (custom values)",
"body": "Hi,\n\nI need to get Salesforce's application name (This is one of the fields where a user enters the application name they are facing a problem with) in the alert created in Opsgenie. Any help would be greatly appreciated, thanks\n"
} | [
{
"author": "Sean Suwal",
"body": "Hi Amardeep,\n\nThank you for reaching out to the Atlassian Community!\n\nRegarding your query, if the field application name is being sent in the payload received by Opsgenie, you should be able to extract the custom field into the alert by following the steps outlined in our community article [How to Extract Custom Fields and Data into an Alert](https://community.atlassian.com/t5/Opsgenie-articles/How-to-Extract-Custom-Fields-and-Data-into-an-Alert/ba-p/2133902)\n\nI hope this helps.\n\nRegards, \nSean\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/salesforce-integration-custom-values/qaq-p/2780186 | [
"cloud",
"opsgenie-cloud"
] |
{
"author": "Lubom?r Kostal",
"title": "Alerting from Kibana to Opsgenie",
"body": "I am having a problem with sending alerts from Kibana to Opsgenie, where the tags I attach to the alerts are not being sent. I am using Kibana version 7.17, so I'm using a webhook instead of the integration available in version 8.X.\n\nI am using our F5 connector to call the API at `/v2/alerts`, but when the call is made, only the message appears in the alert, and none of the tags I created show up in Opsgenie. \n\n<br />\n\n<br />\n\n{ \"alert_name\": \"{{alertName}}\", \"alert_instance_id\": \"{{alertInstanceId}}\", \"alert_status\": \"{{alertState}}\", \"timestamp\": \"{{context.date}}\", \"message\": \"{{context.message}}\" } \n\n<br />\n\n\n"
} | [
{
"author": "Mubeen Mohammed",
"body": "Hello [@Lubom?r Kostal](/t5/user/viewprofilepage/user-id/5562635)\n\nThank you for contacting the Atlassian Community!\n\nWhen sending alerts from Kibana to Opsgenie using a webhook, you'll need to ensure that your payload is correctly formatted to include the tags. The Opsgenie API expects a specific JSON structure, and if the tags are not appearing, it's likely due to a formatting issue in the payload you're sending.\n\n{ \"message\": \"Sample Alert\", \"description\": \"This is a sample alert description\", \"priority\": \"P3\", \"tags\": \\[\"tag1\", \"tag2\", \"tag3\"\\], \"details\": { \"key1\": \"value1\", \"key2\": \"value2\" } }\n\nFrom the above payload you shared it looks like you need to include \n\"tags\": {{#context.tags}}\\[\"{{.}}\"\\]{{/context.tags}}\n\nI hope the details provided are helpful.\n\nRegards\n\nMubeen Mohammed\n\nCloud Support Engineer\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/Alerting-from-Kibana-to-Opsgenie/qaq-p/2777680 | [
"cloud",
"devops"
] |
{
"author": "Calvin",
"title": "How to create an alert based on a certain JSM Request Type?",
"body": "Hi all,\n\nSo in creating an alert from the JSM it gives me an array of options from priority to summary to issue type.\n\nAll great and all, but I'm guessing theres a way to slice it down further? Can I create it only for an urgent priority of a certain Request Type, or some custom field? Or do I need to use the only ones available (like a label/comment/etc).\n\nAnd does anyone know if this will change with the migration of Opsgenie being part of JSM?\n\nCheers!\n"
} | [
{
"author": "Bhanu",
"body": "Hi [@Calvin](/t5/user/viewprofilepage/user-id/4851947)\n\nLegacy automation and jira automation should help you build alerts for your use case.\n",
"comments": null
}
] | https://community.atlassian.com/t5/Opsgenie-questions/How-to-create-an-alert-based-on-a-certain-JSM-Request-Type/qaq-p/2777531 | null |
{
"author": "Piotr Wilk-Juraszek",
"title": "Installing private python packages in the build plan",
"body": "Hello,\n\nI am trying to create a python virtual environment and install private packages with SSH protocol from **requirements.txt** file. Its content looks like this:\n\n```\npackage1 @ git+ssh://[email protected]:USER/package1.git\npackage2 @ git+ssh://[email protected]:USER/package2.git\n```\n\nIn the build stage I am using script task with powershell and executing command:\n\n```\npython -m pip install -r .\\requirements.txt\n```\n\nThis is the log that bamboo is generating:\n\n```\nsimple 24-Jul-2024 10:40:13 Starting task 'Get dependencies' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script' \ncommand 24-Jul-2024 10:40:13 Beginning to execute external process for build 'TEST - test_plan - Default Job #32 (TEST-TEST-JOB1-32)'\\n ... running command line: \\nC:\\bamboo_agent\\temp\\TEST-TEST-JOB1-32-ScriptBuildTask-8492469421397391151.ps1\\n ... in: C:\\bamboo_agent\\xml-data\\build-dir\\TEST-TEST-JOB1\\n \nbuild 24-Jul-2024 10:40:19 pip 24.1.2 from C:\\bamboo_agent\\xml-data\\build-dir\\TEST-TEST-JOB1\\.venv\\Lib\\site-packages\\pip (python 3.12) \nbuild 24-Jul-2024 10:40:20 Collecting git+ssh://[email protected]:USER/package1.git (from -r .\\requirements.txt (line 3)) \nbuild 24-Jul-2024 10:40:20 Cloning git+ssh://[email protected]:USER/package1.git (to revision develop) to c:\\windows\\temp\\pip-req-build-3z8q8j72 \nerror 24-Jul-2024 10:40:20 Running command git clone --filter=blob:none --quiet 'ssh://[email protected]:USER/package1.git' 'C:\\Windows\\Temp\\pip-req-build-3z8q8j72' \nerror 24-Jul-2024 10:40:21 Host key verification failed. \nerror 24-Jul-2024 10:40:21 fatal: Could not read from remote repository. \nerror 24-Jul-2024 10:40:21 \nerror 24-Jul-2024 10:40:21 Please make sure you have the correct access rights \nerror 24-Jul-2024 10:40:21 and the repository exists. \nerror 24-Jul-2024 10:40:21 error: subprocess-exited-with-error \nerror 24-Jul-2024 10:40:21 \nerror 24-Jul-2024 10:40:21 git clone --filter=blob:none --quiet 'ssh://[email protected]:USER/package1.git' 'C:\\Windows\\Temp\\pip-req-build-3z8q8j72' did not run successfully. \nerror 24-Jul-2024 10:40:21 exit code: 128 \nerror 24-Jul-2024 10:40:21 \nerror 24-Jul-2024 10:40:21 See above for output. \nerror 24-Jul-2024 10:40:21 \nerror 24-Jul-2024 10:40:21 note: This error originates from a subprocess, and is likely not a problem with pip. \nerror 24-Jul-2024 10:40:21 error: subprocess-exited-with-error \nerror 24-Jul-2024 10:40:21 \nerror 24-Jul-2024 10:40:21 git clone --filter=blob:none --quiet 'ssh://[email protected]:USER/package1.git' 'C:\\Windows\\Temp\\pip-req-build-3z8q8j72' did not run successfully. \nerror 24-Jul-2024 10:40:21 exit code: 128 \nerror 24-Jul-2024 10:40:21 \nerror 24-Jul-2024 10:40:21 See above for output. \nerror 24-Jul-2024 10:40:21 \nerror 24-Jul-2024 10:40:21 note: This error originates from a subprocess, and is likely not a problem with pip. \nbuild 24-Jul-2024 10:40:21 \nbuild 24-Jul-2024 10:40:21 \nsimple 24-Jul-2024 10:40:21 Finished task 'Get dependencies' with result: Success\n```\n\nMy question is; How can I configure bamboo to use specific SSH key to execute this task correctly?\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello Piotr,\n\nWelcome to Atlassian community.\n\nYou can see an example at [How to perform a Git SSH checkout from a Bamboo Script Task](https://confluence.atlassian.com/bamkb/how-to-perform-a-git-ssh-checkout-from-a-bamboo-script-task-741999875.html) where there is a similar scenarion of what you are trying to achieve.\n\nLet me know if this helps.\n\nRegards,\n\nShashank kumar\n\n**\\*\\*please don't forget to Accept the answer if your query was answered\\*\\***\n",
"comments": [
{
"author": "Piotr Wilk-Juraszek",
"body": "Hello.\n\nThank you for your answer. I have seen this solution, but it seems to not work with something that I am trying to achieve.\n\nI have tried something like this but it is not working:\n\n GIT_SSH_COMMAND='ssh -i /Path/to/file -o IdentitiesOnly=yes' python -m pip install -r .\\requirements.txt\n\nI need those repos to be installed in venv by **pip** in order to execute code that needs them. Pip is using **git** to clone repository, and then it is installing it to venv.\n\nKey specified in `/Path/to/file` is added to bitbucket repositories.\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/Installing-private-python-packages-in-the-build-plan/qaq-p/2764001 | [
"python",
"ssh"
] |
{
"author": "Phill Pafford",
"title": "All Docker Bamboo remote Agent Images for 9.2.x were updated recently, breaking changes",
"body": "I have a customer build using the base image for the bamboo remote agent, in docker hub\n\n[https://hub.docker.com/r/atlassian/bamboo-agent-base/tags?page=3\\&page_size=\\&name=\\&ordering=](https://hub.docker.com/r/atlassian/bamboo-agent-base/tags?page=3&page_size=&name=&ordering=)\n\nI see that all versions for 9.2.x were recently updated\n\nThe base image was using\n\n```\nUbuntu 22.04.1 (Jammy Jellyfish)\n```\n\nBut now seems to be pulling\n\n```\nUbuntu 24.04.1 (Noble Numbat)\n```\n\nand all the deps are breaking\n\nHow can I get the previous image?\n\n```\natlassian/bamboo-agent-base:9.2.14\n```\n\nbefore the recent change?\n\n<https://hub.docker.com/layers/atlassian/bamboo-agent-base/9.2.14/images/sha256-55a59daff1be04f92fe60d1eddc2e6d3c6a544e2671bf075abe7b2a47a2b5c61?context=explore>\n\nDocker Image hash from 07/26/2024\n\n```\n26-Jul-2024 12:27:18\t#5 [stage-1 1/44] FROM docker.io/atlassian/bamboo-agent-base:9.2.14@sha256:9be95195a34481a6af78d7b6fb5b80d30af37960909e750aee38793958ceedf726-Jul-2024 12:27:18\t#5 resolve docker.io/atlassian/bamboo-agent-base:9.2.14@sha256:9be95195a34481a6af78d7b6fb5b80d30af37960909e750aee38793958ceedf7 done\n```\n\nDocker Image hash from 07/29/2024\n\n```\nbuild\t29-Jul-2024 16:32:15\tDigest: sha256:5311ba29f8d3f40c8dc8853740a024451ca11f7d99f65086c8aeb872bddcebd5build\t29-Jul-2024 16:32:15\tStatus: Downloaded newer image for atlassian/bamboo-agent-base:9.2.14\n```\n"
} | [
{
"author": "Eduardo Alvarenga",
"body": "Good day, **Phil**,\n\nThank you for pointing that out. The Bamboo docker images and many other Atlassian products all depend on [Eclipse Temurin images](https://hub.docker.com/_/eclipse-temurin/) as a base image. Temurin images [have been refactored to ship with Ubuntu 24.04](https://github.com/adoptium/containers/pull/534/files), so our images followed that version.\n\nWe are working internally to pin our images to **Noble**, so future releases will not be affected by that change in the base image.\n\nIf you'd like to continue working with the **Jammy** version, pull the Docker image by its digest, as you have already identified. That will help you recover from your latest stable point, but it will also tie you to a specific version of the image, which will not receive any updates. Hence, we recommend you adjust your build process to adapt to the new **Noble** version.\n\nYou can also build your own image from scratch by cloning the [project](https://bitbucket.org/atlassian-docker/docker-bamboo-agent-base/src/master/). Customised images are not supported so you will have to read through the code and understand the process.\n\nCheers,\n\nEduardo Alvarenga \nAtlassian Support APAC\n\n**--please don't forget to Accept the answer if the reply is helpful--**\n",
"comments": [
{
"author": "Eduardo Alvarenga",
"body": "Hey [@Phill Pafford](/t5/user/viewprofilepage/user-id/704705),\n\nGood news!\n\nWe released **jdk11-jammy** and **jdk17-jammy** docker tags for the [Bamboo Agent Base docker image](https://hub.docker.com/r/atlassian/bamboo-agent-base).\n\nThat should help you with the earlier Ubuntu 22.04 version. Those *jammy* tags are one-offs, meaning they will not receive further updates, and you must plan your upgrade to the latest tags, **jdk11** or **jdk17,** that run on Ubuntu 24.04 (noble).\n\nRegards,\n\nEduardo Alvarenga \nAtlassian Support APAC\n\n**--please don't forget to Accept the answer if the reply is helpful--**\n"
},
{
"author": "Phill Pafford",
"body": "HI [@Eduardo Alvarenga](/t5/user/viewprofilepage/user-id/4365410) thanks for the explanation but for a released version you should not go back and update them with the same SEMVER, especially if there is a breaking change.\n\nThank you for the work around but this is disappointing as a consumer of Atlassian products.\n\n<https://semver.org/>\n\nNOTE: this also breaks what is documented\n\n<https://confluence.atlassian.com/bamkb/how-to-upgrade-the-java-version-used-by-bamboo-1252329397.html>\n\nBamboo 9.2 is the LTS as well:\n\n<https://confluence.atlassian.com/bambooreleases/bamboo-9-2-lts-change-log-1189803706.html>\n\nSo I'm not understanding how this is supported if you keep breaking backward capabilities\n"
},
{
"author": "Eduardo Alvarenga",
"body": "Hello [@Phill Pafford](/t5/user/viewprofilepage/user-id/704705)\n\nThank you for your concern. The version of Bamboo SEMVER has not changed. The Atlassian software remains the same as before. What changed was the Digest used by the base image, which is related to the docker tag and not a specific version. Due to an update in the Temurin Docker base image, our image ended up using that version once it was rebuilt.\n\nWe apologize for this, as it was beyond our control. To prevent this from happening again in the future if Temurin decides to update its base OS version, our images are now pinned to the Noble tag.\n\nKind regards,\n\nEduardo Alvarenga \nAtlassian Support APAC\n\n**--please don't forget to Accept the answer if the reply is helpful--**\n"
}
]
},
{
"author": "Yevhen",
"body": "[@Phill Pafford](/t5/user/viewprofilepage/user-id/704705) neither product binaries nor Java version have changed. The underlying OS and packages (especially packages) can change. We regularly rebuild and push images to get patched packages from Ubuntu repositories to mitigate CVEs. May I inquire about your use case? How exactly updating Ubuntu version impacted you?\n\nLike [@Eduardo Alvarenga](/t5/user/viewprofilepage/user-id/4365410) said, we'll be pinning base image tag to both jdk and ubuntu version (previously it was just jdk).\n",
"comments": [
{
"author": "Phill Pafford",
"body": "we use the base image and extend it to add additional capabilities, some of the install process relies on specific packages at the OS level, since the OS was updated, the packages are not compatible.\n\nI was not expecting the OS version to change in a tagged base image\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/All-Docker-Bamboo-remote-Agent-Images-for-9-2-x-were-updated/qaq-p/2769538 | [
"bamboo-server",
"server"
] |
{
"author": "???",
"title": "is it possible to pass Bamboo project or plan variable to ephemeral agent template YAML file?",
"body": "is it possible to pass Bamboo project or plan variable to ephemeral agent template YAML file?\n\nhow to handle bamboo variable when using ephemeral agent\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello [???](https://community.atlassian.com/t5/user/viewprofilepage/user-id/5545873),\n\nWelcome to Atlassian community.\n\nBamboo project and plan variables are independent of any agents, can you try to explain me your scenario properly, what exactly you are trying to achieve ?\n\nRegards,\n\nShashank Kumar\n",
"comments": [
{
"author": "???",
"body": "thanks to your reply, [@Shashank Kumar](/t5/user/viewprofilepage/user-id/4693340)\n\nas you know, when using remote agent, bamboo variables can be handled in script.\n\nbut, in ephemeral agent, I can handle any information about bamboo like plan trigger, commit hash or user input varibles.\n\nusually how can ephemeral agent read bamboo information?\n"
},
{
"author": "Shashank Kumar",
"body": "Hello [???](https://community.atlassian.com/t5/user/viewprofilepage/user-id/5545873),,\n\nThere is no change in the way ephemeral agent read bamboo information, Ephemeral agent is a kind of remote agent running on a Kubernetes Pod and only difference is that it will shutdown when the Job completes based on your setting.\n\nAll your variables defined in Bamboo and any script task will work as it is, it does not depend upon which agent is executing them.\n\nRegards,\n\nShashank Kumar\n\n**\\*\\*please don't forget to Accept the answer if your query was answered\\*\\***\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/is-it-possible-to-pass-Bamboo-project-or-plan-variable-to/qaq-p/2756857 | null |
{
"author": "Mkurama",
"title": "Failed to connect to ssl://bamboo:54663",
"body": "Hi all, \n\nI have bamboo server on Linux and client on Windows PC. \n\nwhen I try to install remote agent on the windows PC I get this error: \n\nINFO \\| jvm 1 \\| 2024/07/18 09:40:36 \\| 2024-07-18 09:40:36,079 WARN \\[ActiveMQ Task-1\\] \\[FailoverTransport\\] Failed to connect to \\[ssl://bamboo:54663?socket.verifyHostName=false\\&wireFormat.maxInactivityDuration=90000\\] after: 1 attempt(s) with bamboo, continuing to retry. \n\n<br />\n\nThank you\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello [Mkurama](https://community.atlassian.com/t5/user/viewprofilepage/user-id/4687169),\n\nWelcome to Atlassian community.\n\nThe issue probably seems to be that the Windows remote agent is not able to establish connection with the bamboo server or it not aware of the DNS : bamboo\n\nCan you run a quick telnet command from your remote agent server to your Bamboo server and see if the connectivity is established.\n\nYou can read <https://confluence.atlassian.com/bamkb/troubleshooting-remote-agents-216957427.html> for some detailed troubleshooting steps.\n\nRegards,\n\nShashank Kumar\n\n**\\*\\*please don't forget to Accept the answer if your query was answered\\*\\***\n",
"comments": null
}
] | https://community.atlassian.com/t5/Bamboo-questions/Failed-to-connect-to-ssl-bamboo-54663/qaq-p/2758074 | null |
{
"author": "Andrzej Wisi?ski",
"title": "Job in Docker problem",
"body": "Hi I'm new to Bamboo world and I'm having a problem while trying to run Job in Docker Container.\n\n'C:\\\\Program Files\\\\Docker\\\\Docker\\\\resources\\\\bin\\\\docker.exe run --volume C:\\\\Users\\\\Andrzej\\\\bamboo-agent-home\\\\xml-data\\\\build-dir\\\\SAL-SAL-JOB1:C:\\\\Users\\\\Andrzej\\\\bamboo-agent-home\\\\xml-data\\\\build-dir\\\\SAL-SAL-JOB1 --volume C:\\\\Users\\\\Andrzej\\\\bamboo-agent-home\\\\temp:C:\\\\Users\\\\Andrzej\\\\bamboo-agent-home\\\\temp --detach --name 5a38d756-eafa-4d18-bbda-c908f80ea3a1917506 5e72db905f20 tail -f /dev/null\\\\n ... in: C:\\\\Users\\\\Andrzej\\\\bamboo-agent-home\\\\xml-data\\\\build-dir\\\\SAL-SAL-JOB1\\\\nSTDERR: docker: Error response from daemon: invalid mode: \\\\Users\\\\Andrzej\\\\bamboo-agent-home\\\\xml-data\\\\build-dir\\\\SAL-SAL-JOB1.STDERR: See 'docker run --help'.\n\nI see that error is related to volumes that are mounted by default so I tried to remove them, but then my build fails with such issue:\n\n```\nFailing task since return code of [C:\\Users\\Andrzej\\AppData\\Local\\Temp\\runInDocker3907411279854472529.sh /usr/bin/bash test.sh] was -1 while expected \n```\n\ntest.sh is just a simple script that does one echo command so I really don't know why it returns -1. Could someone help?\n"
} | [
{
"author": "Jim Knepley - ReleaseTEAM",
"body": "I'm curious about the --volume parameters. I would normally expect something more like\n\n```\n--volume demo_volume:/data\n```\n\n...as opposed to having the volume and mount point be the same Windows path.\n",
"comments": [
{
"author": "Andrzej Wisi?ski",
"body": "To be honest I don't need volumes for now. But when I removed them from job setup I'm getting another error saying that my script returned -1.\n\n```\ncommand 15-Jul-2024 23:16:41 Beginning to execute external process for build 'Salesforce - Salesforce-CICD - Default Job #76 (SAL-SAL-JOB1-76)'\\n ... running command line: \\nC:\\Users\\Andrzej\\AppData\\Local\\Temp\\runInDocker7219650513349138895.sh /usr/bin/bash test.sh\\n ... in: C:\\Users\\Andrzej\\AppData\\Local\\Temp\\nsimple 15-Jul-2024 23:16:41 Failing task since return code of [C:\\Users\\Andrzej\\AppData\\Local\\Temp\\runInDocker7219650513349138895.sh /usr/bin/bash test.sh] was -1 while expected 0\n```\n\nScript is just only one echo command. Doesn't matter if its inline or file script.\n"
},
{
"author": "Jim Knepley - ReleaseTEAM",
"body": "I interpret a -1 return code to be something dramatic, like not having enough RAM or something (not saying that's the problem, just maybe something fundamental).\n\nThe ellipsis in your output makes me think the output was truncated. Try *docker logs* for that container and hopefully it will show you the full error.\n"
},
{
"author": "Andrzej Wisi?ski",
"body": "Maybe I'm wrong and I'll need volumes, because for some reason this runInDocker.sh script that is being copied to container tries to cd to my Windows path.\n\n# cat runInDocker984723768067173822.sh \n#!/bin/sh \ncd 'C:\\\\Users\\\\Andrzej\\\\Downloads\\\\bamboo\\\\bamboo\\\\xml-data\\\\build-dir\\\\SAL-SA-JOB1' \numask 000 \n'C:\\\\Users\\\\Andrzej\\\\Downloads\\\\bamboo\\\\bamboo\\\\temp\\\\SAL-SA-JOB1-26-ScriptBuildTask-8958078326951920057.bat' \nexit $?\n\nDo you know how I can handle this? For now I want my agent to create container, clone repository inside newly created container and run one script there.\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/Job-in-Docker-problem/qaq-p/2755309 | [
"docker"
] |
{
"author": "Rajesh kalyanam",
"title": "I see Bamboo Slowness in particular time",
"body": "Team ,\n\nWe have an issue where Bamboo is too slow in particular tiemings what could be the issue .\n\nwe are using version\n\n6.8.0\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello Rajesh,\n\nWelcome to Atlassian community.\n\nThere could be multiple reasons why Bamboo would be slow, here you have mentioned that you see this behaviour at particular timings, you can check few things.\n\n1. If you see that the behaviour is seen at particular timings, please check if there are any backup's scheduled at those timings\n\n2. Are there multiple builds which runs at those timings.\n\n3. Are there are expiry process scheduled\n\nThese are just few things which possibly can affect, the best way to check this would be to refer **\\<bamboo-home\\>logs\\>atlassian-bamboo.log** file and see what is Bamboo server during this time.\n\nYou should also monitor system resources like CPU, Heap and GC logging to check if there are any discrepancies during this time.\n\nRegards,\n\nShashank Kumar\n",
"comments": null
}
] | https://community.atlassian.com/t5/Bamboo-questions/I-see-Bamboo-Slowness-in-particular-time/qaq-p/2747044 | null |
{
"author": "Madhankumar M",
"title": "Why am I getting 401 ? Unauthorized response while calling bamboo REST API with valid credentials?",
"body": "I need to setup some environment variables and queue the last successful version for deployment using a python script.\n\nI'm doing something like this to get the last deployed versionId: \n\n```\nurl = f\"{base_url}/rest/api/latest/deploy/environment/{environment_id}/results\"\n```\n\n```\nheaders = {\"Accept\": \"application/json\"}\n```\n\n```\nresponse = requests.request(\"GET\", url, auth=(username, password), headers=headers)\n\nresponse = json.loads(response.text)\n\nreturn response[\"results\"][0][\"deploymentVersion\"][\"id\"]\n```\n\nThis was working fine until 2 days ago. Suddenly from yesterday, I'm getting a 401 Unauthorized error. \nI'm getting this page when I try the same via Insomnia \n \nThe interesting thing is, I'm able to do all the actions from the UI and using curl with the same credentials. Any idea what I'm missing?\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello [Madhankumar M](https://community.atlassian.com/t5/user/viewprofilepage/user-id/5540467),\n\nWelcome to Atlassian community\n\nI think probably the authentication is not coming correctly via Insomnia. Just to double check can you try to access this API via Postman and check if you are getting the same error?\n\nRegards,\n\nShashank Kumar\n",
"comments": [
{
"author": "Madhankumar M",
"body": "Hi [@Shashank Kumar](/t5/user/viewprofilepage/user-id/4693340), \n\nThanks for the reply. I tried using postman too. Same response.\n"
},
{
"author": "Shashank Kumar",
"body": "Hello Madhu,\n\nWhat errors do you see in **\\<bamboo-home\\>logs\\>atlassian-bamboo.log** file when you use the REST API from postman, does it print anything different from 401 error?\n\nRegards,\n\nShashank Kumar\n"
},
{
"author": "Madhankumar M",
"body": "Hey, I think I got what the issue is.\n\nSometimes when I login, bamboo asks for a captcha verification. Whenever that happens, I'm getting the 401 error while using the REST API. Once I login to the UI after completing the captcha verification, the API requests are going through. \n\nIs there a way to bypass captcha while accessing the REST API?\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/Why-am-I-getting-401-Unauthorized-response-while-calling-bamboo/qaq-p/2749996 | [
"python"
] |
{
"author": "Dilsha",
"title": "API response time",
"body": "The script task to get the result feedback from jira is failing if the time it takes is more than 5 minutes so how can we solve this problem\n"
} | [
{
"author": "Charlie Misonne",
"body": "Hi Dilsha\n\nWhat is taking more than 5min exactly? Are you executing a REST API call to Jira that takes so long to respond?\n",
"comments": null
}
] | https://community.atlassian.com/t5/Bamboo-questions/API-response-time/qaq-p/2744608 | null |
{
"author": "Anders Persson",
"title": "Does Bamboo Java Spec support Java version >= 17",
"body": "Today we use Bamboo 9.6.3 and Java Specs. After some reading i found that it support Java 11 (End of life Oct 2024). Will there be support for Java version \\>= 17?\n"
} | [
{
"author": "Marcin Gardias",
"body": "Specs for Bamboo 9.6 are compatible with 11 and 17 and use '1.8' language level by default.\n\nBamboo 10.0 is going to support JDK 17 only and you will be able to use language level 17 in specs.\n\nI hope that answers your question.\n",
"comments": [
{
"author": "Anders Persson",
"body": "Thank you. And when will 10.0 be released?\n"
},
{
"author": "Marcin Gardias",
"body": "Tentative date is around Aug 14, 2024\n"
}
]
},
{
"author": "Charlie Misonne",
"body": "On the [supported platforms page of Bamboo 9.6](https://confluence.atlassian.com/bamboo/supported-platforms-289276764.html) you will read that Java 17 is supported and Java 11 is being deprecated (meaning it will not be supported in future versions)\n",
"comments": [
{
"author": "Anders Persson",
"body": "Thanks. Found that page but wasn't sure if it stated the version for the server or the Bamboo Java Spec.\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/Does-Bamboo-Java-Spec-support-Java-version-gt-17/qaq-p/2741977 | null |
{
"author": "Peter Drexel",
"title": "Why does one build plan not actually do anything?",
"body": "We have a number of build plans that are working (i.e., calling the scripts and commands that we configured). However, we have one plan that does nothing when you run it manually or when it detects a repository change and runs automatically. When you run it manually, it appears from the web interface to execute, but quickly ends with no indication of failure but there are no artifacts and no log. This plan used to perform as expected so I guess something in the configuration has changed, but I'm not sure what.\n\nI did recently (Jul 3) change the branch name regex for a different plan, but I'm not sure how that could have affected the non-working plan. I did revert the change and the non-working plan is still not working.\n\nAny ideas would be appreciated\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello Peter,\n\nWelcome to Atlassian community.\n\nI am not sure at this point what is the error, probably can you once try to resave the repository and run the plan and see if it works.\n\nYou have mentioned that there are no build logs and no errors, can you check the below files in the remote agent logs using the build key and check if you get any errors.\n\n\\<bamboo-agent-home\\>logs\\>atlassian-bamboo.log file\n\nRegards,\n\nShashank Kumar\n\n**\\*\\*please don't forget to Accept the answer if your query was answered\\*\\***\n",
"comments": [
{
"author": "Peter Drexel",
"body": "When I attempt a manual build from the Bamboo web interface for our develop branch, no commands are executed and the the status goes green within seconds. I do see these entries in the log. The referenced commit corresponds to develop.\n\n2024-07-08 09:12:56,935 INFO \\[AtlassianEvent::0-BAM::EVENTS:pool-2-thread-20\\] \\[BitbucketBuildStatusUpdater\\] Unable to sent build status update to Bitbucket: POST <https://api.bitbucket.org/2.0/repositories/delta-q/smp_auth/commit/c958454f78c2e6c89b7346586ff0f01a68a8e834/statuses/build> returned a response status of 400 Bad Request\n\n<br />\n\n2024-07-08 09:12:56,982 INFO \\[AtlassianEvent::0-BAM::EVENTS:pool-2-thread-4\\] \\[BitbucketBuildStatusUpdater\\] Unable to sent build status update to Bitbucket: POST <https://api.bitbucket.org/2.0/repositories/delta-q/smp_auth/commit/c958454f78c2e6c89b7346586ff0f01a68a8e834/statuses/build> returned a response status of 400 Bad Request\n"
},
{
"author": "Shashank Kumar",
"body": "Hello David,\n\nThe error means Bamboo was not able to send the request back to Bitbucket after the build was triggered, but that's not the problem which you are trying to solve here.\n\nI think we'll need to see the build logs to see what the Bamboo plan is doing and also your plan structure to see what is suppose to be executed but it's not.\n\nI am not sure if you share this information publicly here, if not you can open a support request with Atlassian support.\n\nRegards,\n\nShashank Kumar\n"
},
{
"author": "Peter Drexel",
"body": "I'm Peter BTW.\n\nIf the log you're referring to is the one accessible via the logs tab in the web interface, there is none. It's as if the build doesn't think there is anything to do.\n\nInitially, I tried to get support from Atlassian, but we no longer have a support contract.\n\nThx,\n\nPete\n"
},
{
"author": "Shashank Kumar",
"body": "Hello Peter,\n\nApologies for calling you as David, let's do the below to investigate.\n\n1. Can you tell me at high level what are tasks which are in the particular Job.\n\n2. Is your build running on remote agent or local agent.\n\n3. You will see a build key for the plan which you are running on the Bamboo GUI, example SCRIP-TIC-56 which is {plan-key-buildnumber}\n\n4. Inside the agent which is running this build when the build starts you'll see below\n\n2024-07-08 17:06:17,703 INFO \\[2-BAM::agent1::Agent:Thread-16\\] \\[BuildAgentControllerImpl\\] SCRIP - TIC - Default Job #57 (SCRIP-TIC-JOB1-57) taken from queue.\n\n5. The below message is printed when the build completes\n\n2024-07-08 17:06:19,680 INFO \\[2-BAM::agent1::Agent:Thread-16\\] \\[RemoteResultProcessor\\] Build SCRIP - TIC - Default Job #57 (SCRIP-TIC-JOB1-57) completed on Bamboo agent. Sending results to server.\n\nCan you get all the logs in between 2 the two events for your plan and then we can check what is happening. These logs would be found on the agent which is running the build at \\<bamboo-agent-home\\>logs\\>atlassian-bamboo.log file.\n\nRegards,\n\nShashank Kumar\n"
},
{
"author": "Peter Drexel",
"body": "1) The high level tasks are\n\na) Source Code Checkout\n\nb) Git clean\n\nc) Call batch file to set some environment variables\n\nd) Compile/link\n\ne) Call batch file to publish files\n\n2) We use remote agents\n\n3) TEST-TBP-3151\n\n4) I don't think the build ever gets to the agent (it's too quick) and if it did get to the agent, I'm not sure which agent as there is no build log\n\n5) There is no such message for this build plan\n\n\n"
},
{
"author": "Peter Drexel",
"body": "Something I just realized is that when a new branch is created and pushed in Git, the build plan in question is not running automatically like it used to. Other expected build plans run, but not this one.\n"
},
{
"author": "Shashank Kumar",
"body": "Hello Peter,\n\nIf the build is showing as Green, it should have been sent to an agent, we need to identify which agent. Can you check the Bamboo server application logs for the below message\n\nCan you check all the below message when the Build was trigerred and the Build completed on the Bamboo server.\n\n```\n2024-07-09 08:55:58,041 INFO [12-DelayedChangeDetectionThread:pool-13-thread-1] [ChainExecutionManagerImpl] Build SCRIP-TIC-JOB1-58 has been dispatched\n2024-07-09 08:55:58,131 INFO [ActiveMQ Session Task-5] [BuildQueueManagerImpl] Sending SCRIP-TIC-JOB1-58 to agent agent1 (id: 688129, REMOTE, online, enabled)\n2024-07-09 08:56:00,358 INFO [AtlassianEvent::1-BAM::EVENTS:pool-2-thread-12] [ChainExecutionManagerImpl] Plan SCRIP-TIC-58: SCRIP - TIC has finished executing\n```\n\nOnce you are able to identify the agent, then you can check the agent logs as mentioned in the previous steps to investigate the problem.\n\nRegards,\n\nShashank Kumar\n"
},
{
"author": "Peter Drexel",
"body": "When I manually run the branch, here's what's added to atlassian-bamboo.log. I don't see the line you're referring to.\n\n2024-07-09 08:34:09,651 WARN \\[http-nio-8085-exec-25\\] \\[CacheAwareness$1\\] Inheriting disabledCaches:\\[com.atlassian.bamboo.CHANGE_DETECTION\\]\n\n<br />\n\n2024-07-09 08:34:10,666 INFO \\[7-DelayedChangeDetectionThread:pool-10-thread-20\\] \\[ChainExecutionManagerImpl\\] Plan TEST-TBP-3155: SSP - SSP Build has finished executing\n\n<br />\n\n2024-07-09 08:34:10,666 INFO \\[7-DelayedChangeDetectionThread:pool-10-thread-20\\] \\[PlanStatePersisterImpl\\] Updating delta states of build following TEST-TBP-3155 \n2024-07-09 08:34:10,666 INFO \\[AtlassianEvent::0-BAM::EVENTS:pool-2-thread-41\\] \\[DependencyChainListener\\] Checking children plans of \\[TEST-TBP\\] for plan TEST-TBP-3155\n\n<br />\n\n2024-07-09 08:34:10,682 INFO \\[AtlassianEvent::0-BAM::EVENTS:pool-2-thread-41\\] \\[DependencyChainListener\\] Finished checking children plans of 'SSP - SSP Build' for plan TEST-TBP-3155\n\n<br />\n\n2024-07-09 08:34:10,870 INFO \\[AtlassianEvent::0-BAM::EVENTS:pool-2-thread-29\\] \\[BitbucketBuildStatusUpdater\\] Unable to sent build status update to Bitbucket: POST <https://api.bitbucket.org/2.0/repositories/delta-q/smp_auth/commit/c958454f78c2e6c89b7346586ff0f01a68a8e834/statuses/build> returned a response status of 400 Bad Request\n\n<br />\n\n2024-07-09 08:34:10,916 INFO \\[AtlassianEvent::0-BAM::EVENTS:pool-2-thread-40\\] \\[BitbucketBuildStatusUpdater\\] Unable to sent build status update to Bitbucket: POST <https://api.bitbucket.org/2.0/repositories/delta-q/smp_auth/commit/c958454f78c2e6c89b7346586ff0f01a68a8e834/statuses/build> returned a response status of 400 Bad Request\n"
},
{
"author": "Shashank Kumar",
"body": "Hello Peter,\n\nIt's really strange to not have the Job startup logs and difficult to tell what's happening without the support zip.\n\nLet's do couple of quick things.\n\n1. Shutdown Bamboo and Restart it, this will recreate the plan cache and let's see if you get the same issue.\n\n2. Clone the plan and disable the original plan and run the clone plan and see if you see the same behaviour.\n\n3. You can also try to change the linked repository for the plan and see if you see the same issue.\n"
},
{
"author": "Peter Drexel",
"body": "1) I have tried this several times already with no effect\n\n2) I just did this and the new plan behaves the same way\n\n3) I'm not exactly sure what to do here. Do you want me to delete the plan's repository and then re-add it? Or, do you want me to create a new linked repository and then replace the plan's repository with the newly linked one?\n"
},
{
"author": "Peter Drexel",
"body": "Should I ask our admin to create a support zip? Is there a link on how to do that?\n"
},
{
"author": "Shashank Kumar",
"body": "Hello Peter,\n\nYou can create a new linked repository and then replace the plan's repository with the newly linked one and then run and see what happens.\n"
},
{
"author": "Shashank Kumar",
"body": "This is a public forum and we should not upload any support zip for your own safety.\n"
},
{
"author": "Peter Drexel",
"body": "OK, I figured it out. Apologies to all for not realizing it sooner. It turns out the job within the plan was disabled. I only discovered this because I went to recreate the plan instead of cloning it and I noticed under the Job Details tab that it had been disabled. I'm not sure when/how/who disabled it, but once it was re-enabled, the plan executed as expected. Thanks for all the help.\n"
},
{
"author": "Shashank Kumar",
"body": "Thanks Peter for letting us know the real issue.\n\nYou can check the Audit logs for the plan to check when was the Job disabled and by whom.\n\nRegards,\n\nShashank kumar\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/Why-does-one-build-plan-not-actually-do-anything/qaq-p/2746227 | null |
{
"author": "garrellj",
"title": "Why is the default variable bamboo.shortPlanBranchName blank",
"body": "I'm trying to reference ${bamboo.shortPlanBranchName} in my build plan\n\n<https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html>.\n\nIt works for branches other than the default branch, but when running the default branch, it returns blank.\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello garrellj,\n\nWelcome to Atlassian community.\n\nThis is expected because this build will return the name for only Plan branches and not the default branch ( main branch ).\n\nAs per the description at [Bamboo Variables](https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html)\n\n|----------------------------|----------------------------------------------------------------|\n| bamboo.shortPlanBranchName | The name of the current plan branch where the job is being run |\n\nFor the default branch if you need the same you can use\n\n|-----------------------------------------|-----------------------------------------------------------------|\n| bamboo.planRepository.branchDisplayName | The name of the branch displayed in the branch details section. |\n\nRegards,\n\nShashank Kumar\n\n**\\*\\*please don't forget to Accept the answer if your query was answered\\*\\***\n",
"comments": null
}
] | https://community.atlassian.com/t5/Bamboo-questions/Why-is-the-default-variable-bamboo-shortPlanBranchName-blank/qaq-p/2741575 | null |
{
"author": "Oleksii Kotukhov",
"title": "Bamboo stop ongoing build when a new one is scheduled",
"body": "If there are multiple pushes to branch, Bamboo schedules separated builds for every push which creates redundancy on the queue. We only care about the last build with the latest changes for ours pull requests. Therefore, is there any way/configuration to cancel ongoing/scheduled builds if new build is scheduled?\n"
} | [
{
"author": "Charlie Misonne",
"body": "Hi [@Oleksii Kotukhov](/t5/user/viewprofilepage/user-id/5533174) and welcome to the Atlassian Community!\n\nI'm not aware of such a setting. Canceling a build each time a new one starts does not sound ideal. What if your build is quite long and every time it almost completes there is a new push. Theoretically you could end up with commits all day long without a single completed build.\n\nInstead you could use the **quiet period** setting: [Globally enabling the repository quiet period \\| Bamboo Data Center 9.6 \\| Atlassian Documentation](https://confluence.atlassian.com/bamboo/globally-enabling-the-repository-quiet-period-1236444136.html)\n\nWith this setting Bamboo will not execute a build immediately but it will wait for some time to allow consecutive pushes to be built in a single run.\n",
"comments": [
{
"author": "Oleksii Kotukhov",
"body": "Hello [@Charlie Misonne](/t5/user/viewprofilepage/user-id/502263) we have cases when the build can take a long time to be executed. This can lead to a long queue with scheduled builds for the same branch. So I'm looking for some feature to allow canceling such \"duplicates\" automatically.\n"
},
{
"author": "Charlie Misonne",
"body": "Hi Oleski,\n\nWell nothing like that exists so you'd have to create your own plugin.\n\nOr creating external script listening checking the queue with this API endpoint: [Get api latest queue](https://developer.atlassian.com/server/bamboo/rest/api-group-api/#api-api-latest-queue-get)and [this one](https://developer.atlassian.com/server/bamboo/rest/api-group-api/#api-api-latest-queue-projectkey-buildkey-buildnumber-delete) to stop a build if another one has been queued.\n\nYou can also rethink your build process: do you really need to build on every commit? Why not just every hour, or every 2 hours, or... \nOr you could only build when a pull request is created. \nJust some ideas :-)\n"
}
]
},
{
"author": "Marcin Gardias",
"body": "The feature is coming in Bamboo 10.\n",
"comments": [
{
"author": "Oleksii Kotukhov",
"body": "Is there any official reference I can use? \nThank you in advance\n"
},
{
"author": "Marcin Gardias",
"body": "The official release is still few weeks away, but we've just published a release candidate: <https://community.developer.atlassian.com/t/bamboo-data-center-10-0-early-access-program-release/81426>\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/Bamboo-stop-ongoing-build-when-a-new-one-is-scheduled/qaq-p/2740821 | null |
{
"author": "Gouri",
"title": "Bamboo Data center v9.6.0 does not have option to 'Upload App'",
"body": "We have set up Bamboo 9.6.0 in our environment and when we navigate to Manage Apps, 'Upload App' Option is not present.\n\nThe problem is we need this option to test our plugins compatibility with new bamboo server version which we can not install through 'find new apps'\n\n\n\nI read for confluence this option nee\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello Gouri,\n\nWelcome to Atlassian community.\n\nStarting from Bamboo 9.5, the option to install new apps using the Upload app button on the Manage apps page or with the REST API is disabled by default. This change was made to prevent the inadvertent upload of potentially harmful files to your Bamboo instance.\n\nTo enable app installation with the Upload app button, you will have to set a specific system property as detailed in the release page in [Bamboo 9.5 release notes - Installing apps with the Universal Plugin Manager](https://confluence.atlassian.com/bambooreleases/bamboo-9-5-release-notes-1333337319.html#Bamboo9.5releasenotes-InstallingappswiththeUniversalPluginManager), i.e, add the property to JVM_SUPPORT_RECOMMENDED_ARGS; \n\n```\n-Dupm.plugin.upload.enabled=true \n```\n\nThe file to add the property is located in \"***\\<Bamboo-install\\>/bin/setenv.sh*** \". You can find more information on configuring system properties in this [link](https://confluence.atlassian.com/bamboo0905/configuring-your-system-properties-1345818971.html), you can refer the attached link to get details if you are using Windows environment.\n\nRegards,\n\nShashank kumar\n\n**\\*\\*please don't forget to Accept the answer if your query was answered\\*\\***\n",
"comments": null
},
{
"author": "Matt Simmons",
"body": "For the record, this is a totally ridiculous solution. If there's a security problem in the feature that people use, the answer should not be to disable the otherwise necessary feature until someone needs it, then require them to re-enable the still-broken feature. \n\nFix the problem instead. Is there a ticket tracking the remediation of the underlying security problem in the upload tool?\n",
"comments": [
{
"author": "Shashank Kumar",
"body": "Hello Matt,\n\nThe idea was to prevent unwanted uploads of potentially malicious files to your Bamboo instance, with the Upload apps option anyone can upload any files on your Bamboo Instance.\n\nCurrently there is no ticket raised for any further work on this, customers are requested to follow the workaround.\n\nRegards,\n\nShashank Kumar\n"
},
{
"author": "Matt Simmons",
"body": "So with the Upload Apps option enabled, any user, admin or otherwise, can upload malicious files to the instance?\n"
},
{
"author": "Shashank Kumar",
"body": "Hello Matt,\n\nThe Upload Apps option is visible only for Bamboo Admins and not for others this reduces the risks for anyone accessing this functionality.\n\nThis Functionality allows you to upload files of type .jar or .obr, while uploading Bamboo does not check what is inside the jar as it is custom applications developed outside of Bamboo.\n\n \n\nRegards,\n\nShashank Kumar\n"
}
]
}
] | https://community.atlassian.com/t5/Bamboo-questions/Bamboo-Data-center-v9-6-0-does-not-have-option-to-Upload-App/qaq-p/2739201 | null |
{
"author": "Shreyank Ramachandra",
"title": "View all Skipped tests",
"body": "Hi,\n\nI am seeing different skipped tests in Bamboo test result page. Also, I am not able to see the full list of all skipped tests. Has anyone come across this issue? any way to view full list? Please let me know. I am using Bamboo version 7.2.4 , not sure if this is bug in this version or some setting to be done.\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello [Shreyank](https://community.atlassian.com/t5/user/viewprofilepage/user-id/5528820),\n\nWelcome to Atlassian community.\n\nFor details about Skipped test currently there is a feature request raised, please see [BAM-20948 Build result summary should show details about skipped/Quarantined tests](https://jira.atlassian.com/browse/BAM-20948) unfortunately this has not gathered much attention.\n\nFor the difference in count there are few knows issues with the way Bamboo displays the number of tests, I am not sure if your issue is related to one of those, probably it will need some investigation with the build results, logs and the test xml to see the issue, I would suggest to raise a ticket with Atlassian support to check this.\n\nOne of the known issues : <https://jira.atlassian.com/browse/BAM-11366>\n\nRegards,\n\nShashank kumar\n\n**\\*please don't forget to Accept the answer if your query was answered\\*\\***\n",
"comments": null
}
] | https://community.atlassian.com/t5/Bamboo-questions/View-all-Skipped-tests/qaq-p/2735996 | null |
{
"author": "Okuhle Mbewu",
"title": "How to save pdf document to bamboo working directory",
"body": "I have a testcase where i need to click on the link to download document. but when i check if the file was available on the bamboo working directory it shows that directory is empty and no pdf was stored\n"
} | [
{
"author": "Shashank Kumar",
"body": "Hello Okuhle,\n\nWelcome to Atlassian Community.\n\nI am not sure on your setup, but probably you might have enabled \"Clean working directory after each build\" on the Job where the File is generated, can you uncheck this option by going to the Job configuration and see if the file is left after the build completes.\n\nRegards,\n\nShashank Kumar\n",
"comments": null
}
] | https://community.atlassian.com/t5/Bamboo-questions/How-to-save-pdf-document-to-bamboo-working-directory/qaq-p/2734520 | [
"java",
"selenium"
] |
Subsets and Splits