instance

package
v0.8.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 24, 2022 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	Name          string `json:"name"`
	DisplayName   string `json:"displayName"`
	Description   string `json:"description"`
	Home          bool   `json:"home"`
	Address       string `json:"address"`
	Username      string `json:"username"`
	Password      string `json:"password"`
	Token         string `json:"token"`
	PublicAddress string `json:"publicAddress"`
}

Config is the structure of the configuration for a single Jaeger instance.

type Instance

type Instance struct {
	Name string
	// contains filtered or unexported fields
}

Instance represents a single Jaeger instance, which can be added via the configuration file.

func New

func New(config Config) (*Instance, error)

New returns a new Elasticsearch instance for the given configuration.

func (*Instance) GetOperations

func (i *Instance) GetOperations(ctx context.Context, service string) (map[string]interface{}, error)

func (*Instance) GetServices

func (i *Instance) GetServices(ctx context.Context) (map[string]interface{}, error)

func (*Instance) GetTrace

func (i *Instance) GetTrace(ctx context.Context, traceID string) (map[string]interface{}, error)

func (*Instance) GetTraces

func (i *Instance) GetTraces(ctx context.Context, limit, maxDuration, minDuration, operation, service, tags string, timeStart, timeEnd int64) (map[string]interface{}, error)

type ResponseError

type ResponseError struct {
	Errors []struct {
		Code int    `json:"code"`
		Msg  string `json:"msg"`
	} `json:"errors"`
}

ResponseError is the structure for a failed Jaeger API request.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL