For the complete documentation index, see llms.txt. This page is also available as Markdown.

Status

matcherStatus

get

This method return the complete information of the cluster and its nodes.

Responses
200

OK

application/json
get/status
GET /gbds/v2/status HTTP/1.1
Host: <ip>:8085
Accept: */*
{
  "data": {
    "configuredMatchers": 1,
    "peopleCount": 1,
    "ulCount": 1,
    "nodes": [
      {
        "hostname": "text",
        "monitorPort": 1,
        "status": "NONE",
        "configuredMatchers": 1,
        "peopleCount": 1,
        "ulCount": 1,
        "memory": {
          "FINGERPRINT": {
            "size": 1,
            "total": 1
          },
          "PALMPRINT": {
            "size": 1,
            "total": 1
          },
          "NEWBORN": {
            "size": 1,
            "total": 1
          },
          "UL_FINGERPRINT": {
            "size": 1,
            "total": 1
          },
          "UL_PALMPRINT": {
            "size": 1,
            "total": 1
          },
          "FACE": {
            "size": 1,
            "total": 1
          },
          "IRIS": {
            "size": 1,
            "total": 1
          }
        },
        "activeMatchers": [
          {
            "name": "text",
            "peopleCount": 1,
            "ulCount": 1,
            "memory": {
              "FINGERPRINT": {
                "size": 1,
                "total": 1
              },
              "PALMPRINT": {
                "size": 1,
                "total": 1
              },
              "NEWBORN": {
                "size": 1,
                "total": 1
              },
              "UL_FINGERPRINT": {
                "size": 1,
                "total": 1
              },
              "UL_PALMPRINT": {
                "size": 1,
                "total": 1
              },
              "FACE": {
                "size": 1,
                "total": 1
              },
              "IRIS": {
                "size": 1,
                "total": 1
              }
            }
          }
        ]
      }
    ]
  }
}

gbdsStatus

get

This method return the GBDS status, number of matchers, and nodes from GBDS and all nodes.

Responses
200

OK

application/json
get/status/driver
GET /gbds/v2/status/driver HTTP/1.1
Host: <ip>:8085
Accept: */*
{
  "data": {
    "configuredMatchers": 1,
    "nodes": [
      {
        "hostname": "text",
        "monitorPort": 1,
        "configuredMatchers": 1
      }
    ]
  }
}

Last updated

Was this helpful?