github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/dashboard/dashboardevents/execution_error.go (about)

     1  package dashboardevents
     2  
     3  import "time"
     4  
     5  // ExecutionError is an event which is sent if an error occusrs _before execution has started_
     6  // e.g. a failure to create the execution tree
     7  type ExecutionError struct {
     8  	Error     error
     9  	Session   string
    10  	Timestamp time.Time
    11  }
    12  
    13  // IsDashboardEvent implements DashboardEvent interface
    14  func (*ExecutionError) IsDashboardEvent() {}