Package org.elasticsearch.client.ml
Class GetOverallBucketsRequest
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportRequest
-
- org.elasticsearch.action.ActionRequest
-
- org.elasticsearch.client.ml.GetOverallBucketsRequest
-
- All Implemented Interfaces:
Streamable,Writeable,ToXContent,ToXContentObject,TaskAwareRequest
public class GetOverallBucketsRequest extends ActionRequest implements ToXContentObject
A request to retrieve overall buckets of set of jobs
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportRequest
TransportRequest.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V extends java.lang.Object>, Writeable.Writer<V extends java.lang.Object>
-
-
Field Summary
Fields Modifier and Type Field Description static ParseFieldALLOW_NO_JOBSstatic ParseFieldBUCKET_SPANstatic ParseFieldENDstatic ParseFieldEXCLUDE_INTERIMstatic ParseFieldOVERALL_SCOREstatic ConstructingObjectParser<GetOverallBucketsRequest,java.lang.Void>PARSERstatic ParseFieldSTARTstatic ParseFieldTOP_N-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description GetOverallBucketsRequest(java.lang.String... jobIds)Constructs a request to retrieve overall buckets for a set of jobsGetOverallBucketsRequest(java.util.List<java.lang.String> jobIds)Constructs a request to retrieve overall buckets for a set of jobs
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.BooleangetAllowNoJobs()Whether to ignore if a wildcard expression matches no jobs.TimeValuegetBucketSpan()java.lang.StringgetEnd()java.util.List<java.lang.String>getJobIds()java.lang.DoublegetOverallScore()java.lang.StringgetStart()java.lang.IntegergetTopN()inthashCode()booleanisExcludeInterim()voidsetAllowNoJobs(boolean allowNoJobs)voidsetBucketSpan(TimeValue bucketSpan)Sets the value of "bucket_span".voidsetEnd(java.lang.String end)Sets the value of "end" which is a timestamp.voidsetExcludeInterim(java.lang.Boolean excludeInterim)Sets the value of "exclude_interim".voidsetOverallScore(double overallScore)Sets the value of "overall_score".voidsetStart(java.lang.String start)Sets the value of "start" which is a timestamp.voidsetTopN(java.lang.Integer topN)Sets the value of "top_n".XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)ActionRequestValidationExceptionvalidate()-
Methods inherited from class org.elasticsearch.action.ActionRequest
getShouldStoreResult, readFrom, writeTo
-
Methods inherited from class org.elasticsearch.transport.TransportRequest
getParentTask, setParentTask
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTask
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
TOP_N
public static final ParseField TOP_N
-
BUCKET_SPAN
public static final ParseField BUCKET_SPAN
-
OVERALL_SCORE
public static final ParseField OVERALL_SCORE
-
EXCLUDE_INTERIM
public static final ParseField EXCLUDE_INTERIM
-
START
public static final ParseField START
-
END
public static final ParseField END
-
ALLOW_NO_JOBS
public static final ParseField ALLOW_NO_JOBS
-
PARSER
public static final ConstructingObjectParser<GetOverallBucketsRequest,java.lang.Void> PARSER
-
-
Constructor Detail
-
GetOverallBucketsRequest
public GetOverallBucketsRequest(java.lang.String... jobIds)
Constructs a request to retrieve overall buckets for a set of jobs- Parameters:
jobIds- The job identifiers. Each can be a job identifier, a group name, or a wildcard expression.
-
GetOverallBucketsRequest
public GetOverallBucketsRequest(java.util.List<java.lang.String> jobIds)
Constructs a request to retrieve overall buckets for a set of jobs- Parameters:
jobIds- The job identifiers. Each can be a job identifier, a group name, or a wildcard expression.
-
-
Method Detail
-
getJobIds
public java.util.List<java.lang.String> getJobIds()
-
getTopN
public java.lang.Integer getTopN()
-
setTopN
public void setTopN(java.lang.Integer topN)
Sets the value of "top_n".- Parameters:
topN- The number of top job bucket scores to be used in the overall_score calculation. Defaults to 1.
-
getBucketSpan
public TimeValue getBucketSpan()
-
setBucketSpan
public void setBucketSpan(TimeValue bucketSpan)
Sets the value of "bucket_span".- Parameters:
bucketSpan- The span of the overall buckets. Must be greater or equal to the largest job’s bucket_span. Defaults to the largest job’s bucket_span.
-
isExcludeInterim
public boolean isExcludeInterim()
-
setExcludeInterim
public void setExcludeInterim(java.lang.Boolean excludeInterim)
Sets the value of "exclude_interim". Whentrue, interim overall buckets will be filtered out. Overall buckets are interim if any of the job buckets within the overall bucket interval are interim.- Parameters:
excludeInterim- value of "exclude_interim" to be set
-
getStart
public java.lang.String getStart()
-
setStart
public void setStart(java.lang.String start)
Sets the value of "start" which is a timestamp. Only overall buckets whose timestamp is on or after the "start" value will be returned.- Parameters:
start- String representation of a timestamp; may be an epoch seconds, epoch millis or an ISO string
-
getEnd
public java.lang.String getEnd()
-
setEnd
public void setEnd(java.lang.String end)
Sets the value of "end" which is a timestamp. Only overall buckets whose timestamp is before the "end" value will be returned.- Parameters:
end- String representation of a timestamp; may be an epoch seconds, epoch millis or an ISO string
-
getOverallScore
public java.lang.Double getOverallScore()
-
setOverallScore
public void setOverallScore(double overallScore)
Sets the value of "overall_score". Only buckets with "overall_score" equal or greater will be returned.- Parameters:
overallScore- value of "anomaly_score".
-
setAllowNoJobs
public void setAllowNoJobs(boolean allowNoJobs)
- Parameters:
allowNoJobs- value of "allow_no_jobs".
-
getAllowNoJobs
public java.lang.Boolean getAllowNoJobs()
Whether to ignore if a wildcard expression matches no jobs. If this isfalse, then an error is returned when a wildcard (or_all) does not match any jobs
-
validate
public ActionRequestValidationException validate()
- Specified by:
validatein classActionRequest
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- 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
-
-