Discover Packages
github.com/orchestd/debug
debugHandlers
repos
trace
jaeger
package
Version:
v0.1.11
Opens a new window with list of versions in this module.
Published: Feb 15, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 1
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Data struct {
TraceID string `json:"traceID"`
Spans []Spans `json:"spans"`
Processes Processes `json:"processes"`
Warnings interface{} `json:"warnings"`
}
type Fields struct {
Key string `json:"key"`
Type string `json:"type"`
Value string `json:"value"`
}
type Logs struct {
Timestamp int64 `json:"timestamp"`
Fields []Fields `json:"fields"`
}
type P1 struct {
ServiceName string `json:"serviceName"`
Tags []Tags `json:"tags"`
}
type P2 struct {
ServiceName string `json:"serviceName"`
Tags []Tags `json:"tags"`
}
type Processes struct {
P1 P1 `json:"p1"`
P2 P2 `json:"p2"`
}
type References struct {
RefType string `json:"refType"`
TraceID string `json:"traceID"`
SpanID string `json:"spanID"`
}
type SpanNode struct {
MessageId string
}
type Spans struct {
TraceID string `json:"traceID"`
SpanID string `json:"spanID"`
Flags int `json:"flags"`
OperationName string `json:"operationName"`
References []References `json:"references"`
StartTime int64 `json:"startTime"`
Duration int `json:"duration"`
Tags []Tags `json:"tags"`
Logs []Logs `json:"logs"`
ProcessID string `json:"processID"`
Warnings interface{} `json:"warnings"`
}
type Tags struct {
Key string `json:"key"`
Type string `json:"type"`
Value interface{} `json:"value"`
}
type Trace struct {
Data []Data `json:"data"`
Total int `json:"total"`
Limit int `json:"limit"`
Offset int `json:"offset"`
Errors interface{} `json:"errors"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.