Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Nest
{
[DataContract]
public class ShardFieldData
public class ShardFielddata
{
[DataMember(Name ="evictions")]
public long Evictions { get; internal set; }
Expand Down
2 changes: 1 addition & 1 deletion src/Nest/Indices/Monitoring/IndicesStats/ShardStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ShardStats
public ShardDocs Documents { get; internal set; }

[DataMember(Name ="fielddata")]
public ShardFieldData FieldData { get; internal set; }
public ShardFielddata Fielddata { get; internal set; }

[DataMember(Name ="flush")]
public ShardFlush Flush { get; internal set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ protected override void ExpectResponse(IndicesStatsResponse response)
first.Flush.Should().NotBeNull();
first.Warmer.Should().NotBeNull();
first.QueryCache.Should().NotBeNull();
first.FieldData.Should().NotBeNull();
first.Fielddata.Should().NotBeNull();
first.Completion.Should().NotBeNull();
first.Segments.Should().NotBeNull();
first.TransactionLog.Should().NotBeNull();
Expand Down