We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d82c75 commit 6f0dc18Copy full SHA for 6f0dc18
atlassian/VERSION
@@ -1 +1 @@
1
-3.10.0
+3.11.0
atlassian/jira.py
@@ -2805,6 +2805,16 @@ def reindex_project(self, project_key):
2805
def reindex_issue(self, list_of_):
2806
pass
2807
2808
+ def index_checker(self, max_results=100):
2809
+ """
2810
+ Jira DC Index health checker
2811
+ :param max_results:
2812
+ :return:
2813
2814
+ url = "/rest/indexanalyzer/1/state"
2815
+ params = {"maxResults": max_results}
2816
+ return self.get(url, params=params)
2817
+
2818
def get_server_info(self, do_health_check=False):
2819
"""
2820
Returns general information about the current Jira server.
0 commit comments