Get searchable snapshot statistics Generally available; Added in 7.10.0
GET /{index}/_searchable_snapshots/stats
Console
GET /my-index/_searchable_snapshots/stats
resp = client.searchable_snapshots.stats( index="my-index", )
const response = await client.searchableSnapshots.stats({ index: "my-index", });
response = client.searchable_snapshots.stats( index: "my-index" )
$resp = $client->searchableSnapshots()->stats([ "index" => "my-index", ]);
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/my-index/_searchable_snapshots/stats"