Indexing API
- Documents
- Permissions
- Troubleshooting
- Datasources
- Authentication
- People
- Shortcuts
Client API
- Activity
- Announcements
- Answers
- Authentication
- Calendar
- Chat
- Collections
- Displayable Lists
- Documents
- Images
- Insights
- Messages
- Pins
- Search
- Entities
- Shortcuts
- Summarize
- Tools
- User
- Verification
Actions API
- Authentication
- Setup
Beta: Get datasource status
Gather information about the datasource’s overall status. Currently in beta, might undergo breaking changes without prior notice.
Tip: Refer to the Troubleshooting tutorial for more information.
curl --request POST \
--url https://{domain}-be.glean.com/api/index/v1/debug/{datasource}/status \
--header 'Authorization: Bearer <token>'
{
"documents": {
"bulkUploadHistory": {},
"counts": {
"uploaded": [
{
"objectType": "Article",
"count": 15
}
],
"indexed": [
{
"objectType": "Article",
"count": 15
}
]
},
"processingHistory": [
{
"startTime": "2021-08-06T17:58:01.000Z",
"endTime": "2021-08-06T18:58:01.000Z"
}
]
},
"identity": {
"processingHistory": [
{
"startTime": "2021-08-06T17:58:01.000Z",
"endTime": "2021-08-06T18:58:01.000Z"
}
],
"users": {
"bulkUploadHistory": {},
"counts": {
"uploaded": 15
}
},
"groups": {
"bulkUploadHistory": {},
"counts": {
"uploaded": 15
}
},
"memberships": {
"bulkUploadHistory": {},
"counts": {
"uploaded": 15
}
}
},
"datasourceVisibility": "ENABLED_FOR_ALL"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The datasource to get debug status for.
Response
Describes the response body of the /debug/{datasource}/status API call
Information about active and recent successful uploads for the datasource
Information about a successful bulk upload
The unique ID of the upload
"upload-id-content-1707403081"
The start time of the upload in ISO 8601 format
"2021-08-06T17:58:01.000Z"
The end time of the upload in ISO 8601 format, 'NA' if the upload is still active
"2021-08-06T18:58:01.000Z"
The status of the upload, an enum of ACTIVE, SUCCESSFUL
ACTIVE
, SUCCESSFUL
"SUCCESSFUL"
The current state of the upload, an enum of UNAVAILABLE, UPLOAD STARTED, UPLOAD IN PROGRESS, UPLOAD COMPLETED, DELETION PAUSED, INDEXING COMPLETED
UNAVAILABLE
, UPLOAD STARTED
, UPLOAD IN PROGRESS
, UPLOAD COMPLETED
, DELETION PAUSED
, INDEXING COMPLETED
"UPLOAD COMPLETED"
Information about processing history for the datasource
Processing history event for a datasource
Information about processing history for the datasource
Processing history event for a datasource
Information about active and recent successful uploads for the datasource
Information about a successful bulk upload
The unique ID of the upload
"upload-id-content-1707403081"
The start time of the upload in ISO 8601 format
"2021-08-06T17:58:01.000Z"
The end time of the upload in ISO 8601 format, 'NA' if the upload is still active
"2021-08-06T18:58:01.000Z"
The status of the upload, an enum of ACTIVE, SUCCESSFUL
ACTIVE
, SUCCESSFUL
"SUCCESSFUL"
The current state of the upload, an enum of UNAVAILABLE, UPLOAD STARTED, UPLOAD IN PROGRESS, UPLOAD COMPLETED, DELETION PAUSED, INDEXING COMPLETED
UNAVAILABLE
, UPLOAD STARTED
, UPLOAD IN PROGRESS
, UPLOAD COMPLETED
, DELETION PAUSED
, INDEXING COMPLETED
"UPLOAD COMPLETED"
Information about active and recent successful uploads for the datasource
Information about a successful bulk upload
The unique ID of the upload
"upload-id-content-1707403081"
The start time of the upload in ISO 8601 format
"2021-08-06T17:58:01.000Z"
The end time of the upload in ISO 8601 format, 'NA' if the upload is still active
"2021-08-06T18:58:01.000Z"
The status of the upload, an enum of ACTIVE, SUCCESSFUL
ACTIVE
, SUCCESSFUL
"SUCCESSFUL"
The current state of the upload, an enum of UNAVAILABLE, UPLOAD STARTED, UPLOAD IN PROGRESS, UPLOAD COMPLETED, DELETION PAUSED, INDEXING COMPLETED
UNAVAILABLE
, UPLOAD STARTED
, UPLOAD IN PROGRESS
, UPLOAD COMPLETED
, DELETION PAUSED
, INDEXING COMPLETED
"UPLOAD COMPLETED"
Information about active and recent successful uploads for the datasource
Information about a successful bulk upload
The unique ID of the upload
"upload-id-content-1707403081"
The start time of the upload in ISO 8601 format
"2021-08-06T17:58:01.000Z"
The end time of the upload in ISO 8601 format, 'NA' if the upload is still active
"2021-08-06T18:58:01.000Z"
The status of the upload, an enum of ACTIVE, SUCCESSFUL
ACTIVE
, SUCCESSFUL
"SUCCESSFUL"
The current state of the upload, an enum of UNAVAILABLE, UPLOAD STARTED, UPLOAD IN PROGRESS, UPLOAD COMPLETED, DELETION PAUSED, INDEXING COMPLETED
UNAVAILABLE
, UPLOAD STARTED
, UPLOAD IN PROGRESS
, UPLOAD COMPLETED
, DELETION PAUSED
, INDEXING COMPLETED
"UPLOAD COMPLETED"
The visibility of the datasource, an enum of VISIBLE_TO_ALL, VISIBLE_TO_TEST_GROUP, NOT_VISIBLE
ENABLED_FOR_ALL
, ENABLED_FOR_TEST_GROUP
, NOT_ENABLED
"ENABLED_FOR_ALL"
Was this page helpful?
curl --request POST \
--url https://{domain}-be.glean.com/api/index/v1/debug/{datasource}/status \
--header 'Authorization: Bearer <token>'
{
"documents": {
"bulkUploadHistory": {},
"counts": {
"uploaded": [
{
"objectType": "Article",
"count": 15
}
],
"indexed": [
{
"objectType": "Article",
"count": 15
}
]
},
"processingHistory": [
{
"startTime": "2021-08-06T17:58:01.000Z",
"endTime": "2021-08-06T18:58:01.000Z"
}
]
},
"identity": {
"processingHistory": [
{
"startTime": "2021-08-06T17:58:01.000Z",
"endTime": "2021-08-06T18:58:01.000Z"
}
],
"users": {
"bulkUploadHistory": {},
"counts": {
"uploaded": 15
}
},
"groups": {
"bulkUploadHistory": {},
"counts": {
"uploaded": 15
}
},
"memberships": {
"bulkUploadHistory": {},
"counts": {
"uploaded": 15
}
}
},
"datasourceVisibility": "ENABLED_FOR_ALL"
}