Outdated version
You are browsing the docs for Nexus v1.9.x, the latest release is available here
Supervision
This endpoint returns information about the projections running on the current node.
Fetch projections
GET /v1/supervision/projections
Fetches the projections running on the current node.
Example
- Request
-
source
curl "http://localhost:8080/v1/supervision/projections"
- Response
-
source
{ "@context": "https://bluebrain.github.io/nexus/contexts/supervision.json", "projections": [ { "executionStrategy": "PersistentSingleNode", "metadata": { "module": "module", "name": "name", "project": "myorg/myproject" }, "progress": { "discarded": 1, "failed": 1, "instant": "1970-01-01T00:00:00Z", "offset": { "@type": "Start" }, "processed": 1 }, "restarts": 1, "status": "Running" }, { "executionStrategy": "TransientSingleNode", "metadata": { "module": "module", "name": "name", "project": "myorg/myproject" }, "progress": { "discarded": 1, "failed": 1, "instant": "1970-01-01T00:00:00Z", "offset": { "@type": "Start" }, "processed": 1 }, "restarts": 0, "status": "Running" } ] }
v1.9.x