Documentation
¶
Index ¶
Constants ¶
View Source
const ( Unknown ConnectionType = "" MessagingSystem = "messaging_system" Database = "database" )
Variables ¶
View Source
var (
ErrTooManyItems = errors.New("too many items")
)
Functions ¶
This section is empty.
Types ¶
type ConnectionType ¶ added in v1.5.0
type ConnectionType string
type Edge ¶
type Edge struct { TraceID string ConnectionType ConnectionType ServerService, ClientService string ServerLatencySec, ClientLatencySec float64 // If either the client or the server spans have status code error, // the Edge will be considered as failed. Failed bool // Additional dimension to add to the metrics Dimensions map[string]string // contains filtered or unexported fields }
Edge is an Edge between two nodes in the graph
type Store ¶
type Store interface { // UpsertEdge inserts or updates an edge. UpsertEdge(key string, update Callback) (isNew bool, err error) // Expire evicts expired edges from the store. Expire() }
Store is an interface for building service graphs.
Click to show internal directories.
Click to hide internal directories.