Class ForecastStats
java.lang.Object
org.elasticsearch.client.ml.job.stats.ForecastStats
- All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
public class ForecastStats
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject
A class to hold statistics about forecasts.
-
Nested Class Summary
-
Field Summary
Fields Modifier and Type Field Description static org.elasticsearch.common.ParseFieldFORECASTED_JOBSstatic org.elasticsearch.common.ParseFieldMEMORY_BYTESstatic org.elasticsearch.common.xcontent.ConstructingObjectParser<ForecastStats,java.lang.Void>PARSERstatic org.elasticsearch.common.ParseFieldPROCESSING_TIME_MSstatic org.elasticsearch.common.ParseFieldRECORDSstatic org.elasticsearch.common.ParseFieldSTATUSstatic org.elasticsearch.common.ParseFieldTOTAL -
Constructor Summary
Constructors Constructor Description ForecastStats(long total, SimpleStats memoryStats, SimpleStats recordStats, SimpleStats runtimeStats, java.util.Map<java.lang.String,java.lang.Long> statusCounts) -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object obj)longgetForecastedJobs()The number of jobs that have at least one forecast.SimpleStatsgetMemoryStats()Statistics about the memory usage: minimum, maximum, average and total.SimpleStatsgetRecordStats()Statistics about the number of forecast records: minimum, maximum, average and total.SimpleStatsgetRuntimeStats()Statistics about the forecast runtime in milliseconds: minimum, maximum, average and totaljava.util.Map<java.lang.String,java.lang.Long>getStatusCounts()Counts per forecast status, for example: {"finished" : 2}.longgetTotal()The number of forecasts currently available for this model.inthashCode()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
-
Field Details
-
TOTAL
public static final org.elasticsearch.common.ParseField TOTAL -
FORECASTED_JOBS
public static final org.elasticsearch.common.ParseField FORECASTED_JOBS -
MEMORY_BYTES
public static final org.elasticsearch.common.ParseField MEMORY_BYTES -
PROCESSING_TIME_MS
public static final org.elasticsearch.common.ParseField PROCESSING_TIME_MS -
RECORDS
public static final org.elasticsearch.common.ParseField RECORDS -
STATUS
public static final org.elasticsearch.common.ParseField STATUS -
PARSER
public static final org.elasticsearch.common.xcontent.ConstructingObjectParser<ForecastStats,java.lang.Void> PARSER
-
-
Constructor Details
-
ForecastStats
public ForecastStats(long total, SimpleStats memoryStats, SimpleStats recordStats, SimpleStats runtimeStats, java.util.Map<java.lang.String,java.lang.Long> statusCounts)
-
-
Method Details
-
getTotal
public long getTotal()The number of forecasts currently available for this model. -
getForecastedJobs
public long getForecastedJobs()The number of jobs that have at least one forecast. -
getMemoryStats
Statistics about the memory usage: minimum, maximum, average and total. -
getRecordStats
Statistics about the number of forecast records: minimum, maximum, average and total. -
getRuntimeStats
Statistics about the forecast runtime in milliseconds: minimum, maximum, average and total -
getStatusCounts
public java.util.Map<java.lang.String,java.lang.Long> getStatusCounts()Counts per forecast status, for example: {"finished" : 2}. -
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equalsin classjava.lang.Object
-