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) (*Response, error)
- func (r *GetInfluencers) End(v 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(v string) *GetInfluencers
- func (r *GetInfluencers) JobId(v string) *GetInfluencers
- func (r GetInfluencers) Perform(ctx context.Context) (*http.Response, error)
- func (r *GetInfluencers) Raw(raw io.Reader) *GetInfluencers
- func (r *GetInfluencers) Request(req *Request) *GetInfluencers
- func (r *GetInfluencers) Size(i int) *GetInfluencers
- func (r *GetInfluencers) Sort(v string) *GetInfluencers
- func (r *GetInfluencers) Start(v string) *GetInfluencers
- type NewGetInfluencers
- type Request
- type Response
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) Do ¶
func (r GetInfluencers) Do(ctx context.Context) (*Response, error)
Do runs the request through the transport, handle the response and returns a getinfluencers.Response
func (*GetInfluencers) End ¶
func (r *GetInfluencers) End(v 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(v 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) Perform ¶
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*GetInfluencers) Raw ¶
func (r *GetInfluencers) Raw(raw io.Reader) *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(v 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(v 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.
type Response ¶
type Response struct { Count int64 `json:"count"` // Influencers Array of influencer objects Influencers []types.Influencer `json:"influencers"` }