Documentation ¶
Overview ¶
Returns information about indices: number of primaries and replicas, document counts, disk size, ...
Index ¶
- Variables
- type Indices
- func (r *Indices) Bytes(enum bytes.Bytes) *Indices
- func (r Indices) Do(ctx context.Context) (*http.Response, error)
- func (r *Indices) ExpandWildcards(value string) *Indices
- func (r *Indices) Header(key, value string) *Indices
- func (r *Indices) Health(enum healthstatus.HealthStatus) *Indices
- func (r *Indices) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *Indices) IncludeUnloadedSegments(b bool) *Indices
- func (r *Indices) Index(v string) *Indices
- func (r Indices) IsSuccess(ctx context.Context) (bool, error)
- func (r *Indices) Pri(b bool) *Indices
- type NewIndices
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 Indices ¶
type Indices struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *Indices
Returns information about indices: number of primaries and replicas, document counts, disk size, ...
https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/cat-indices.html
func (*Indices) ExpandWildcards ¶
ExpandWildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. API name: expand_wildcards
func (*Indices) Health ¶
func (r *Indices) Health(enum healthstatus.HealthStatus) *Indices
Health A health status ("green", "yellow", or "red" to filter only indices matching the specified health status API name: health
func (*Indices) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*Indices) IncludeUnloadedSegments ¶
IncludeUnloadedSegments If set to true segment stats will include stats for segments that are not currently loaded into memory API name: include_unloaded_segments
func (*Indices) Index ¶
Index A comma-separated list of index names to limit the returned information API Name: index
type NewIndices ¶
type NewIndices func() *Indices
NewIndices type alias for index.
func NewIndicesFunc ¶
func NewIndicesFunc(tp elastictransport.Interface) NewIndices
NewIndicesFunc returns a new instance of Indices with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.