Class ForecastStats
java.lang.Object
org.elasticsearch.client.ml.job.stats.ForecastStats
- All Implemented Interfaces:
org.elasticsearch.xcontent.ToXContent,org.elasticsearch.xcontent.ToXContentObject
A class to hold statistics about forecasts.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
org.elasticsearch.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.xcontent.ToXContent.MapParams, org.elasticsearch.xcontent.ToXContent.Params -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ConstructingObjectParser<ForecastStats,Void> static final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldFields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
ConstructorsConstructorDescriptionForecastStats(long total, SimpleStats memoryStats, SimpleStats recordStats, SimpleStats runtimeStats, Map<String, Long> statusCounts) -
Method Summary
Modifier and TypeMethodDescriptionbooleanlongThe number of jobs that have at least one forecast.Statistics about the memory usage: minimum, maximum, average and total.Statistics about the number of forecast records: minimum, maximum, average and total.Statistics about the forecast runtime in milliseconds: minimum, maximum, average and totalCounts per forecast status, for example: {"finished" : 2}.longgetTotal()The number of forecasts currently available for this model.inthashCode()org.elasticsearch.xcontent.XContentBuildertoXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Field Details
-
TOTAL
public static final org.elasticsearch.xcontent.ParseField TOTAL -
FORECASTED_JOBS
public static final org.elasticsearch.xcontent.ParseField FORECASTED_JOBS -
MEMORY_BYTES
public static final org.elasticsearch.xcontent.ParseField MEMORY_BYTES -
PROCESSING_TIME_MS
public static final org.elasticsearch.xcontent.ParseField PROCESSING_TIME_MS -
RECORDS
public static final org.elasticsearch.xcontent.ParseField RECORDS -
STATUS
public static final org.elasticsearch.xcontent.ParseField STATUS -
PARSER
-
-
Constructor Details
-
ForecastStats
public ForecastStats(long total, SimpleStats memoryStats, SimpleStats recordStats, SimpleStats runtimeStats, Map<String, 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
Counts per forecast status, for example: {"finished" : 2}. -
toXContent
public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException - Specified by:
toXContentin interfaceorg.elasticsearch.xcontent.ToXContent- Throws:
IOException
-
hashCode
public int hashCode() -
equals
-