Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ToDomainDependencies ¶
func ToDomainDependencies(dLinks []DependencyLink) []model.DependencyLink
ToDomainDependencies converts database representation of dependencies to model
Types ¶
type DependencyLink ¶
type DependencyLink struct {
Parent string `json:"parent"`
Child string `json:"child"`
CallCount uint64 `json:"callCount"`
}
DependencyLink shows dependencies between services
func FromDomainDependencies ¶
func FromDomainDependencies(dLinks []model.DependencyLink) []DependencyLink
FromDomainDependencies converts model dependencies to database representation
type TimeDependencies ¶
type TimeDependencies struct {
Timestamp time.Time `json:"timestamp"`
Dependencies []DependencyLink `json:"dependencies"`
}
TimeDependencies encapsulates dependencies created at a given time
Click to show internal directories.
Click to hide internal directories.