You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Unlike labels in Jira, when I start to type a tag in Opsgenie, there is no autofill. I would like to get a list of all the tags that are in use in Opsgenie. Is there a way to get that list?
Hi @richard.n.pykkonen ,
Opsgenie doesn't have an autofill for tags at this time.
You could review the alerts in the Analytics tab >> Alert Analytics report. Add a filter that looks something like this, then export the list via CSV and manipulate the data there:
There's also this table in the Alert Analytics report that shows the most used tags based on the report's filter as well:
You could also run a query in the Alerts tab for something like:
tag !: null
and export these alerts via CSV as well:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can query on the alerts that have tags with something like either of these using the API:
tag !: null
https://api.opsgenie.com/v2/alerts?query=tag%20%21%3A%20null
or using a wildcard: tag: "*"
https://api.opsgenie.com/v2/alerts?query=tag%3A%20%22%2A%22
The incident query isn't as robust, and does not support Null querying. You could probably get away with using a wildcard with something like this for the incident API:
https://api.opsgenie.com/v1/incidents?query=tag%3A%20%22%2A%22
I typically use a URL encoder to help determine what the query should be:
Other helpful documents:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.