NDR hosts for a cluster: Request

Prev Next

To get a list of all NDR hosts that are part of a specified Elasticsearch cluster, send the following request:

GET https://<IA_IP_address>:<port_number>/ia-api/status/v1/cat/nodes

Required header:

Cookie: px=<token>

Note

You must have obtained the session token after logging in to use this request.

A single appliance cluster returns one host.

Options

  • IA_IP_address—The IP address of the NDR appliance running the NDR API.

  • port_number—The port number of the NDR appliance running the NDR API.

  • token—This token authenticates the session. By default, the session times out after 24 hours.

Example

GET https://xxx.xxx.xxx.xxx:443/ia-api/status/v1/cat/nodes

Required header:

Cookie: px=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

NDR hosts for a cluster: Response

HTTP/1.1 [Response Code] [Response Message]				
Server: [Server]
Date: [Date]				
Content-Type: [Content Type]
Response fields
  • Response Code—A standard HTTP response code.

  • Response Message—A standard HTTP response message.

  • Server—The server being used.

  • Date—Standard HTML date format.

  • Content Type—The response format.

Example
HTTP/1.1 200 OK
Server: nginx
Date: Fri, 29 Apr 2016 16:19:36 GMT
Content-Type: application/json; charset=utf-8

["ia150"]

cURL code sample: NDR hosts for a cluster

curl -k -H "Content-Type: Application/json" --cookie "px=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" https://xxx.xxx.xxx.xxx:443/ia-api/status/v1/cat/nodes

This cURL sample includes the following options:

  • -k—This option explicitly allows cURL to perform insecure SSL connections and transfers, which allows you to test your SSL connection without installing a CA certificate.

  • -H "Content-Type: Application/json"—This header specifies that the request body is in JSON format.

  • --cookie "px=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"—This option specifies the authentication token for this session.

  • https://xxx.xxx.xxx.xxx:443/ia-api/status/v1/cat/nodes—The statistics request URL. Replace xxx.xxx.xxx.xxx with the IP address of your NDR appliance.

Results

This example returns a list of NDR host names that are part of the cluster.