Documentation ¶
Index ¶
- type ControlComplete
- type ControlError
- type DashboardChanged
- func (c *DashboardChanged) AddChanged(item modconfig.ModTreeItem)
- func (c *DashboardChanged) HasChanges() bool
- func (*DashboardChanged) IsDashboardEvent()
- func (c *DashboardChanged) SetParentsChanged(item modconfig.ModTreeItem, prevResourceMaps *modconfig.ResourceMaps)
- func (c *DashboardChanged) WalkChangedResources(resourceFunc func(item modconfig.ModTreeItem) (bool, error)) error
- type DashboardEvent
- type DashboardEventHandler
- type ExecutionComplete
- type ExecutionError
- type ExecutionStarted
- type InputValuesCleared
- type LeafNodeUpdated
- type WorkspaceError
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ControlComplete ¶
type ControlComplete struct { Progress *controlstatus.ControlProgress Control controlstatus.ControlRunStatusProvider Name string Session string ExecutionId string Timestamp time.Time }
func (*ControlComplete) IsDashboardEvent ¶
func (*ControlComplete) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
type ControlError ¶
type ControlError struct { Control controlstatus.ControlRunStatusProvider Progress *controlstatus.ControlProgress Name string Session string ExecutionId string Timestamp time.Time }
func (*ControlError) IsDashboardEvent ¶
func (*ControlError) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
type DashboardChanged ¶
type DashboardChanged struct { ChangedDashboards []*modconfig.DashboardTreeItemDiffs ChangedContainers []*modconfig.DashboardTreeItemDiffs ChangedControls []*modconfig.DashboardTreeItemDiffs ChangedBenchmarks []*modconfig.DashboardTreeItemDiffs ChangedCategories []*modconfig.DashboardTreeItemDiffs ChangedCards []*modconfig.DashboardTreeItemDiffs ChangedCharts []*modconfig.DashboardTreeItemDiffs ChangedFlows []*modconfig.DashboardTreeItemDiffs ChangedGraphs []*modconfig.DashboardTreeItemDiffs ChangedHierarchies []*modconfig.DashboardTreeItemDiffs ChangedImages []*modconfig.DashboardTreeItemDiffs ChangedInputs []*modconfig.DashboardTreeItemDiffs ChangedTables []*modconfig.DashboardTreeItemDiffs ChangedTexts []*modconfig.DashboardTreeItemDiffs ChangedNodes []*modconfig.DashboardTreeItemDiffs ChangedEdges []*modconfig.DashboardTreeItemDiffs NewDashboards []*modconfig.Dashboard NewContainers []*modconfig.DashboardContainer NewControls []*modconfig.Control NewBenchmarks []*modconfig.Benchmark NewCards []*modconfig.DashboardCard NewCategories []*modconfig.DashboardCategory NewCharts []*modconfig.DashboardChart NewFlows []*modconfig.DashboardFlow NewGraphs []*modconfig.DashboardGraph NewHierarchies []*modconfig.DashboardHierarchy NewImages []*modconfig.DashboardImage NewInputs []*modconfig.DashboardInput NewTables []*modconfig.DashboardTable NewTexts []*modconfig.DashboardText NewNodes []*modconfig.DashboardNode NewEdges []*modconfig.DashboardEdge DeletedDashboards []*modconfig.Dashboard DeletedContainers []*modconfig.DashboardContainer DeletedControls []*modconfig.Control DeletedBenchmarks []*modconfig.Benchmark DeletedCards []*modconfig.DashboardCard DeletedCategories []*modconfig.DashboardCategory DeletedCharts []*modconfig.DashboardChart DeletedFlows []*modconfig.DashboardFlow DeletedGraphs []*modconfig.DashboardGraph DeletedHierarchies []*modconfig.DashboardHierarchy DeletedImages []*modconfig.DashboardImage DeletedInputs []*modconfig.DashboardInput DeletedTables []*modconfig.DashboardTable DeletedTexts []*modconfig.DashboardText DeletedNodes []*modconfig.DashboardNode DeletedEdges []*modconfig.DashboardEdge }
func (*DashboardChanged) AddChanged ¶ added in v0.15.2
func (c *DashboardChanged) AddChanged(item modconfig.ModTreeItem)
func (*DashboardChanged) HasChanges ¶
func (c *DashboardChanged) HasChanges() bool
func (*DashboardChanged) IsDashboardEvent ¶
func (*DashboardChanged) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
func (*DashboardChanged) SetParentsChanged ¶ added in v0.15.2
func (c *DashboardChanged) SetParentsChanged(item modconfig.ModTreeItem, prevResourceMaps *modconfig.ResourceMaps)
func (*DashboardChanged) WalkChangedResources ¶ added in v0.15.2
func (c *DashboardChanged) WalkChangedResources(resourceFunc func(item modconfig.ModTreeItem) (bool, error)) error
type DashboardEvent ¶
type DashboardEvent interface {
IsDashboardEvent()
}
type DashboardEventHandler ¶
type DashboardEventHandler func(context.Context, DashboardEvent)
type ExecutionComplete ¶
type ExecutionComplete struct { Root dashboardtypes.DashboardTreeRun Session string ExecutionId string Panels map[string]dashboardtypes.SnapshotPanel Inputs map[string]interface{} Variables map[string]string SearchPath []string StartTime time.Time EndTime time.Time }
func (*ExecutionComplete) IsDashboardEvent ¶
func (*ExecutionComplete) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
type ExecutionError ¶
ExecutionError is an event which is sent if an error occusrs _before execution has started_ e.g. a failure to create the execution tree
func (*ExecutionError) IsDashboardEvent ¶
func (*ExecutionError) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
type ExecutionStarted ¶
type ExecutionStarted struct { Root dashboardtypes.DashboardTreeRun `json:"dashboard"` Panels map[string]any Session string ExecutionId string Inputs map[string]any Variables map[string]string StartTime time.Time // immutable representation of event data - to avoid mutation before we send it JsonData []byte }
func (*ExecutionStarted) IsDashboardEvent ¶
func (*ExecutionStarted) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
type InputValuesCleared ¶
func (*InputValuesCleared) IsDashboardEvent ¶
func (*InputValuesCleared) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
type LeafNodeUpdated ¶ added in v0.19.0
type LeafNodeUpdated struct { LeafNode map[string]any Session string ExecutionId string Timestamp time.Time }
func NewLeafNodeUpdate ¶ added in v0.19.0
func NewLeafNodeUpdate(r dashboardtypes.DashboardTreeRun, session, executionId string) (*LeafNodeUpdated, error)
func (*LeafNodeUpdated) IsDashboardEvent ¶ added in v0.19.0
func (*LeafNodeUpdated) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
type WorkspaceError ¶
type WorkspaceError struct {
Error error
}
func (*WorkspaceError) IsDashboardEvent ¶
func (*WorkspaceError) IsDashboardEvent()
IsDashboardEvent implements DashboardEvent interface
Click to show internal directories.
Click to hide internal directories.