diff --git a/src/Nest/Domain/Stats/IndexSizeStats.cs b/src/Nest/Domain/Stats/IndexSizeStats.cs index 096dc18d218..521dfd30a8e 100644 --- a/src/Nest/Domain/Stats/IndexSizeStats.cs +++ b/src/Nest/Domain/Stats/IndexSizeStats.cs @@ -12,13 +12,13 @@ public class IndexSizeStats public string PrimarySize { get; set; } [JsonProperty(PropertyName = "primary_size_in_bytes")] - public int PrimarySizeInBytes { get; set; } + public long PrimarySizeInBytes { get; set; } [JsonProperty(PropertyName = "size")] public string Size { get; set; } [JsonProperty(PropertyName = "size_in_bytes")] - public int SizeInBytes { get; set; } + public long SizeInBytes { get; set; } } }