- URL:https://<indexer-url>/status
- Required Capability:Default administrator role | Security and infrastructure privilege
- Version Introduced:10.2.2
Description
The status resource allows you to view the status of the indexing service. You can view the number of users, groups, and search items in both the database (store) and the index.
If the database and index do not match, indexing is either in progress or there is a problem with the index. It is recommended that you reindex to correct any issues. If indexing is in progress, you can monitor the status by refreshing the page.
Request parameters
Parameter | Details |
---|---|
f | The response format. The default response format is html. Values: html | json | pjson |
Example usage
Below is a sample request URL for the status resource:
https://machine.domain.com/webadaptor/portaladmin/system/indexer/status?f=json
JSON Response example
{
"indexes": [
{
"name": "users",
"databaseCount": 26,
"indexCount": 26
},
{
"name": "groups",
"databaseCount": 145,
"indexCount": 145
},
{
"name": "search",
"databaseCount": 2699,
"indexCount": 2699
}
]
}