WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Indices Stats
editIndices Stats
editIndices level stats provide statistics on different operations happening on an index. The API provides statistics on the index level scope (though most stats can also be retrieved using node level scope).
Global Stats
editvar r = this.ConnectedClient.Stats(); var deletedOnPrimaries = r.Stats.Primaries.Documents.Deleted; var deletedOnIndexPrimaries = r.Stats.Indices["nest_test_data"].Primaries.Documents.Count;
Index Stats
editvar r = this.ConnectedClient.Stats("nest_test_data"); var deletedOnIndexPrimaries = r.Stats.Primaries.Documents.Deleted;
Stats params
editvar r = this.ConnectedClient.Stats(new StatsParams() { InfoOn = StatsInfo.All, Refresh = true, Types = new List<string>{ "elasticsearchprojects" } }); var x = r.Stats.Primaries.Indexing.Types["elasticsearchprojects"].Current;