We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf95b4d commit ff99321Copy full SHA for ff99321
src/Nest/CommonOptions/Stats/RefreshStats.cs
@@ -13,5 +13,17 @@ public class RefreshStats
13
14
[DataMember(Name ="total_time_in_millis")]
15
public long TotalTimeInMilliseconds { get; set; }
16
+
17
+ /// <summary>
18
+ /// Only valid for Elasticsearch 7.2.0 and above.
19
+ /// </summary>
20
+ [DataMember(Name ="external_total")]
21
+ public long ExternalTotal { get; set; }
22
23
24
25
26
+ [DataMember(Name ="external_total_time_in_millis")]
27
+ public long ExternalTotalTimeInMilliseconds { get; set; }
28
}
29
0 commit comments