fleet/server/fleet/osquery.go
Tomas Touceda 5fb5995b83
Remove unneeded interfaces (#1779)
* Remove unneeded interfaces

* Remove unused code
2021-08-24 18:49:56 -03:00

59 lines
1.9 KiB
Go

package fleet
// OsqueryDistributedQueryResults represents the format of the results of an
// osquery distributed query.
type OsqueryDistributedQueryResults map[string][]map[string]string
// OsqueryStatus represents osquery status codes (0 = success, nonzero =
// failure)
type OsqueryStatus int
const (
// StatusOK is the success code returned by osquery
StatusOK OsqueryStatus = 0
)
// QueryContent is the format of a query stanza in an osquery configuration.
type QueryContent struct {
Query string `json:"query"`
Description string `json:"description,omitempty"`
Interval uint `json:"interval"`
Platform *string `json:"platform,omitempty"`
Version *string `json:"version,omitempty"`
Snapshot *bool `json:"snapshot,omitempty"`
Removed *bool `json:"removed,omitempty"`
Shard *uint `json:"shard,omitempty"`
Denylist *bool `json:"denylist,omitempty"`
}
type PermissiveQueryContent struct {
QueryContent
Interval interface{} `json:"interval"`
}
// Queries is a helper which represents the format of a set of queries in a pack.
type Queries map[string]QueryContent
type PermissiveQueries map[string]PermissiveQueryContent
// PackContent is the format of an osquery query pack.
type PackContent struct {
Platform string `json:"platform,omitempty"`
Version string `json:"version,omitempty"`
Shard uint `json:"shard,omitempty"`
Discovery []string `json:"discovery,omitempty"`
Queries Queries `json:"queries"`
}
type PermissivePackContent struct {
Platform string `json:"platform,omitempty"`
Version string `json:"version,omitempty"`
Shard uint `json:"shard,omitempty"`
Discovery []string `json:"discovery,omitempty"`
Queries PermissiveQueries `json:"queries"`
}
// Packs is a helper which represents the format of a list of osquery query packs.
type Packs map[string]PackContent
type PermissivePacks map[string]PermissivePackContent