Retrieve node-level cache statistics about searchable snapshots Technical preview
Query parameters
-
master_timeout string
A duration. Units can be
nanos
,micros
,ms
(milliseconds),s
(seconds),m
(minutes),h
(hours) andd
(days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
GET /_searchable_snapshots/cache/stats
curl \
-X GET http://api.example.com/_searchable_snapshots/cache/stats
Response examples (200)
{
"nodes": {
"additionalProperty1": {
"shared_cache": {
"reads": 42.0,
"": 42.0,
"writes": 42.0,
"evictions": 42.0,
"num_regions": 42.0
}
},
"additionalProperty2": {
"shared_cache": {
"reads": 42.0,
"": 42.0,
"writes": 42.0,
"evictions": 42.0,
"num_regions": 42.0
}
}
}
}