Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewReporterComponent ¶ added in v0.14.0
Types ¶
type ReporterOptions ¶
type ReporterOptions struct { Log logs.Logger Config configures.Config }
type Span ¶
type Span struct { Id string `json:"id" validate:"not_blank" message:"id is blank"` Service string `json:"service" validate:"not_blank" message:"service is blank"` Fn string `json:"fn" validate:"not_blank" message:"fn is blank"` TracerId string `json:"tracerId" validate:"not_blank" message:"tracerId is blank"` StartAT time.Time `json:"startAt" validate:"required" message:"startAt is invalid"` FinishedAT time.Time `json:"finishedAt" validate:"required" message:"finishedAt is invalid"` Parent *Span `json:"parent"` Children []*Span `json:"children"` Tags map[string]string `json:"tags"` }
Click to show internal directories.
Click to hide internal directories.