Documentation ¶
Overview ¶
Extracts raw stacktrace information from Universal Profiling.
Index ¶
- Variables
- type NewStacktraces
- type Stacktraces
- func (r Stacktraces) Do(ctx context.Context) (bool, error)
- func (r *Stacktraces) Header(key, value string) *Stacktraces
- func (r *Stacktraces) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r Stacktraces) IsSuccess(providedCtx context.Context) (bool, error)
- func (r Stacktraces) Perform(providedCtx context.Context) (*http.Response, error)
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 NewStacktraces ¶
type NewStacktraces func() *Stacktraces
NewStacktraces type alias for index.
func NewStacktracesFunc ¶
func NewStacktracesFunc(tp elastictransport.Interface) NewStacktraces
NewStacktracesFunc returns a new instance of Stacktraces with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type Stacktraces ¶
type Stacktraces struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *Stacktraces
Extracts raw stacktrace information from Universal Profiling.
https://www.elastic.co/guide/en/observability/current/universal-profiling.html
func (Stacktraces) Do ¶
func (r Stacktraces) Do(ctx context.Context) (bool, error)
Do runs the request through the transport, handle the response and returns a stacktraces.Response
func (*Stacktraces) Header ¶
func (r *Stacktraces) Header(key, value string) *Stacktraces
Header set a key, value pair in the Stacktraces headers map.
func (*Stacktraces) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.