mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
19 lines
880 B
Go
19 lines
880 B
Go
package fleet
|
|
|
|
// LiveQueryStore defines an interface for storing and retrieving the status of
|
|
// live queries in the Fleet system.
|
|
type LiveQueryStore interface {
|
|
// RunQuery starts a query with the given name and SQL, targeting the
|
|
// provided host IDs.
|
|
RunQuery(name, sql string, hostIDs []uint) error
|
|
// StopQuery stops a running query with the given name. Hosts will no longer
|
|
// receive the query after StopQuery has been called.
|
|
StopQuery(name string) error
|
|
// QueriesForHost returns the active queries for the given host ID. The
|
|
// return value maps from query name to SQL.
|
|
QueriesForHost(hostID uint) (map[string]string, error)
|
|
// QueryCompletedByHost marks the query with the given name as completed by the
|
|
// given host. After calling QueryCompleted, that query will no longer be
|
|
// sent to the host.
|
|
QueryCompletedByHost(name string, hostID uint) error
|
|
}
|