Search Results for

    Show / Hide Table of Contents

    Class IngestStats

    Inheritance
    object
    IngestStats
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OpenSearch.Client
    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
    Type Description
    long
    | 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
    Type Description
    long
    | 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
    Type Description
    long
    | Edit this page View Source

    Processors

    Declaration
    [DataMember(Name = "processors")]
    public IReadOnlyCollection<KeyedProcessorStats> Processors { get; }
    Property Value
    Type Description
    IReadOnlyCollection<KeyedProcessorStats>
    | 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
    Type Description
    long

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • Count
      • Current
      • Failed
      • Processors
      • TimeInMilliseconds
    • Extension Methods
    Back to top Generated by DocFX