common

package module
v0.0.0-...-3db7cec Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 10, 2024 License: Apache-2.0 Imports: 1 Imported by: 33

README

Package common is intended to provide a common data structure to model server hardware and its component attributes between libraries/tools.

Documentation

Overview

Package common is intended to provide a common data structure to model server hardware and its component attributes between libraries/tools.

Index

Constants

View Source
const (
	VendorDell                  = "dell"
	VendorMicron                = "micron"
	VendorAsrockrack            = "asrockrack"
	VendorSupermicro            = "supermicro"
	VendorHPE                   = "hp"
	VendorQuanta                = "quanta"
	VendorGigabyte              = "gigabyte"
	VendorIntel                 = "intel"
	VendorLSI                   = "lsi"
	VendorHGST                  = "hgst"
	VendorPacket                = "packet"
	VendorMellanox              = "mellanox"
	VendorToshiba               = "toshiba"
	VendorAmericanMegatrends    = "american megatrends"
	VendorBroadcom              = "broadcom"
	VendorInfineon              = "infineon"
	VendorAMD                   = "amd"
	VendorHynix                 = "hynix"
	VendorSamsung               = "samsung"
	VendorMarvell               = "marvell"
	SystemManufacturerUndefined = "To Be Filled By O.E.M."

	// Generic component slugs
	// Slugs are set on Device types to identify the type of component
	//
	// note: Enlist any new component types in the method further below.
	SlugBackplaneExpander     = "Backplane-Expander"
	SlugChassis               = "Chassis"
	SlugTPM                   = "TPM"
	SlugGPU                   = "GPU"
	SlugCPU                   = "CPU"
	SlugPhysicalMem           = "PhysicalMemory"
	SlugStorageController     = "StorageController"
	SlugStorageControllers    = "StorageControllers"
	SlugBMC                   = "BMC"
	SlugBIOS                  = "BIOS"
	SlugDrive                 = "Drive"
	SlugDrives                = "Drives"
	SlugDriveTypePCIeNVMEeSSD = "NVMe-PCIe-SSD"
	SlugDriveTypeSATASSD      = "Sata-SSD"
	SlugDriveTypeSATAHDD      = "Sata-HDD"
	SlugNIC                   = "NIC"
	SlugNICs                  = "NICs"
	SlugPSU                   = "Power-Supply"
	SlugPSUs                  = "Power-Supplies"
	SlugCPLD                  = "CPLD"
	SlugEnclosure             = "Enclosure"
	SlugMainboard             = "Mainboard"
	SlugUnknown               = "unknown"

	// Smart status
	SmartStatusOK      = "ok"
	SmartStatusFailed  = "failed"
	SmartStatusUnknown = "unknown"

	VendorMarvellPciID = "1b4b"

	// RAID implementations
	SlugRAIDImplLinuxSoftware = "linuxsw"
	SlugRAIDImplZFS           = "zfs"
	SlugRAIDImplHardware      = "hardware"
)

Variables

This section is empty.

Functions

func ComponentTypes

func ComponentTypes() []string

func FormatProductName

func FormatProductName(s string) string

Return a normalized product name given a product name

nolint:gocyclo // This list is expected to be long.

func FormatVendorName

func FormatVendorName(name string) string

FormatVendorName compares the given strings to identify and returned a known vendor name. When a match is not found, the string is returned as is.

Note: This method will most likely return incorrect matches if the given vendor string is too short and or not unique enough.

nolint:gocyclo // This list is expected to be long.

func VendorFromString

func VendorFromString(s string) string

Return the product vendor name, given a product name/model string

Types

type BIOS

type BIOS struct {
	Common

	SizeBytes     int64 `json:"size_bytes,omitempty"`
	CapacityBytes int64 `json:"capacity_bytes,omitempty" diff:"immutable"`
}

BIOS component

type BMC

type BMC struct {
	Common

	ID  string `json:"id,omitempty"`
	NIC *NIC   `json:"nic,omitempty"`
}

BMC component

type CPLD

type CPLD struct {
	Common
}

CPLD component

type CPU

type CPU struct {
	Common

	ID           string `json:"id,omitempty"`
	Slot         string `json:"slot,omitempty"`
	Architecture string `json:"architecture,omitempty"`
	ClockSpeedHz int64  `json:"clock_speeed_hz,omitempty"`
	Cores        int    `json:"cores,omitempty"`
	Threads      int    `json:"threads,omitempty"`
}

CPU component

type Capability

type Capability struct {
	Name        string `json:"Name"`
	Description string `json:"Description"`
	Enabled     bool   `json:"Enabled"`
}

Capability is a struct to describe a device/component capability and its status.

type Common

type Common struct {
	Oem          bool              `json:"oem"`
	Description  string            `json:"description,omitempty"`
	Vendor       string            `json:"vendor,omitempty"`
	Model        string            `json:"model,omitempty"`
	Serial       string            `json:"serial,omitempty"`
	ProductName  string            `json:"product_name,omitempty"`
	LogicalName  string            `json:"logical_name,omitempty"`
	PCIVendorID  string            `json:"pci_vendor_id,omitempty"`
	PCIProductID string            `json:"pci_product_id,omitempty"`
	Capabilities []*Capability     `json:"capabilities,omitempty"`
	Metadata     map[string]string `json:"metadata,omitempty"`
	Firmware     *Firmware         `json:"firmware,omitempty"`
	Status       *Status           `json:"status,omitempty"`
}

Common holds attributes shared by all components

type Device

type Device struct {
	Common

	HardwareType       string               `json:"hardware_type,omitempty"`
	Chassis            string               `json:"chassis,omitempty"`
	BIOS               *BIOS                `json:"bios,omitempty"`
	BMC                *BMC                 `json:"bmc,omitempty"`
	Mainboard          *Mainboard           `json:"mainboard,omitempty"`
	CPLDs              []*CPLD              `json:"cplds"`
	TPMs               []*TPM               `json:"tpms,omitempty"`
	GPUs               []*GPU               `json:"gpus,omitempty"`
	CPUs               []*CPU               `json:"cpus,omitempty"`
	Memory             []*Memory            `json:"memory,omitempty"`
	NICs               []*NIC               `json:"nics,omitempty"`
	Drives             []*Drive             `json:"drives,omitempty"`
	StorageControllers []*StorageController `json:"storage_controller,omitempty"`
	PSUs               []*PSU               `json:"power_supplies,omitempty"`
	Enclosures         []*Enclosure         `json:"enclosures,omitempty"`
}

Device type is composed of various components

func NewDevice

func NewDevice() Device

NewDevice returns a pointer to an initialized Device type

type Drive

type Drive struct {
	Common

	ID                       string                  `json:"id,omitempty"`
	OemID                    string                  `json:"oem_id,omitempty"`
	Type                     string                  `json:"drive_type,omitempty"`
	StorageController        string                  `json:"storage_controller,omitempty"`
	BusInfo                  string                  `json:"bus_info,omitempty"`
	WWN                      string                  `json:"wwn,omitempty"`
	Protocol                 string                  `json:"protocol,omitempty"`
	SmartStatus              string                  `json:"smart_status,omitempty"`
	SmartErrors              []string                `json:"smart_errors,omitempty"`
	SmartAttributes          []*DriveSmartAttributes `json:"smart_attributes,omitempty"`
	CapacityBytes            int64                   `json:"capacity_bytes,omitempty"`
	BlockSizeBytes           int64                   `json:"block_size_bytes,omitempty"`
	CapableSpeedGbps         int64                   `json:"capable_speed_gbps,omitempty"`
	NegotiatedSpeedGbps      int64                   `json:"negotiated_speed_gbps,omitempty"`
	StorageControllerDriveID int                     `json:"storage_controller_drive_id,omitempty"`
}

Drive component

type DriveSmartAttributes

type DriveSmartAttributes struct {
	// Name is the SMART attribute name.
	Name string `json:"name,omitempty"`

	// Each vendor uses their own algorithm to convert this "Raw" value to a "Normalized" value
	// in the range from 1 to 254. Please keep in mind that smartctl only reports the different Attribute types,
	// values, and thresholds as read from the device. It does not carry out the conversion between "Raw" and
	// "Normalized" values: this is done by the disk's firmware.
	NormalizedValue int `json:"normalized_value,omitempty"`

	// Each Attribute also has a "Worst" value shown under the heading "WORST".
	// This is the smallest (closest to failure) value that the disk has recorded at any time during its lifetime when SMART was enabled.
	// [Note however that some vendors firmware may actually increase the "Worst" value for some "rate-type" Attributes.]
	Worst int `json:"worst,omitempty"`

	// Each Attribute also has a Threshold value (whose range is 0 to 255) which is printed under the heading "THRESH".
	// If the Normalized value is less than or equal to the Threshold value, then the Attribute is said to have failed.
	// If the Attribute is a pre-failure Attribute, then disk failure is imminent.
	Threshold int `json:"threshold,omitempty"`

	// If the Normalized value is less than or equal to the Threshold value, then the Attribute is said to have failed.
	// If the Attribute is a pre-failure Attribute, then disk failure is imminent.
	PreFailure bool `json:"prefailure,omitempty"`

	// Some SMART attribute values are updated only during off-line data collection activities;
	// the rest are updated during normal operation of the device or during both normal operation and off-line testing.
	UpdatedOnline bool `json:"updated_online,omitempty"`
}

DriveSmartAttributes holds SMART attributes for a drive.

comments on fields taken from https://www.smartmontools.org/browser/trunk/smartmontools/smartctl.8.in

type Enclosure

type Enclosure struct {
	Common

	ID          string    `json:"id,omitempty"`
	ChassisType string    `json:"chassis_type,omitempty"`
	Firmware    *Firmware `json:"firmware,omitempty"`
}

Enclosure component

type Firmware

type Firmware struct {
	Installed  string            `json:"installed,omitempty"`
	Available  string            `json:"available,omitempty"`
	SoftwareID string            `json:"software_id,omitempty"`
	Previous   []*Firmware       `json:"previous,omitempty"`
	Metadata   map[string]string `json:"metadata,omitempty"`
}

Firmware struct holds firmware attributes of a device component

func NewFirmwareObj

func NewFirmwareObj() *Firmware

NewFirmwareObj returns a *Firmware object

type GPU

type GPU struct {
	Common
}

GPU component

type Mainboard

type Mainboard struct {
	Common

	PhysicalID string `json:"physid,omitempty"`
}

Mainboard component

type Memory

type Memory struct {
	Common

	ID           string `json:"id,omitempty"`
	Slot         string `json:"slot,omitempty"`
	Type         string `json:"type,omitempty"`
	SizeBytes    int64  `json:"size_bytes,omitempty"`
	FormFactor   string `json:"form_factor,omitempty"`
	PartNumber   string `json:"part_number,omitempty"`
	ClockSpeedHz int64  `json:"clock_speed_hz,omitempty"`
}

Memory component

type NIC

type NIC struct {
	Common

	ID       string     `json:"id,omitempty"`
	NICPorts []*NICPort `json:"nic_ports,omitempty"`
}

NIC component

type NICPort

type NICPort struct {
	Common

	ID                   string `json:"id"`
	SpeedBits            int64  `json:"speed_bits,omitempty"`
	PhysicalID           string `json:"physid,omitempty"`
	BusInfo              string `json:"bus_info,omitempty"`
	ActiveLinkTechnology string `json:"active_link_technology,omitempty"`
	MacAddress           string `json:"macaddress,omitempty"`
	LinkStatus           string `json:"link_status,omitempty"`
	AutoNeg              bool   `json:"auto_neg,omitempty"`
	MTUSize              int    `json:"mtu_size,omitempty"`
}

NICPort component

type PSU

type PSU struct {
	Common

	ID                 string `json:"id,omitempty"`
	PowerCapacityWatts int64  `json:"power_capacity_watts,omitempty"`
}

PSU component

type Status

type Status struct {
	Health         string
	State          string
	PostCode       int    `json:"post_code,omitempty"`
	PostCodeStatus string `json:"post_code_status,omitempty"`
}

Status is the health status of a component

type StorageController

type StorageController struct {
	Common

	ID                           string `json:"id,omitempty"`
	SupportedControllerProtocols string `json:"supported_controller_protocol,omitempty"` // PCIe
	SupportedDeviceProtocols     string `json:"supported_device_protocol,omitempty"`     // Attached device protocols - SAS, SATA
	SupportedRAIDTypes           string `json:"supported_raid_types,omitempty"`
	PhysicalID                   string `json:"physid,omitempty"`
	BusInfo                      string `json:"bus_info,omitempty"`
	SpeedGbps                    int64  `json:"speed_gbps,omitempty"`
	MaxPhysicalDisks             int    `json:"max_physical_disks,omitempty"`
	MaxVirtualDisks              int    `json:"max_virtual_disks,omitempty"`
}

StorageController component

type TPM

type TPM struct {
	Common

	InterfaceType string `json:"interface_type,omitempty"`
}

TPM component

type VirtualDisk

type VirtualDisk struct {
	ID             string   `json:"id,omitempty"`
	Name           string   `json:"name,omitempty"`
	RaidType       string   `json:"raid_type,omitempty"`
	SizeBytes      int64    `json:"size_bytes,omitempty"`
	Status         string   `json:"status,omitempty"`
	PhysicalDrives []*Drive `json:"physical_drives,omitempty"`
}

VirtualDisk models RAID arrays

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL