[[cat-segments]] === cat segments API ++++ cat segments ++++ Returns low-level information about the https://lucene.apache.org/core/[Lucene] segments in index shards, similar to the <> API. For data streams, the API returns information about the stream's backing indices. [[cat-segments-api-request]] ==== {api-request-title} `GET /_cat/segments/` `GET /_cat/segments` [[cat-segments-path-params]] ==== {api-path-parms-title} ``:: (Optional, string) Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (`*`) are supported. + To target all data streams and indices in a cluster, omit this parameter or use `_all` or `*`. [[cat-segments-query-params]] ==== {api-query-parms-title} include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=bytes] include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=http-format] include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=cat-h] + -- If you do not specify which columns to include, the API returns the default columns in the order listed below. If you explicitly specify one or more columns, it only returns the specified columns. Valid columns are: `index`, `i`, `idx`:: (Default) Name of the index. `shard`, `s`, `sh`:: (Default) Name of the shard. `prirep`, `p`, `pr`, `primaryOrReplica`:: (Default) Shard type. Returned values are `primary` or `replica`. `ip`:: (Default) IP address of the segment's shard, such as `127.0.1.1`. `segment`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=segment] `generation`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=generation] `docs.count`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=docs-count] `docs.deleted`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=docs-deleted] `size`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=segment-size] `size.memory`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=memory] `committed`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=committed] `searchable`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=segment-search] `version`:: (Default) include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=segment-version] `compound`:: (Default) If `true`, the segment is stored in a compound file. This means Lucene merged all files from the segment in a single file to save file descriptors. `id`:: ID of the node, such as `k0zy`. -- include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=help] include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=cat-s] include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=cat-v] [[cat-segments-api-example]] ==== {api-examples-title} [source,console] -------------------------------------------------- GET /_cat/segments?v -------------------------------------------------- // TEST[s/^/PUT \/test\/test\/1?refresh\n{"test":"test"}\nPUT \/test1\/test\/1?refresh\n{"test":"test"}\n/] The API returns the following response: ["source","txt",subs="attributes,callouts"] -------------------------------------------------- index shard prirep ip segment generation docs.count docs.deleted size size.memory committed searchable version compound test 0 p 127.0.0.1 _0 0 1 0 3kb 2042 false true {lucene_version} true test1 0 p 127.0.0.1 _0 0 1 0 3kb 2042 false true {lucene_version} true -------------------------------------------------- // TESTRESPONSE[s/3kb/\\d+(\\.\\d+)?[mk]?b/ s/2042/\\d+/ non_json]