mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-18 13:00:10 -05:00
22 lines
554 B
Go
22 lines
554 B
Go
package dashboardevents
|
|
|
|
import (
|
|
"github.com/turbot/steampipe/pkg/dashboard/dashboardtypes"
|
|
"time"
|
|
)
|
|
|
|
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
|
|
}
|
|
|
|
// IsDashboardEvent implements DashboardEvent interface
|
|
func (*ExecutionStarted) IsDashboardEvent() {}
|