Hello Atlassian Community! I'd like to make a small disclaimer: I am quite a newbie to the Atlassian world.
But nevertheless, I need to create a set of reports in JSM where the configuration is mainly based on the ability to enter a date range and select specific agents to accurately report on tickets.
I've tried to do it through the Custom Reports and through Dashboards, but it can do either one thing or another. And I need it all altogether.
Maybe somebody knows an extension or add-on that can help, or maybe I'm just missing something.
Examples of reports:
Tickets Escalated – the ability to enter a date range and report on all tickets escalated to the two relevant support teams within a timeframe.
Tickets worked on – the ability to enter a date range and select specific agents to report on all tickets they have worked on within that timeframe
Tickets resolved – the ability to enter a date range and select specific agents to accurately report on tickets that were closed in that timeframe
Tickets created – the ability to enter a date range and select specific agents to accurately report on tickets created in that timeframe including any that have since been escalated to another service team.
Tickets assigned to agents; out of resolution SLA/out of customer updates SLA - the ability to report on the tickets currently assigned to any agent within a team that is out of SLA.
Tickets resolved within resolution SLA – the ability to enter a date range and select specific agents to report on all tickets that were resolved in resolution SLA in that timeframe.
Tickets resolved out of resolution SLA – the ability to enter a date range and select specific agents to report on all tickets that were not resolved in resolution SLA in that timeframe.
Tickets resolved within customer update SLA – the ability to enter a date range and select specific agents to report on all tickets that were resolved in that timeframe and met the customer update SLA.
Tickets resolved out of customer update SLA – the ability to enter a date range and select specific agents to report on all tickets that were resolved in that timeframe and did not meet the customer update SLA.
I would appreciate any help!
Welcome to the community @Yana Neverko !
If you're ok with using third-party add-ons, you can try Time in Status for Jira Cloud. It generates 7 types of status time reports, which can help you to:
- track how long each issue has been staying in each status;
- monitor how long it takes each team member to solve the issue;
- discover Issue Age;
- track the Average time spent in status;
- monitor the date when the issue has entered each of the statuses;
- Cycle and Lead time for each issue;
and much more.
All you need is to choose the necessary report and the date ranges you need.
Also, you can export these reports as CSV or XLSX files.
This add-on is developed by my SaaSJet team. Please, let me know if you have any questions.
Hope it helps you.
HI @Yana Neverko ,
welcome to the Atlassian community!
In order to have interactive reports, my suggestion is to try https://marketplace.atlassian.com/apps/1211051/eazybi-reports-and-charts-for-jira?tab=overview&hosting=cloud
Hope this helps,
Fabio
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 are welcome @Yana Neverko
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, @Fabio Racobaldo _Herzum_ for recommending the eazyBI app.
@Yana Neverko with the eazyBI reporting app, you can analyze JSM and Jira tickets from different perspectives and bring report filters so users can interact with the report. For example, set "Time", "Assignee," and "Assignee Group" dimensions as filters to run reports for different periods and groups of people
To save you some time and see eazyBI capabilities, you might want to check out the Demo account with several JSM sample reports: https://eazybi.com/accounts/1001/dashboards/8347-sla-overview
Feel free to open any report and see what is behind it. No login or installation is needed in the Demo.
Best,
Zane / Support@eazyBI.com
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.
Hello @Yana Neverko ,
Some of the things you ask can be achieved with simple JQL.
(I presume you change the status and/or assignees of tickets while escalating between different teams)
You can use the template JQL below to filter issues based on their status and assignee changes
assignee was admin
//assignee is currently admin or assignee was admin at some point in the past
assignee changed TO membersOf('jira-software-users') BY john.doe AFTER "2023-01-01 00:00" BEFORE "2023-01-04 00:00"
// assignee was changed to a member of the given group between the given dates. The change was made by john.doe
status changed TO resolved BY jane.doe AFTER "2023-01-01 00:00" BEFORE "2023-01-04 00:00"
// status was changed to resolved between the given dates. The change was made by jane.doe
The "was" and "changed" operators are special ones that allow you to filter issues based on change history. Not all fields support these operators but they can be used with status and assignee fields. The TO, BY, AFTER, BEFORE parts of the query can be used individually. You can refer to the following Atlassian documentation about the details of these operators.
Beyond that, for needs related to measuring times, I can recommend the app built by our team at OBSS, Timepiece - Time in Status for Jira. It is available for Jira Server, Cloud, and Data Center.
Time in Status mainly allows you to see how much time each issue spent on each status, on each assignee, or on each group.
Time in Status does not have SLA targets to set but it can report times and allows you to filter and sort issues based on those times. (Which JQL can't do)
All Time in Status reports supports custom calendars. That means you can define your custom work calendars with their own working days and working hours. Time in Status will calculate durations only spent in those calendar hours.
These reports show a list of issues by default so you can see the metric values for each issue separately. Also, for all numeric report types, you can calculate averages and sums of those durations grouped by the issue fields you select. For example total cycle time per customer (organization) or average resolution time per sprint, week, month, issuetype, request type, etc. The ability to group by parts of dates (year, month, week, day, hour) or sprints is particularly useful here since it allows you to compare different time periods or see the trend.
Time in Status calculates its reports using already existing Jira issue histories so when you install the app, you don't need to add anything to your issue workflows and you can get reports on your past issues as well. It supports both Company Managed and Team Managed projects.
Time in Status reports can be accessed through its own reporting page, dashboard gadgets, and issue view screen tabs. All these options can provide both calculated data tables and charts.
And the app has a REST API so you can get the reports from Jira UI or via REST.
Using Time in Status you can:
Timepiece - Time in Status for Jira
EmreT
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What kind of report on your agents do you need?
If you need to track past user activities, check out Issue History for Jira.
You can filter tickets by date range and select specific agents here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Yuliia_Borivets__SaaSJet_ , I need a set of reports:
Tickets Escalated – the ability to enter a date range and report on all tickets escalated to the two relevant support teams within a timeframe.
Tickets worked on – the ability to enter a date range and select specific agents to report on all tickets they have worked on within that timeframe
Tickets resolved – the ability to enter a date range and select specific agents to accurately report on tickets that were closed in that timeframe
Tickets created – the ability to enter a date range and select specific agents to accurately report on tickets created in that timeframe including any that have since been escalated to another service team.
Tickets assigned to agents; out of resolution SLA/out of customer updates SLA - the ability to report on the tickets currently assigned to any agent within a team that is out of SLA.
Tickets resolved within resolution SLA – the ability to enter a date range and select specific agents to report on all tickets that were resolved in resolution SLA in that timeframe.
Tickets resolved out of resolution SLA – the ability to enter a date range and select specific agents to report on all tickets that were not resolved in resolution SLA in that timeframe.
Tickets resolved within customer update SLA – the ability to enter a date range and select specific agents to report on all tickets that were resolved in that timeframe and met the customer update SLA.
Tickets resolved out of customer update SLA – the ability to enter a date range and select specific agents to report on all tickets that were resolved in that timeframe and did not meet the customer update SLA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can search the Marketplace for some plugins for SLA monitoring. From my team, I can suggest SLA Time and Report. It can show the most data you need. Also, you can schedule a demo call with our product manager to discuss your case.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can try Status Time Reports app developed by our team. It mainly provides reports and gadgets based on how much time passed in each status.
Here is the online demo link, you can see it in action and try without installing the app.
If you are looking for a free solution, you can try the limited version Status Time Free.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the community !!
If you would be interested in a mktplace solution, you can try out our plugin,
The add-on provides the time in each status for the entire lifecycle of the issue, based on the date range, assignees and multiple other filters.
Disclaimer : I work for RVS, the vendor for this app
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.