Documentation ¶
Index ¶
- Variables
- type CheckRun
- func (r *CheckRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
- func (r *CheckRun) ChildrenComplete() bool
- func (r *CheckRun) Execute(ctx context.Context)
- func (r *CheckRun) GetChildren() []dashboardtypes.DashboardNodeRun
- func (r *CheckRun) GetError() error
- func (r *CheckRun) GetInputsDependingOn(changedInputName string) []string
- func (r *CheckRun) GetName() string
- func (r *CheckRun) GetRunStatus() dashboardtypes.DashboardRunStatus
- func (r *CheckRun) Initialise(ctx context.Context)
- func (*CheckRun) IsSnapshotPanel()
- func (r *CheckRun) RunComplete() bool
- func (r *CheckRun) SetComplete()
- func (r *CheckRun) SetError(err error)
- type ControlEventHooks
- func (c *ControlEventHooks) OnComplete(ctx context.Context, _ *controlstatus.ControlProgress)
- func (c *ControlEventHooks) OnControlComplete(ctx context.Context, controlRun controlstatus.ControlRunStatusProvider, ...)
- func (c *ControlEventHooks) OnControlError(ctx context.Context, controlRun controlstatus.ControlRunStatusProvider, ...)
- func (c *ControlEventHooks) OnControlStart(context.Context, controlstatus.ControlRunStatusProvider, ...)
- func (c *ControlEventHooks) OnStart(ctx context.Context, _ *controlstatus.ControlProgress)
- type DashboardContainerRun
- func (r *DashboardContainerRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
- func (r *DashboardContainerRun) ChildCompleteChan() chan dashboardtypes.DashboardNodeRun
- func (r *DashboardContainerRun) ChildrenComplete() bool
- func (r *DashboardContainerRun) Execute(ctx context.Context)
- func (r *DashboardContainerRun) GetChildren() []dashboardtypes.DashboardNodeRun
- func (r *DashboardContainerRun) GetError() error
- func (r *DashboardContainerRun) GetInputsDependingOn(changedInputName string) []string
- func (r *DashboardContainerRun) GetName() string
- func (r *DashboardContainerRun) GetRunStatus() dashboardtypes.DashboardRunStatus
- func (r *DashboardContainerRun) Initialise(ctx context.Context)
- func (*DashboardContainerRun) IsSnapshotPanel()
- func (r *DashboardContainerRun) RunComplete() bool
- func (r *DashboardContainerRun) SetComplete()
- func (r *DashboardContainerRun) SetError(err error)
- type DashboardExecutionTree
- func (e *DashboardExecutionTree) Cancel()
- func (e *DashboardExecutionTree) ChildCompleteChan() chan dashboardtypes.DashboardNodeRun
- func (e *DashboardExecutionTree) Execute(ctx context.Context)
- func (e *DashboardExecutionTree) GetInputValue(name string) interface{}
- func (e *DashboardExecutionTree) GetName() string
- func (e *DashboardExecutionTree) GetRunStatus() dashboardtypes.DashboardRunStatus
- func (e *DashboardExecutionTree) SetError(err error)
- func (e *DashboardExecutionTree) SetInputs(inputValues map[string]interface{})
- type DashboardExecutor
- func (e *DashboardExecutor) CancelExecutionForSession(_ context.Context, sessionId string)
- func (e *DashboardExecutor) ExecuteDashboard(ctx context.Context, sessionId, dashboardName string, ...) (err error)
- func (e *DashboardExecutor) OnInputChanged(ctx context.Context, sessionId string, inputs map[string]interface{}, ...) error
- type DashboardRun
- func (r *DashboardRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
- func (r *DashboardRun) ChildCompleteChan() chan dashboardtypes.DashboardNodeRun
- func (r *DashboardRun) ChildrenComplete() bool
- func (r *DashboardRun) Execute(ctx context.Context)
- func (r *DashboardRun) GetChildren() []dashboardtypes.DashboardNodeRun
- func (r *DashboardRun) GetError() error
- func (r *DashboardRun) GetInput(name string) (*modconfig.DashboardInput, bool)
- func (r *DashboardRun) GetInputsDependingOn(changedInputName string) []string
- func (r *DashboardRun) GetName() string
- func (r *DashboardRun) GetRunStatus() dashboardtypes.DashboardRunStatus
- func (r *DashboardRun) Initialise(ctx context.Context)
- func (*DashboardRun) IsSnapshotPanel()
- func (r *DashboardRun) RunComplete() bool
- func (r *DashboardRun) SetComplete()
- func (r *DashboardRun) SetError(err error)
- type LeafRun
- func (r *LeafRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
- func (r *LeafRun) ChildrenComplete() bool
- func (r *LeafRun) Execute(ctx context.Context)
- func (r *LeafRun) GetChildren() []dashboardtypes.DashboardNodeRun
- func (r *LeafRun) GetError() error
- func (r *LeafRun) GetInputsDependingOn(changedInputName string) []string
- func (r *LeafRun) GetName() string
- func (r *LeafRun) GetRunStatus() dashboardtypes.DashboardRunStatus
- func (r *LeafRun) Initialise(ctx context.Context)
- func (*LeafRun) IsSnapshotPanel()
- func (r *LeafRun) RunComplete() bool
- func (r *LeafRun) SetComplete()
- func (r *LeafRun) SetError(err error)
- type ResolvedRuntimeDependency
Constants ¶
This section is empty.
Variables ¶
var Executor = newDashboardExecutor()
Functions ¶
This section is empty.
Types ¶
type CheckRun ¶
type CheckRun struct { Name string `json:"name"` Title string `json:"title,omitempty"` Width int `json:"width,omitempty"` Description string `json:"description,omitempty"` Documentation string `json:"documentation,omitempty"` Display string `json:"display,omitempty"` Type string `json:"display_type,omitempty"` Tags map[string]string `json:"tags,omitempty"` ErrorString string `json:"error,omitempty"` NodeType string `json:"panel_type"` DashboardName string `json:"dashboard"` SourceDefinition string `json:"source_definition"` SessionId string `json:"session_id"` Summary *controlexecute.GroupSummary `json:"summary"` // if the dashboard node is a control, serialise to json as 'properties' Control *modconfig.Control `json:"properties,omitempty"` DashboardNode modconfig.DashboardLeafNode `json:"-"` // contains filtered or unexported fields }
CheckRun is a struct representing the execution of a control or benchmark
func NewCheckRun ¶
func NewCheckRun(resource modconfig.DashboardLeafNode, parent dashboardtypes.DashboardNodeParent, executionTree *DashboardExecutionTree) (*CheckRun, error)
func (*CheckRun) AsTreeNode ¶
func (r *CheckRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
func (*CheckRun) ChildrenComplete ¶
ChildrenComplete implements DashboardNodeRun
func (*CheckRun) GetChildren ¶
func (r *CheckRun) GetChildren() []dashboardtypes.DashboardNodeRun
GetChildren implements DashboardNodeRun
func (*CheckRun) GetInputsDependingOn ¶
GetInputsDependingOn implements DashboardNodeRun return nothing for CheckRun
func (*CheckRun) GetRunStatus ¶
func (r *CheckRun) GetRunStatus() dashboardtypes.DashboardRunStatus
GetRunStatus implements DashboardNodeRun
func (*CheckRun) Initialise ¶
Initialise implements DashboardRunNode
func (*CheckRun) IsSnapshotPanel ¶
func (*CheckRun) IsSnapshotPanel()
IsSnapshotPanel implements SnapshotPanel
func (*CheckRun) RunComplete ¶
RunComplete implements DashboardNodeRun
func (*CheckRun) SetComplete ¶
func (r *CheckRun) SetComplete()
SetComplete implements DashboardNodeRun
type ControlEventHooks ¶
type ControlEventHooks struct {
CheckRun *CheckRun
}
ControlEventHooks is a struct which implements ControlHooks, and displays the control progress as a status message
func NewControlEventHooks ¶
func NewControlEventHooks(r *CheckRun) *ControlEventHooks
func (*ControlEventHooks) OnComplete ¶
func (c *ControlEventHooks) OnComplete(ctx context.Context, _ *controlstatus.ControlProgress)
func (*ControlEventHooks) OnControlComplete ¶
func (c *ControlEventHooks) OnControlComplete(ctx context.Context, controlRun controlstatus.ControlRunStatusProvider, progress *controlstatus.ControlProgress)
func (*ControlEventHooks) OnControlError ¶
func (c *ControlEventHooks) OnControlError(ctx context.Context, controlRun controlstatus.ControlRunStatusProvider, progress *controlstatus.ControlProgress)
func (*ControlEventHooks) OnControlStart ¶
func (c *ControlEventHooks) OnControlStart(context.Context, controlstatus.ControlRunStatusProvider, *controlstatus.ControlProgress)
func (*ControlEventHooks) OnStart ¶
func (c *ControlEventHooks) OnStart(ctx context.Context, _ *controlstatus.ControlProgress)
type DashboardContainerRun ¶
type DashboardContainerRun struct { Name string `json:"name"` Title string `json:"title,omitempty"` Width int `json:"width,omitempty"` Display string `json:"display,omitempty"` ErrorString string `json:"error,omitempty"` Children []dashboardtypes.DashboardNodeRun `json:"-"` NodeType string `json:"panel_type"` Status dashboardtypes.DashboardRunStatus `json:"status"` DashboardName string `json:"dashboard"` SourceDefinition string `json:"source_definition"` // contains filtered or unexported fields }
DashboardContainerRun is a struct representing a container run
func NewDashboardContainerRun ¶
func NewDashboardContainerRun(container *modconfig.DashboardContainer, parent dashboardtypes.DashboardNodeParent, executionTree *DashboardExecutionTree) (*DashboardContainerRun, error)
func (*DashboardContainerRun) AsTreeNode ¶
func (r *DashboardContainerRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
func (*DashboardContainerRun) ChildCompleteChan ¶
func (r *DashboardContainerRun) ChildCompleteChan() chan dashboardtypes.DashboardNodeRun
func (*DashboardContainerRun) ChildrenComplete ¶
func (r *DashboardContainerRun) ChildrenComplete() bool
ChildrenComplete implements DashboardNodeRun
func (*DashboardContainerRun) Execute ¶
func (r *DashboardContainerRun) Execute(ctx context.Context)
Execute implements DashboardRunNode execute all children and wait for them to complete
func (*DashboardContainerRun) GetChildren ¶
func (r *DashboardContainerRun) GetChildren() []dashboardtypes.DashboardNodeRun
GetChildren implements DashboardNodeRun
func (*DashboardContainerRun) GetError ¶
func (r *DashboardContainerRun) GetError() error
GetError implements DashboardNodeRun
func (*DashboardContainerRun) GetInputsDependingOn ¶
func (r *DashboardContainerRun) GetInputsDependingOn(changedInputName string) []string
GetInputsDependingOn implements DashboardNodeRun return nothing for DashboardContainerRun
func (*DashboardContainerRun) GetName ¶
func (r *DashboardContainerRun) GetName() string
GetName implements DashboardNodeRun
func (*DashboardContainerRun) GetRunStatus ¶
func (r *DashboardContainerRun) GetRunStatus() dashboardtypes.DashboardRunStatus
GetRunStatus implements DashboardNodeRun
func (*DashboardContainerRun) Initialise ¶
func (r *DashboardContainerRun) Initialise(ctx context.Context)
Initialise implements DashboardRunNode
func (*DashboardContainerRun) IsSnapshotPanel ¶
func (*DashboardContainerRun) IsSnapshotPanel()
IsSnapshotPanel implements SnapshotPanel
func (*DashboardContainerRun) RunComplete ¶
func (r *DashboardContainerRun) RunComplete() bool
RunComplete implements DashboardNodeRun
func (*DashboardContainerRun) SetComplete ¶
func (r *DashboardContainerRun) SetComplete()
SetComplete implements DashboardNodeRun
func (*DashboardContainerRun) SetError ¶
func (r *DashboardContainerRun) SetError(err error)
SetError implements DashboardNodeRun tell parent we are done
type DashboardExecutionTree ¶
type DashboardExecutionTree struct { Root dashboardtypes.DashboardNodeRun // contains filtered or unexported fields }
DashboardExecutionTree is a structure representing the control result hierarchy
func NewDashboardExecutionTree ¶
func NewDashboardExecutionTree(rootName string, sessionId string, client db_common.Client, workspace *workspace.Workspace) (*DashboardExecutionTree, error)
NewDashboardExecutionTree creates a result group from a ModTreeItem
func (*DashboardExecutionTree) Cancel ¶
func (e *DashboardExecutionTree) Cancel()
func (*DashboardExecutionTree) ChildCompleteChan ¶
func (e *DashboardExecutionTree) ChildCompleteChan() chan dashboardtypes.DashboardNodeRun
ChildCompleteChan implements DashboardNodeParent
func (*DashboardExecutionTree) Execute ¶
func (e *DashboardExecutionTree) Execute(ctx context.Context)
func (*DashboardExecutionTree) GetInputValue ¶
func (e *DashboardExecutionTree) GetInputValue(name string) interface{}
func (*DashboardExecutionTree) GetName ¶
func (e *DashboardExecutionTree) GetName() string
GetName implements DashboardNodeParent use mod chort name - this will be the root name for all child runs
func (*DashboardExecutionTree) GetRunStatus ¶
func (e *DashboardExecutionTree) GetRunStatus() dashboardtypes.DashboardRunStatus
GetRunStatus returns the stats of the Root run
func (*DashboardExecutionTree) SetError ¶
func (e *DashboardExecutionTree) SetError(err error)
SetError sets the error on the Root run
func (*DashboardExecutionTree) SetInputs ¶
func (e *DashboardExecutionTree) SetInputs(inputValues map[string]interface{})
type DashboardExecutor ¶
type DashboardExecutor struct {
// contains filtered or unexported fields
}
func (*DashboardExecutor) CancelExecutionForSession ¶
func (e *DashboardExecutor) CancelExecutionForSession(_ context.Context, sessionId string)
func (*DashboardExecutor) ExecuteDashboard ¶
func (*DashboardExecutor) OnInputChanged ¶
type DashboardRun ¶
type DashboardRun struct { Name string `json:"name"` Title string `json:"title,omitempty"` Width int `json:"width,omitempty"` Description string `json:"description,omitempty"` Display string `json:"display,omitempty"` Documentation string `json:"documentation,omitempty"` Tags map[string]string `json:"tags,omitempty"` ErrorString string `json:"error,omitempty"` Children []dashboardtypes.DashboardNodeRun `json:"-"` NodeType string `json:"panel_type"` Status dashboardtypes.DashboardRunStatus `json:"status"` DashboardName string `json:"dashboard"` SourceDefinition string `json:"source_definition"` // contains filtered or unexported fields }
DashboardRun is a struct representing a container run
func NewDashboardRun ¶
func NewDashboardRun(dashboard *modconfig.Dashboard, parent dashboardtypes.DashboardNodeParent, executionTree *DashboardExecutionTree) (*DashboardRun, error)
func (*DashboardRun) AsTreeNode ¶
func (r *DashboardRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
func (*DashboardRun) ChildCompleteChan ¶
func (r *DashboardRun) ChildCompleteChan() chan dashboardtypes.DashboardNodeRun
func (*DashboardRun) ChildrenComplete ¶
func (r *DashboardRun) ChildrenComplete() bool
ChildrenComplete implements DashboardNodeRun
func (*DashboardRun) Execute ¶
func (r *DashboardRun) Execute(ctx context.Context)
Execute implements DashboardRunNode execute all children and wait for them to complete
func (*DashboardRun) GetChildren ¶
func (r *DashboardRun) GetChildren() []dashboardtypes.DashboardNodeRun
GetChildren implements DashboardNodeRun
func (*DashboardRun) GetError ¶
func (r *DashboardRun) GetError() error
GetError implements DashboardNodeRun
func (*DashboardRun) GetInput ¶
func (r *DashboardRun) GetInput(name string) (*modconfig.DashboardInput, bool)
GetInput searches for an input with the given name
func (*DashboardRun) GetInputsDependingOn ¶
func (r *DashboardRun) GetInputsDependingOn(changedInputName string) []string
GetInputsDependingOn returns a list o DashboardInputs which have a runtime depdendency on the given input
func (*DashboardRun) GetName ¶
func (r *DashboardRun) GetName() string
GetName implements DashboardNodeRun
func (*DashboardRun) GetRunStatus ¶
func (r *DashboardRun) GetRunStatus() dashboardtypes.DashboardRunStatus
GetRunStatus implements DashboardNodeRun
func (*DashboardRun) Initialise ¶
func (r *DashboardRun) Initialise(ctx context.Context)
Initialise implements DashboardRunNode
func (*DashboardRun) IsSnapshotPanel ¶
func (*DashboardRun) IsSnapshotPanel()
IsSnapshotPanel implements SnapshotPanel
func (*DashboardRun) RunComplete ¶
func (r *DashboardRun) RunComplete() bool
RunComplete implements DashboardNodeRun
func (*DashboardRun) SetComplete ¶
func (r *DashboardRun) SetComplete()
SetComplete implements DashboardNodeRun
func (*DashboardRun) SetError ¶
func (r *DashboardRun) SetError(err error)
SetError implements DashboardNodeRun tell parent we are done
type LeafRun ¶
type LeafRun struct { Name string `json:"name"` Title string `json:"title,omitempty"` Width int `json:"width,omitempty"` Type string `cty:"type" hcl:"type" column:"type,text" json:"display_type,omitempty"` Display string `cty:"display" hcl:"display" json:"display,omitempty"` RawSQL string `json:"sql,omitempty"` Args []string `json:"args,omitempty"` Params []*modconfig.ParamDef ` json:"params,omitempty"` Data *dashboardtypes.LeafData `json:"data,omitempty"` ErrorString string `json:"error,omitempty"` DashboardNode modconfig.DashboardLeafNode `json:"properties,omitempty"` NodeType string `json:"panel_type"` Status dashboardtypes.DashboardRunStatus `json:"status"` DashboardName string `json:"dashboard"` SourceDefinition string `json:"source_definition"` // contains filtered or unexported fields }
LeafRun is a struct representing the execution of a leaf dashboard node
func NewLeafRun ¶
func NewLeafRun(resource modconfig.DashboardLeafNode, parent dashboardtypes.DashboardNodeParent, executionTree *DashboardExecutionTree) (*LeafRun, error)
func (*LeafRun) AsTreeNode ¶
func (r *LeafRun) AsTreeNode() *dashboardtypes.SnapshotTreeNode
func (*LeafRun) ChildrenComplete ¶
ChildrenComplete implements DashboardNodeRun
func (*LeafRun) GetChildren ¶
func (r *LeafRun) GetChildren() []dashboardtypes.DashboardNodeRun
GetChildren implements DashboardNodeRun
func (*LeafRun) GetInputsDependingOn ¶
GetInputsDependingOn implements DashboardNodeRun return nothing for LeafRun
func (*LeafRun) GetRunStatus ¶
func (r *LeafRun) GetRunStatus() dashboardtypes.DashboardRunStatus
GetRunStatus implements DashboardNodeRun
func (*LeafRun) Initialise ¶
Initialise implements DashboardRunNode
func (*LeafRun) IsSnapshotPanel ¶
func (*LeafRun) IsSnapshotPanel()
IsSnapshotPanel implements SnapshotPanel
func (*LeafRun) RunComplete ¶
RunComplete implements DashboardNodeRun
func (*LeafRun) SetComplete ¶
func (r *LeafRun) SetComplete()
SetComplete implements DashboardNodeRun
type ResolvedRuntimeDependency ¶
type ResolvedRuntimeDependency struct {
// contains filtered or unexported fields
}
ResolvedRuntimeDependency is a wrapper for RuntimeDependency which contains the resolved value we must wrap it so that we do not mutate the underlying workspace data when resolving dependency values
func NewResolvedRuntimeDependency ¶
func NewResolvedRuntimeDependency(dep *modconfig.RuntimeDependency, executionTree *DashboardExecutionTree) *ResolvedRuntimeDependency
func (*ResolvedRuntimeDependency) Resolve ¶
func (d *ResolvedRuntimeDependency) Resolve() bool