mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
Merge pull request #39 from cjh1/collection-nis
Store network interfaces during collect
This commit is contained in:
commit
45d614dff4
2 changed files with 103 additions and 43 deletions
|
|
@ -115,9 +115,6 @@ func CollectAll(probeStates *[]ScannedResult, l *log.Logger, q *QueryParams) err
|
|||
"RediscoverOnUpdate": false,
|
||||
}
|
||||
|
||||
// unmarshal json to send in correct format
|
||||
var rm map[string]json.RawMessage
|
||||
|
||||
// chassis
|
||||
if gofishClient != nil {
|
||||
chassis, err := CollectChassis(gofishClient, q)
|
||||
|
|
@ -125,32 +122,23 @@ func CollectAll(probeStates *[]ScannedResult, l *log.Logger, q *QueryParams) err
|
|||
l.Log.Errorf("failed to collect chassis: %v", err)
|
||||
continue
|
||||
}
|
||||
err = json.Unmarshal(chassis, &rm)
|
||||
if err != nil {
|
||||
l.Log.Errorf("failed to unmarshal chassis JSON: %v", err)
|
||||
}
|
||||
data["Chassis"] = rm["Chassis"]
|
||||
data["Chassis"] = chassis
|
||||
|
||||
// systems
|
||||
systems, err := CollectSystems(gofishClient, q)
|
||||
if err != nil {
|
||||
l.Log.Errorf("failed to collect systems: %v", err)
|
||||
}
|
||||
err = json.Unmarshal(systems, &rm)
|
||||
if err != nil {
|
||||
l.Log.Errorf("failed to unmarshal system JSON after collect: %v", err)
|
||||
}
|
||||
data["Systems"] = rm["Systems"]
|
||||
data["Systems"] = systems
|
||||
|
||||
// add other fields from systems
|
||||
if len(rm["Systems"]) > 0 {
|
||||
var s map[string][]any
|
||||
fmt.Printf("Systems before unmarshaling: %v\n", string(rm["Systems"]))
|
||||
err = json.Unmarshal(rm["Systems"], &s)
|
||||
if err != nil {
|
||||
l.Log.Errorf("failed to unmarshal systems JSON: %v", err)
|
||||
if len(systems) > 0 {
|
||||
system := systems[0]["Data"].(*redfish.ComputerSystem)
|
||||
if system == nil {
|
||||
l.Log.Errorf("invalid system data (data is nil)")
|
||||
} else {
|
||||
data["Name"] = system.Name
|
||||
}
|
||||
data["Name"] = s["Name"]
|
||||
}
|
||||
} else {
|
||||
l.Log.Errorf("invalid client (client is nil)")
|
||||
|
|
@ -392,19 +380,26 @@ func CollectEthernetInterfaces(c *gofish.APIClient, q *QueryParams, systemID str
|
|||
return b, nil
|
||||
}
|
||||
|
||||
func CollectChassis(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
||||
chassis, err := c.Service.Chassis()
|
||||
func CollectChassis(c *gofish.APIClient, q *QueryParams) ([]map[string]any, error) {
|
||||
rfChassis, err := c.Service.Chassis()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to query chassis (%v:%v): %v", q.Host, q.Port, err)
|
||||
}
|
||||
|
||||
data := map[string]any{"Chassis": chassis}
|
||||
b, err := json.MarshalIndent(data, "", " ")
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to marshal JSON: %v", err)
|
||||
var chassis []map[string]any
|
||||
for _, ch := range rfChassis {
|
||||
networkAdapters, err := ch.NetworkAdapters()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get network adapters: %v", err)
|
||||
}
|
||||
|
||||
chassis = append(chassis, map[string]any{
|
||||
"Data": ch,
|
||||
"NetworkAdapters": networkAdapters,
|
||||
})
|
||||
}
|
||||
|
||||
return b, nil
|
||||
return chassis, nil
|
||||
}
|
||||
|
||||
func CollectStorage(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
||||
|
|
@ -432,8 +427,8 @@ func CollectStorage(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
|||
return b, nil
|
||||
}
|
||||
|
||||
func CollectSystems(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
||||
systems, err := c.Service.Systems()
|
||||
func CollectSystems(c *gofish.APIClient, q *QueryParams) ([]map[string]any, error) {
|
||||
rfSystems, err := c.Service.Systems()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get systems (%v:%v): %v", q.Host, q.Port, err)
|
||||
}
|
||||
|
|
@ -445,13 +440,10 @@ func CollectSystems(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
|||
// 2.a. if yes, query both properties to use in next step
|
||||
// 2.b. for each service, query its data and add the ethernet interfaces
|
||||
// 2.c. add the system to list of systems to marshal and return
|
||||
var (
|
||||
temp []map[string]any
|
||||
eths []*redfish.EthernetInterface
|
||||
)
|
||||
var systems []map[string]any
|
||||
|
||||
for _, system := range systems {
|
||||
eths, err = system.EthernetInterfaces()
|
||||
for _, system := range rfSystems {
|
||||
eths, err := system.EthernetInterfaces()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get system ethernet interfaces: %v", err)
|
||||
}
|
||||
|
|
@ -473,10 +465,31 @@ func CollectSystems(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
|||
}
|
||||
}
|
||||
|
||||
// add network interfaces to system
|
||||
rfNetworkInterfaces, err := system.NetworkInterfaces()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get system network interfaces: %v", err)
|
||||
}
|
||||
|
||||
// get the network adapter ID for each network interface
|
||||
var networkInterfaces []map[string]any
|
||||
for _, rfNetworkInterface := range rfNetworkInterfaces {
|
||||
networkAdapter, err := rfNetworkInterface.NetworkAdapter()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to get network adapter: %v", err)
|
||||
}
|
||||
|
||||
networkInterfaces = append(networkInterfaces, map[string]any{
|
||||
"Data": rfNetworkInterface,
|
||||
"NetworkAdapterId": networkAdapter.ID,
|
||||
})
|
||||
}
|
||||
|
||||
// add system to collection of systems
|
||||
temp = append(temp, map[string]any{
|
||||
systems = append(systems, map[string]any{
|
||||
"Data": system,
|
||||
"EthernetInterfaces": eths,
|
||||
"NetworkInterfaces": networkInterfaces,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
@ -589,13 +602,7 @@ func CollectSystems(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
|||
// }
|
||||
// }
|
||||
|
||||
data := map[string]any{"Systems": temp}
|
||||
b, err := json.MarshalIndent(data, "", " ")
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to marshal JSON: %v", err)
|
||||
}
|
||||
|
||||
return b, nil
|
||||
return systems, nil
|
||||
}
|
||||
|
||||
func CollectRegisteries(c *gofish.APIClient, q *QueryParams) ([]byte, error) {
|
||||
|
|
|
|||
|
|
@ -24,6 +24,22 @@ type EthernetInterface struct {
|
|||
Description string `json:"description,omitempty"` // Description of the interface
|
||||
}
|
||||
|
||||
type NetworkAdapter struct {
|
||||
URI string `json:"uri,omitempty"` // URI of the adapter
|
||||
Manufacturer string `json:"manufacturer,omitempty"` // Manufacturer of the adapter
|
||||
Name string `json:"name,omitempty"` // Name of the adapter
|
||||
Model string `json:"model,omitempty"` // Model of the adapter
|
||||
Serial string `json:"serial,omitempty"` // Serial number of the adapter
|
||||
Description string `json:"description,omitempty"` // Description of the adapter
|
||||
}
|
||||
|
||||
type NetworkInterface struct {
|
||||
URI string `json:"uri,omitempty"` // URI of the interface
|
||||
Name string `json:"name,omitempty"` // Name of the interface
|
||||
Description string `json:"description,omitempty"` // Description of the interface
|
||||
Adapter NetworkAdapter `json:"adapter,omitempty"` // Adapter of the interface
|
||||
}
|
||||
|
||||
type InventoryDetail struct {
|
||||
URI string `json:"uri,omitempty"` // URI of the BMC
|
||||
Manufacturer string `json:"manufacturer,omitempty"` // Manufacturer of the Node
|
||||
|
|
@ -32,6 +48,7 @@ type InventoryDetail struct {
|
|||
Serial string `json:"serial,omitempty"` // Serial number of the Node
|
||||
BiosVersion string `json:"bios_version,omitempty"` // Version of the BIOS
|
||||
EthernetInterfaces []EthernetInterface `json:"ethernet_interfaces,omitempty"` // Ethernet interfaces of the Node
|
||||
NetworkInterfaces []NetworkInterface `json:"network_interfaces,omitempty"` // Network interfaces of the Node
|
||||
PowerState string `json:"power_state,omitempty"` // Power state of the Node
|
||||
ProcessorCount int `json:"processor_count,omitempty"` // Processors of the Node
|
||||
ProcessorType string `json:"processor_type,omitempty"` // Processor type of the Node
|
||||
|
|
@ -129,6 +146,7 @@ func walkSystems(rf_systems []*redfish.ComputerSystem, rf_chassis *redfish.Chass
|
|||
}
|
||||
for _, rf_ethernetinterface := range rf_ethernetinterfaces {
|
||||
ethernetinterface := EthernetInterface{
|
||||
URI: baseURI + rf_ethernetinterface.ODataID,
|
||||
MAC: rf_ethernetinterface.MACAddress,
|
||||
Name: rf_ethernetinterface.Name,
|
||||
Description: rf_ethernetinterface.Description,
|
||||
|
|
@ -138,6 +156,41 @@ func walkSystems(rf_systems []*redfish.ComputerSystem, rf_chassis *redfish.Chass
|
|||
}
|
||||
system.EthernetInterfaces = append(system.EthernetInterfaces, ethernetinterface)
|
||||
}
|
||||
|
||||
rf_networkInterfaces, err := rf_computersystem.NetworkInterfaces()
|
||||
if err != nil {
|
||||
log.Error().Err(err).Msg("failed to get network interfaces from computer system")
|
||||
return systems, err
|
||||
}
|
||||
|
||||
for _, rf_networkInterface := range rf_networkInterfaces {
|
||||
rf_networkAdapter, err := rf_networkInterface.NetworkAdapter()
|
||||
if err != nil {
|
||||
log.Error().Err(err).Msg("failed to get network adapter from network interface")
|
||||
return systems, err
|
||||
}
|
||||
|
||||
var networkAdapter NetworkAdapter
|
||||
if rf_networkAdapter != nil {
|
||||
networkAdapter = NetworkAdapter{
|
||||
URI: baseURI + rf_networkAdapter.ODataID,
|
||||
Name: rf_networkAdapter.Name,
|
||||
Manufacturer: rf_networkAdapter.Manufacturer,
|
||||
Model: rf_networkAdapter.Model,
|
||||
Serial: rf_networkAdapter.SerialNumber,
|
||||
Description: rf_networkAdapter.Description,
|
||||
}
|
||||
}
|
||||
|
||||
networkInterface := NetworkInterface{
|
||||
URI: baseURI + rf_networkInterface.ODataID,
|
||||
Name: rf_networkInterface.Name,
|
||||
Description: rf_networkInterface.Description,
|
||||
Adapter: networkAdapter,
|
||||
}
|
||||
system.NetworkInterfaces = append(system.NetworkInterfaces, networkInterface)
|
||||
}
|
||||
|
||||
for _, rf_trustedmodule := range rf_computersystem.TrustedModules {
|
||||
system.TrustedModules = append(system.TrustedModules, fmt.Sprintf("%s %s", rf_trustedmodule.InterfaceType, rf_trustedmodule.FirmwareVersion))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue