How do I query all open/aged tickets that have breached SLA?
Hi, @Ula Fitisemanu
Welcome to Atlassian Community!
Your question isn't entirely clear, as different teams measure SLA in various ways — for example, by time spent in a specific status, by time since the last update, or using a dedicated SLA plugin. If you're using Jira Service Management , SLA tracking is already built in.
If you just want to filter issues that haven’t been updated in over 30 days, you can use the following JQL: project = YOUR_PROJECT AND updated < startOfDay(-30)
Jira Service Management can track, that:
SLA is ok
"Time to resolution" = completed()
or breached
"Time to resolution" = breached()
you can track, by time left before breaching:
"Time to resolution" < remaining ("30d")
but you can't check, how long ago SLA was breached.
For other types of SLA tracking, please provide more details about your setup and what exactly you're trying to measure.
I'm not entirely clear what you want to achieve - can you expand your question? What do you want to see...
Perhaps the documentation on creating JQL queries for JSM would help:
https://support.atlassian.com/jira-service-management-cloud/docs/write-jql-queries-for-slas/
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.
If you want an easy way to find open tickets that are older than one month and have breached SLA, I recommend trying SLA Time and Report — an app developed by my team.
With it, you can:
It’s a convenient way to monitor overdue issues and take action quickly.
I hope this helps! If you have any questions, feel free to reach out!
Regards!
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.