This web service returns the health report of a Fluid Topics tenant hosted on the server.
Method | Endpoint |
---|---|
GET |
/api/health?components=search,contentRepository,mongoDb |
Query string parameter | Type | Required? | Description |
---|---|---|---|
components |
String | Yes | An optional argument to filter the components to check |
The web service also supports the tenant domain name.
Method | Endpoint |
---|---|
GET |
/api/health?components=search,contentRepository,mongoDb |
Query string parameter | Type | Required? | Description |
---|---|---|---|
components |
String | Yes | An optional argument to filter the components to check. The available components are the following:
|
Response body
{
"status": "UP",
"search": {
"status": "UP"
},
"contentRepository": {
"status": "UP"
},
"mongoDb": {
"status": "UP"
}
}