How to increase the Velocity Chart's limit of 120 sprints and 25000 estimated issues in Jira Data Center

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

The Velocity chart includes estimates (committed and completed) from all issues in your sprints. For performance reasons, we’re showing a maximum of 25,000 issues.

The chart includes only completed sprints whoseEnd dateis within your chosen timeframe. By default, it shows the maximum of 120 sprints—if your timeframe includes more, we’ll show the latest 120.

Solution

Changing the Limit

It is possible to run the limit using a REST method:

1 <JIRA_URL>/rest/greenhopper/1.0/rapid/charts/velocity/max-sprints
1 <JIRA_URL>/rest/greenhopper/1.0/rapid/charts/velocity/max-issues

Both of the endpoints for changing limits accept two HTTP methods:

GET to check the current limit (any changes are also added to the audit log and logged as WARN in the regular logs)

PUT with JSON body like {"value": "120"}

1 curl -vvv -XPUT http://<myjira.base.url:port>/rest/greenhopper/1.0/rapid/charts/velocity/max-issues -H 'Content-Type: application/json' -d '{"value": "30000"}' -u <your Jira admin user>

The REST will return the HTTP response 204 if the execution was successful.

Updated on March 6, 2025

Still need help?

The Atlassian Community is here for you.