java.lang.Object
org.elasticsearch.ingest.IngestStats
- All Implemented Interfaces:
Writeable,ChunkedToXContent
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classContainer for pipeline stats.static classContainer for processor stats.static classNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields inherited from interface org.elasticsearch.common.xcontent.ChunkedToXContent
EMPTY -
Constructor Summary
ConstructorsConstructorDescriptionRead from a stream.IngestStats(IngestStats.Stats totalStats, List<IngestStats.PipelineStat> pipelineStats, Map<String, List<IngestStats.ProcessorStat>> processorStats) -
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()Iterator<? extends ToXContent>toXContentChunked(ToXContent.Params outerParams) Create an iterator ofToXContentchunks for a REST response.voidwriteTo(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.common.xcontent.ChunkedToXContent
isFragment, toXContentChunkedV7
-
Constructor Details
-
IngestStats
public IngestStats(IngestStats.Stats totalStats, List<IngestStats.PipelineStat> pipelineStats, Map<String, List<IngestStats.ProcessorStat>> processorStats) - Parameters:
totalStats- - The total stats for Ingest. This is the logically the sum of all pipeline stats, and pipeline stats are logically the sum of the processor stats.pipelineStats- - The stats for a given ingest pipeline.processorStats- - The per-processor stats for a given pipeline. A map keyed by the pipeline identifier.
-
IngestStats
Read from a stream.- Throws:
IOException
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
toXContentChunked
Description copied from interface:ChunkedToXContentCreate an iterator ofToXContentchunks for a REST response. Each chunk is serialized with the sameXContentBuilderandToXContent.Params, which is also the same as theToXContent.Paramspassed as theparamsargument. For best results, all chunks should beO(1)size. See alsoChunkedToXContentHelperfor some handy utilities.Note that chunked response bodies cannot send deprecation warning headers once transmission has started, so implementations must check for deprecated feature use before returning.
- Specified by:
toXContentChunkedin interfaceChunkedToXContent- Returns:
- iterator over chunks of
ToXContent
-
getTotalStats
-
getPipelineStats
-
getProcessorStats
-
equals
-
hashCode
public int hashCode()
-