Documentation ¶
Overview ¶
Retrieves anomaly detection job results for one or more influencers.
Index ¶
- Variables
- type GetInfluencers
- func (r *GetInfluencers) Desc(b bool) *GetInfluencers
- func (r GetInfluencers) Do(ctx context.Context) (*http.Response, error)
- func (r *GetInfluencers) End(value string) *GetInfluencers
- func (r *GetInfluencers) ExcludeInterim(b bool) *GetInfluencers
- func (r *GetInfluencers) From(i int) *GetInfluencers
- func (r *GetInfluencers) Header(key, value string) *GetInfluencers
- func (r *GetInfluencers) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *GetInfluencers) InfluencerScore(value string) *GetInfluencers
- func (r *GetInfluencers) JobId(v string) *GetInfluencers
- func (r *GetInfluencers) Raw(raw json.RawMessage) *GetInfluencers
- func (r *GetInfluencers) Request(req *Request) *GetInfluencers
- func (r *GetInfluencers) Size(i int) *GetInfluencers
- func (r *GetInfluencers) Sort(value string) *GetInfluencers
- func (r *GetInfluencers) Start(value string) *GetInfluencers
- type NewGetInfluencers
- type Request
Constants ¶
This section is empty.
Variables ¶
var ErrBuildPath = errors.New("cannot build path, check for missing path parameters")
ErrBuildPath is returned in case of missing parameters within the build of the request.
Functions ¶
This section is empty.
Types ¶
type GetInfluencers ¶
type GetInfluencers struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *GetInfluencers
Retrieves anomaly detection job results for one or more influencers.
https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-influencer.html
func (*GetInfluencers) Desc ¶
func (r *GetInfluencers) Desc(b bool) *GetInfluencers
Desc If true, the results are sorted in descending order. API name: desc
func (*GetInfluencers) End ¶
func (r *GetInfluencers) End(value string) *GetInfluencers
End Returns influencers with timestamps earlier than this time. The default value means it is unset and results are not limited to specific timestamps. API name: end
func (*GetInfluencers) ExcludeInterim ¶
func (r *GetInfluencers) ExcludeInterim(b bool) *GetInfluencers
ExcludeInterim If true, the output excludes interim results. By default, interim results are included. API name: exclude_interim
func (*GetInfluencers) From ¶
func (r *GetInfluencers) From(i int) *GetInfluencers
From Skips the specified number of influencers. API name: from
func (*GetInfluencers) Header ¶
func (r *GetInfluencers) Header(key, value string) *GetInfluencers
Header set a key, value pair in the GetInfluencers headers map.
func (*GetInfluencers) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*GetInfluencers) InfluencerScore ¶
func (r *GetInfluencers) InfluencerScore(value string) *GetInfluencers
InfluencerScore Returns influencers with anomaly scores greater than or equal to this value. API name: influencer_score
func (*GetInfluencers) JobId ¶
func (r *GetInfluencers) JobId(v string) *GetInfluencers
JobId Identifier for the anomaly detection job. API Name: jobid
func (*GetInfluencers) Raw ¶
func (r *GetInfluencers) Raw(raw json.RawMessage) *GetInfluencers
Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.
func (*GetInfluencers) Request ¶
func (r *GetInfluencers) Request(req *Request) *GetInfluencers
Request allows to set the request property with the appropriate payload.
func (*GetInfluencers) Size ¶
func (r *GetInfluencers) Size(i int) *GetInfluencers
Size Specifies the maximum number of influencers to obtain. API name: size
func (*GetInfluencers) Sort ¶
func (r *GetInfluencers) Sort(value string) *GetInfluencers
Sort Specifies the sort field for the requested influencers. By default, the influencers are sorted by the `influencer_score` value. API name: sort
func (*GetInfluencers) Start ¶
func (r *GetInfluencers) Start(value string) *GetInfluencers
Start Returns influencers with timestamps after this time. The default value means it is unset and results are not limited to specific timestamps. API name: start
type NewGetInfluencers ¶
type NewGetInfluencers func(jobid string) *GetInfluencers
NewGetInfluencers type alias for index.
func NewGetInfluencersFunc ¶
func NewGetInfluencersFunc(tp elastictransport.Interface) NewGetInfluencers
NewGetInfluencersFunc returns a new instance of GetInfluencers with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.