fleet/orbit/pkg/table/extension_linux.go

21 lines
685 B
Go
Raw Normal View History

2023-11-02 02:11:35 +00:00
//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/rs/zerolog/log"
2023-11-02 02:11:35 +00:00
"github.com/osquery/osquery-go"
)
func PlatformTables(_ PluginOpts) ([]osquery.OsqueryPlugin, error) {
2023-11-02 02:11:35 +00:00
return []osquery.OsqueryPlugin{
cryptsetup.TablePlugin(log.Logger), // table name is "cryptsetup_status"
falconctl.NewFalconctlOptionTable(log.Logger), // table name is "falconctl_option"
falcon_kernel_check.TablePlugin(log.Logger), // table name is "falcon_kernel_check"
}, nil
2023-11-02 02:11:35 +00:00
}