File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -194,19 +194,19 @@ export class QueryCacheStats {
194
194
* Total number of entries added to the query cache across all shards assigned to selected nodes.
195
195
* This number includes current and evicted entries.
196
196
*/
197
- cache_count : integer
197
+ cache_count : long
198
198
/**
199
199
* Total number of entries currently in the query cache across all shards assigned to selected nodes.
200
200
*/
201
- cache_size : integer
201
+ cache_size : long
202
202
/**
203
203
* Total number of query cache evictions across all shards assigned to selected nodes.
204
204
*/
205
- evictions : integer
205
+ evictions : long
206
206
/**
207
207
* Total count of query cache hits across all shards assigned to selected nodes.
208
208
*/
209
- hit_count : integer
209
+ hit_count : long
210
210
/**
211
211
* Total amount of memory used for the query cache across all shards assigned to selected nodes.
212
212
*/
@@ -218,11 +218,11 @@ export class QueryCacheStats {
218
218
/**
219
219
* Total count of query cache misses across all shards assigned to selected nodes.
220
220
*/
221
- miss_count : integer
221
+ miss_count : long
222
222
/**
223
223
* Total count of hits and misses in the query cache across all shards assigned to selected nodes.
224
224
*/
225
- total_count : integer
225
+ total_count : long
226
226
}
227
227
228
228
export class RecoveryStats {
You can’t perform that action at this time.
0 commit comments