Documentation
¶
Overview ¶
Get machine learning memory usage info. Get information about how machine learning jobs and trained models are using memory, on each node, both within the JVM heap, and natively, outside of the JVM.
Index ¶
- Variables
- type GetMemoryStats
- func (r GetMemoryStats) Do(providedCtx context.Context) (*Response, error)
- func (r *GetMemoryStats) ErrorTrace(errortrace bool) *GetMemoryStats
- func (r *GetMemoryStats) FilterPath(filterpaths ...string) *GetMemoryStats
- func (r *GetMemoryStats) Header(key, value string) *GetMemoryStats
- func (r *GetMemoryStats) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *GetMemoryStats) Human(human bool) *GetMemoryStats
- func (r GetMemoryStats) IsSuccess(providedCtx context.Context) (bool, error)
- func (r *GetMemoryStats) MasterTimeout(duration string) *GetMemoryStats
- func (r *GetMemoryStats) NodeId(nodeid string) *GetMemoryStats
- func (r GetMemoryStats) Perform(providedCtx context.Context) (*http.Response, error)
- func (r *GetMemoryStats) Pretty(pretty bool) *GetMemoryStats
- func (r *GetMemoryStats) Timeout(duration string) *GetMemoryStats
- type NewGetMemoryStats
- 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 GetMemoryStats ¶
type GetMemoryStats struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *GetMemoryStats
Get machine learning memory usage info. Get information about how machine learning jobs and trained models are using memory, on each node, both within the JVM heap, and natively, outside of the JVM.
https://www.elastic.co/guide/en/elasticsearch/reference/current/get-ml-memory.html
func (GetMemoryStats) Do ¶
func (r GetMemoryStats) Do(providedCtx context.Context) (*Response, error)
Do runs the request through the transport, handle the response and returns a getmemorystats.Response
func (*GetMemoryStats) ErrorTrace ¶ added in v8.14.0
func (r *GetMemoryStats) ErrorTrace(errortrace bool) *GetMemoryStats
ErrorTrace When set to `true` Elasticsearch will include the full stack trace of errors when they occur. API name: error_trace
func (*GetMemoryStats) FilterPath ¶ added in v8.14.0
func (r *GetMemoryStats) FilterPath(filterpaths ...string) *GetMemoryStats
FilterPath Comma-separated list of filters in dot notation which reduce the response returned by Elasticsearch. API name: filter_path
func (*GetMemoryStats) Header ¶
func (r *GetMemoryStats) Header(key, value string) *GetMemoryStats
Header set a key, value pair in the GetMemoryStats headers map.
func (*GetMemoryStats) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*GetMemoryStats) Human ¶
func (r *GetMemoryStats) Human(human bool) *GetMemoryStats
Human Specify this query parameter to include the fields with units in the response. Otherwise only the `_in_bytes` sizes are returned in the response. API name: human
func (GetMemoryStats) IsSuccess ¶
func (r GetMemoryStats) IsSuccess(providedCtx context.Context) (bool, error)
IsSuccess allows to run a query with a context and retrieve the result as a boolean. This only exists for endpoints without a request payload and allows for quick control flow.
func (*GetMemoryStats) MasterTimeout ¶
func (r *GetMemoryStats) MasterTimeout(duration string) *GetMemoryStats
MasterTimeout Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. API name: master_timeout
func (*GetMemoryStats) NodeId ¶
func (r *GetMemoryStats) NodeId(nodeid string) *GetMemoryStats
NodeId The names of particular nodes in the cluster to target. For example, `nodeId1,nodeId2` or `ml:true` API Name: nodeid
func (GetMemoryStats) Perform ¶ added in v8.7.0
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*GetMemoryStats) Pretty ¶ added in v8.14.0
func (r *GetMemoryStats) Pretty(pretty bool) *GetMemoryStats
Pretty If set to `true` the returned JSON will be "pretty-formatted". Only use this option for debugging only. API name: pretty
func (*GetMemoryStats) Timeout ¶
func (r *GetMemoryStats) Timeout(duration string) *GetMemoryStats
Timeout Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error. API name: timeout
type NewGetMemoryStats ¶
type NewGetMemoryStats func() *GetMemoryStats
NewGetMemoryStats type alias for index.
func NewGetMemoryStatsFunc ¶
func NewGetMemoryStatsFunc(tp elastictransport.Interface) NewGetMemoryStats
NewGetMemoryStatsFunc returns a new instance of GetMemoryStats with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.