Skip to content

Commit

Permalink
providers/supermicro: include lsblk, hdparm, nvme collectors for capa…
Browse files Browse the repository at this point in the history
…bilities data
  • Loading branch information
joelrebel committed Nov 10, 2022
1 parent ae0a2e3 commit 48cc7a0
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions providers/supermicro/supermicro.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,17 @@ func New(dmidecode *utils.Dmidecode, l *logrus.Logger) (model.DeviceManager, err

// register inventory collectors
collectors := &actions.Collectors{
BMC: utils.NewIpmicfgCmd(trace),
BIOS: utils.NewIpmicfgCmd(trace),
CPLDs: utils.NewIpmicfgCmd(trace),
Drives: []actions.DriveCollector{utils.NewSmartctlCmd(trace)},
BMC: utils.NewIpmicfgCmd(trace),
BIOS: utils.NewIpmicfgCmd(trace),
CPLDs: utils.NewIpmicfgCmd(trace),
Drives: []actions.DriveCollector{
utils.NewSmartctlCmd(trace),
utils.NewLsblkCmd(trace),
},
DriveCapabilities: []actions.DriveCapabilityCollector{
utils.NewHdparmCmd(trace),
utils.NewNvmeCmd(trace),
},
StorageControllers: utils.NewStoreCLICmd(trace),
NICs: utils.NewMlxupCmd(trace),
}
Expand Down

0 comments on commit 48cc7a0

Please sign in to comment.