File tree Expand file tree Collapse file tree 1 file changed +28
-6
lines changed Expand file tree Collapse file tree 1 file changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -147,14 +147,36 @@ export class PluginStats {
147
147
}
148
148
149
149
export class QueryCacheStats {
150
- cache_count : integer
151
- cache_size : integer
152
- evictions : integer
153
- hit_count : integer
150
+ /**
151
+ * Total number of entries added to the query cache across all shards assigned to selected nodes.
152
+ * This number includes current and evicted entries.
153
+ */
154
+ cache_count : long
155
+ /**
156
+ * Total number of entries currently in the query cache across all shards assigned to selected nodes.
157
+ */
158
+ cache_size : long
159
+ /**
160
+ * Total number of query cache evictions across all shards assigned to selected nodes.
161
+ */
162
+ evictions : long
163
+ /**
164
+ * Total count of query cache hits across all shards assigned to selected nodes.
165
+ */
166
+ hit_count : long
167
+ /**
168
+ * Total amount of memory used for the query cache across all shards assigned to selected nodes.
169
+ */
154
170
memory_size ?: ByteSize
155
171
memory_size_in_bytes : long
156
- miss_count : integer
157
- total_count : integer
172
+ /**
173
+ * Total count of query cache misses across all shards assigned to selected nodes.
174
+ */
175
+ miss_count : long
176
+ /**
177
+ * Total count of hits and misses in the query cache across all shards assigned to selected nodes.
178
+ */
179
+ total_count : long
158
180
}
159
181
160
182
export class RecoveryStats {
You can’t perform that action at this time.
0 commit comments