mirror of
https://github.com/fleetdm/fleet
synced 2026-05-15 13:08:42 +00:00
19 lines
639 B
Go
19 lines
639 B
Go
//go:build linux
|
|
|
|
package table
|
|
|
|
import (
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/crowdstrike/falcon_kernel_check"
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/crowdstrike/falconctl"
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/cryptsetup"
|
|
|
|
"github.com/osquery/osquery-go"
|
|
)
|
|
|
|
func PlatformTables() []osquery.OsqueryPlugin {
|
|
return []osquery.OsqueryPlugin{
|
|
cryptsetup.TablePlugin(osqueryLogger), // table name is "cryptsetup_status"
|
|
falconctl.NewFalconctlOptionTable(osqueryLogger), // table name is "falconctl_option"
|
|
falcon_kernel_check.TablePlugin(osqueryLogger), // table name is "falcon_kernel_check"
|
|
}
|
|
}
|