fleet/orbit/pkg/table/extension_linux.go
2023-11-01 20:11:35 -06:00

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"
}
}