Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Dependency ¶
type Dependency struct { Parent string `cql:"parent"` Child string `cql:"child"` CallCount int64 `cql:"call_count"` // always unsigned, but we cannot explicitly read uint64 from Cassandra }
Dependency is the UDT representation of a Jaeger Dependency.
func (*Dependency) MarshalUDT ¶
MarshalUDT handles marshalling a Dependency.
func (*Dependency) UnmarshalUDT ¶
UnmarshalUDT handles unmarshalling a Dependency.
type DependencyStore ¶
type DependencyStore struct {
// contains filtered or unexported fields
}
DependencyStore handles all queries and insertions to Cassandra dependencies
func NewDependencyStore ¶
func NewDependencyStore( session cassandra.Session, dependencyDataFrequency time.Duration, metricsFactory metrics.Factory, logger *zap.Logger, ) *DependencyStore
NewDependencyStore returns a DependencyStore
func (*DependencyStore) GetDependencies ¶
func (s *DependencyStore) GetDependencies(endTs time.Time, lookback time.Duration) ([]model.DependencyLink, error)
GetDependencies returns all interservice dependencies
func (*DependencyStore) WriteDependencies ¶
func (s *DependencyStore) WriteDependencies(ts time.Time, dependencies []model.DependencyLink) error
WriteDependencies implements dependencystore.Writer#WriteDependencies.
Click to show internal directories.
Click to hide internal directories.