Get the Solr config status
import requests
url = "https://{FUSION HOST}/api/collections/{collection}/solr-config/status"
response = requests.get(url)
print(response.text)[
{
"node": "<string>",
"messages": [
{
"date": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}
]Get the Solr config status
Check the status of a collection’s Solr config.
GET
/
collections
/
{collection}
/
solr-config
/
status
Get the Solr config status
import requests
url = "https://{FUSION HOST}/api/collections/{collection}/solr-config/status"
response = requests.get(url)
print(response.text)[
{
"node": "<string>",
"messages": [
{
"date": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}
]Was this page helpful?
⌘I