get /connection-manager/api/v1/status

Get microservice status

Response

ExamplesSchema

Microservice status OK

{
  "version": "string",
  "api_version": "string",
  "status": "RUNNING",
  "status_message": "string",
  "issues": [
    {
      "severity": "NOTICE",
      "code": "string",
      "message": "string",
      "created": "2023-06-07T17:32:28Z",
      "updated": "2023-06-07T17:32:28Z"
    }
  ],
  "status_details": [
    {
      "k": "string",
      "v": "string"
    }
  ],
  "app_id": "5bf77342-221c-11ee-be56-0242ac120002",
  "start_time": "2023-06-07T17:32:28Z"
}

get /connection-manager/api/v1/ueba/status

Get Ueba microservice status

Authorization

string

required

OAuth2 token

Default
"Bearer a-proper-token-goes-here"

Response

ExamplesSchema

Microservice status OK

{
  "version": "string",
  "api_version": "string",
  "status": "RUNNING",
  "status_message": "string",
  "issues": [
    {
      "severity": "NOTICE",
      "code": "string",
      "message": "string",
      "created": "2023-06-07T17:32:28Z",
      "updated": "2023-06-07T17:32:28Z"
    }
  ],
  "status_details": [
    {
      "k": "string",
      "v": "string"
    }
  ],
  "app_id": "5bf77342-221c-11ee-be56-0242ac120002",
  "start_time": "2023-06-07T17:32:28Z"
}

get /connection-manager/api/v1/ueba/status/internal

Get Ueba microservice internal status

Authorization

string

required

OAuth2 token

Default
"Bearer a-proper-token-goes-here"

Response

ExamplesSchema

Ueba microservice detailed status

{
  "training_status": "MODELS_MISSING",
  "inference_status": "RUNNING",
  "dataset_id": "5bf77342-221c-11ee-be56-0242ac120002",
  "model_instance_status": [
    {
      "id": "5bf77342-221c-11ee-be56-0242ac120002",
      "feature_config_name": "string",
      "status": "RUNNING",
      "created": "2023-06-07T17:32:28Z"
    }
  ]
}

Was this page helpful?