Search + K

Command Palette

Search for a command to run...

Sign In

Get cluster info

GET /_info/{target}
Copy endpoint

Returns basic information about the cluster.

Parameters

path Path Parameters

Name Type
target required

Limits the information returned to the specific target. Supports a comma-separated list, such as http,ingest.

type TypesClusterInfoTargets = type TypesClusterInfoTarget = "_all" | "http" | "ingest" | "thread_pool" | "script" | type TypesClusterInfoTarget = "_all" | "http" | "ingest" | "thread_pool" | "script"[]

Responses

200 application/json
{
cluster_name: TypesName
type TypesName = string
;
http?: NodesTypesHttp
interface NodesTypesHttp {
current_open?: number;
total_opened?: number;
clients?: NodesTypesClient[];
routes: { };
}
;
ingest?: NodesTypesIngest
interface NodesTypesIngest {
pipelines?: { };
total?: NodesTypesIngestTotal;
}
;
thread_pool?: { };
script?: NodesTypesScripting
interface NodesTypesScripting {
cache_evictions?: number;
compilations?: number;
compilations_history?: { };
compilation_limit_triggered?: number;
contexts?: NodesTypesContext[];
}
;
}