Class IngestStats
Assembly: OpenSearch.Client.dll
Syntax
[DataContract]
public class IngestStats
Properties
|
Edit this page
View Source
Count
The total number of document ingested during the lifetime of this node
Declaration
[DataMember(Name = "count")]
public long Count { get; set; }
Property Value
|
Edit this page
View Source
Current
The total number of documents currently being ingested.
Declaration
[DataMember(Name = "current")]
public long Current { get; set; }
Property Value
|
Edit this page
View Source
Failed
The total number ingest preprocessing operations failed during the lifetime of this node
Declaration
[DataMember(Name = "failed")]
public long Failed { get; set; }
Property Value
|
Edit this page
View Source
Processors
Declaration
[DataMember(Name = "processors")]
public IReadOnlyCollection<KeyedProcessorStats> Processors { get; }
Property Value
|
Edit this page
View Source
TimeInMilliseconds
The total time spent on ingest preprocessing documents during the lifetime of this node
Declaration
[DataMember(Name = "time_in_millis")]
public long TimeInMilliseconds { get; set; }
Property Value
Extension Methods