Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

opsgenie alert-api

Edited

From opsgenie alert-api, I am trying to get the alerts list for a particular team for last week Monday 8am to current week's Monday 8 am.

Can some one help me modify this query pls

response = requests.get('https://api.opsgenie.com/v2/alerts?query=createdAt%3A2019-04-29T08:00:00&teams=Site reliability&sort=createdAt&order=desc', headers=headers)

Appreciate  the help

3 answers

1 accepted

0 votes
Answer accepted
Gökçem
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 17, 2019 • edited

Hi there,

 

Thanks to contact with Opsgenie. You can use the following query:

https://api.opsgenie.com/v2/alerts?query=createdAt>1557129600+AND+createdAt<1557734400+AND+teams="Site reliability"&sort=createdAt&order=asc

 

For the time format we are using UNIX time stamp. And if you are searching for multiple queries "+AND+" should be used between them. (1557129600 for 06-05-2019 08.00.00 and 1557734400 for 13-06-2019 08.00.00)

 

Hope this helps to your API request. Best regards,

Thanks for the help!

Sorry for having to warm up this topic. Maybe in the meantime the API changed. But for me this does not work.

If I want to query this (UNIX timestamps)

https://api.eu.opsgenie.com/v2/alerts/?sort=createdAt&query=createdAt>1698218567+AND+createdAt<1698823367+AND+status=open+AND+acknowledged=true

and urlencode the query so that it looks like this:

https://api.eu.opsgenie.com/v2/alerts/?sort=createdAt&query=createdAt%3E1698218608%2BAND%2BcreatedAt%3C1698823408%2BAND%2Bstatus%3Dopen%2BAND%2Backnowledged%3Dtrue

I get this error from the API

"Time is accepted in following formats: [dd-MM-yyyy] - [dd-MM-yyyy'T'hh:mm:ss] - [dd-MM-yyyy'T'HH:mm:ssz]"

It should work according to the docs here: https://support.atlassian.com/opsgenie/docs/search-queries-for-alerts/

If I change the timestamp format it looks like this:

https://api.eu.opsgenie.com/v2/alerts/?sort=createdAt&query=createdAt>25-10-2023+AND+createdAt<01-11-2023+AND+status=open+AND+acknowledged=true
https://api.eu.opsgenie.com/v2/alerts/?sort=createdAt&query=createdAt%3E25-10-2023%2BAND%2BcreatedAt%3C01-11-2023%2BAND%2Bstatus%3Dopen%2BAND%2Backnowledged%3Dtrue

But I still get the same error message.

Any Idea what I might do wrong?

Just had some idea and replaced "+" with " " (whitespace) before urlencoding.

This did the trick. Now the returned alerts look valid. So, looks to me like there was really a change in the API.

you might wanna pubish this in the API documentation. Kinda basic information for everybody, yet not mentioned there...

This seems to be documented here: https://docs.opsgenie.com/docs/alert-api#list-alerts currently.

I meant the +AND+ part. That is something that many would need, yet I haven't found it described in the documentation.

Well, yeah - an example there would be nice. Generally the documentation refers to https://support.atlassian.com/opsgenie/docs/search-queries-for-alerts/ (with no direct URL and one has to search it yourself) which kind of explains it and then you have to combine it with html encoding (+), yes.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events