|
20 | 20 | import { ShardFileSizeInfo } from '@indices/stats/types'
|
21 | 21 | import { Dictionary } from '@spec_utils/Dictionary'
|
22 | 22 | import { ByteSize, Field, Name, VersionString } from './common'
|
23 |
| -import { ErrorCause, ShardFailure } from './Errors' |
| 23 | +import { ShardFailure } from './Errors' |
24 | 24 | import { double, integer, long, uint } from './Numeric'
|
25 | 25 | import { Duration, DurationValue, UnitMillis } from '@_types/Time'
|
26 | 26 |
|
@@ -153,7 +153,7 @@ export class QueryCacheStats {
|
153 | 153 | evictions: integer
|
154 | 154 | hit_count: integer
|
155 | 155 | memory_size?: ByteSize
|
156 |
| - memory_size_in_bytes: integer |
| 156 | + memory_size_in_bytes: long |
157 | 157 | miss_count: integer
|
158 | 158 | total_count: integer
|
159 | 159 | }
|
@@ -206,37 +206,37 @@ export class SearchStats {
|
206 | 206 | export class SegmentsStats {
|
207 | 207 | count: integer
|
208 | 208 | doc_values_memory?: ByteSize
|
209 |
| - doc_values_memory_in_bytes: integer |
| 209 | + doc_values_memory_in_bytes: long |
210 | 210 | file_sizes: Dictionary<string, ShardFileSizeInfo>
|
211 | 211 | fixed_bit_set?: ByteSize
|
212 |
| - fixed_bit_set_memory_in_bytes: integer |
| 212 | + fixed_bit_set_memory_in_bytes: long |
213 | 213 | index_writer_memory?: ByteSize
|
214 |
| - index_writer_max_memory_in_bytes?: integer |
215 |
| - index_writer_memory_in_bytes: integer |
| 214 | + index_writer_max_memory_in_bytes?: long |
| 215 | + index_writer_memory_in_bytes: long |
216 | 216 | max_unsafe_auto_id_timestamp: long
|
217 | 217 | memory?: ByteSize
|
218 |
| - memory_in_bytes: integer |
| 218 | + memory_in_bytes: long |
219 | 219 | norms_memory?: ByteSize
|
220 |
| - norms_memory_in_bytes: integer |
| 220 | + norms_memory_in_bytes: long |
221 | 221 | points_memory?: ByteSize
|
222 |
| - points_memory_in_bytes: integer |
| 222 | + points_memory_in_bytes: long |
223 | 223 | stored_memory?: ByteSize
|
224 |
| - stored_fields_memory_in_bytes: integer |
225 |
| - terms_memory_in_bytes: integer |
| 224 | + stored_fields_memory_in_bytes: long |
| 225 | + terms_memory_in_bytes: long |
226 | 226 | terms_memory?: ByteSize
|
227 | 227 | term_vectory_memory?: ByteSize
|
228 |
| - term_vectors_memory_in_bytes: integer |
| 228 | + term_vectors_memory_in_bytes: long |
229 | 229 | version_map_memory?: ByteSize
|
230 |
| - version_map_memory_in_bytes: integer |
| 230 | + version_map_memory_in_bytes: long |
231 | 231 | }
|
232 | 232 |
|
233 | 233 | export class StoreStats {
|
234 | 234 | size?: ByteSize
|
235 |
| - size_in_bytes: integer |
| 235 | + size_in_bytes: long |
236 | 236 | reserved?: ByteSize
|
237 |
| - reserved_in_bytes: integer |
| 237 | + reserved_in_bytes: long |
238 | 238 | total_data_set_size?: ByteSize
|
239 |
| - total_data_set_size_in_bytes?: integer |
| 239 | + total_data_set_size_in_bytes?: long |
240 | 240 | }
|
241 | 241 |
|
242 | 242 | export class TranslogStats {
|
|
0 commit comments