Skip to content

Commit e08e6d5

Browse files
committed
Merge pull request #1376 from elastic/feature/cat-indices-status
Add status and total memory to cat indices response
2 parents 13852f9 + 8b88083 commit e08e6d5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Nest/Domain/Cat/CatIndicesRecord.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,11 @@ public class CatIndicesRecord : ICatRecord
2828

2929
[JsonProperty("store.size")]
3030
public string StoreSize { get; set; }
31+
32+
[JsonProperty("status")]
33+
public string Status { get; set; }
34+
35+
[JsonProperty("tm")]
36+
public string TotalMemory { get; set; }
3137
}
3238
}

0 commit comments

Comments
 (0)