Python
import requests url = "https://{FUSION HOST}/api/collections/{collection}/partitions/status" response = requests.get(url) print(response.json())
[ { "status": "starting", "node": "<string>", "messages": [ { "date": "2023-11-07T05:31:56Z", "message": "<string>" } ] } ]
Get the status of a collection’s partitions.
Collection ID.
successful operation
starting
ok
warning
error
shutdown
Show child attributes
Was this page helpful?