• Approval
  • Customer
  • Customer Request
  • Customer Transition
  • Jira Service Management Application
  • Organization
  • Organization Service Desk
  • Portals
  • Queue
  • Queue Settings
  • Request Attachment
  • Request Type
  • Request Type Permissions
  • Service Desk
  • Service Desk Customer
  • application-properties
  • applicationrole
  • attachment
  • avatar
  • cluster
  • comment
  • component
  • configuration
  • customFieldOption
  • customFields
  • dashboard
  • email-templates
  • field
  • filter
  • group
  • groups
  • groupuserpicker
  • index
  • index-snapshot
  • issue
  • issueLinkType
  • issuesecurityschemes
  • issuetype
  • issuetypescheme
  • jql
  • licenseValidator
  • monitoring
  • mypermissions
  • mypreferences
  • myself
  • notificationscheme
  • password
  • permissions
  • permissionscheme
  • priority
  • priorityschemes
  • project
  • projectCategory
  • projects
  • projectvalidate
  • reindex
  • resolution
  • role
  • screens
  • securitylevel
  • serverInfo
  • session
  • settings
  • status
  • statuscategory
  • terminology
  • universal_avatar
  • upgrade
  • user
  • version
  • websudo
  • workflow
  • workflowscheme
  • worklog
  • Assets - AQL
  • Assets - Analytics
  • Assets - Archived Objects
  • Assets - Attachments
  • Assets - Comments
  • Assets - Icons
  • Assets - Index Configuration
  • Assets - Object
  • Assets - Object Archive
  • Assets - Object Attribute
  • Assets - Object Connected Tickets
  • Assets - Object Restore
  • Assets - Object Schema
  • Assets - Object Type
  • Assets - Object Type Attribute
  • Assets - Progress
  • Assets - QR Code
  • Assets - Status Types
Server
Jira Service Management / Reference / REST API

index

Postman Collection
OpenAPI
GET

Get index condition summaryExperimental

Returns a summary of the index condition of the current node. The returned data consists of:

  • nodeId - Node identifier.
  • reportTime - Time of this report creation.
  • issueIndex - Summary of the issue index status.
  • replicationQueues - Map of index replication queues, where keys represent nodes from which replication operations came from.

issueIndex can contain: - indexReadable - If false the endpoint failed to read data from the issue index (check Jira logs for detailed stack trace), otherwise true. - countInDatabase - Count of issues found in the database. - countInIndex - Count of issues found while querying the index. - lastUpdatedInDatabase - Time of the last update of the issue found in the database. - lastUpdatedInIndex - Time of the last update of the issue found while querying the index. replicationQueues's map values can contain: - lastConsumedOperation - Last executed index replication operation by the current node from the sending node's queue. - lastConsumedOperation.id - Identifier of the operation. - lastConsumedOperation.replicationTime - Time when the operation was sent to other nodes. - lastOperationInQueue - Last index replication operation in the sending node's queue. - lastOperationInQueue.id - Identifier of the operation. - lastOperationInQueue.replicationTime - Time when the operation was sent to other nodes. - queueSize - Number of operations in the queue from the sending node to the current node.

Request

This request has no parameters.

Responses

Returns an object with data about the condition of the Jira node's index

application/json

IndexSummaryBean
GET/api/2/index/summary
1 2 3 4 curl --request GET \ --url 'http://{baseurl}/rest/api/2/index/summary' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'

Rate this page: