bosun.org@v0.0.0-20210513094433-e25bc3e69a1f/metadata/shared.go (about)

     1  package metadata // import "bosun.org/metadata"
     2  
     3  type HWDiskMeta struct {
     4  	Name            string
     5  	Media           string
     6  	Capacity        string
     7  	VendorId        string
     8  	ProductId       string
     9  	Serial          string
    10  	Part            string
    11  	NegotatiedSpeed string
    12  	CapableSpeed    string
    13  	SectorSize      string
    14  }
    15  
    16  type HWControllerMeta struct {
    17  	Name            string
    18  	SlotId          string
    19  	State           string
    20  	FirmwareVersion string
    21  	DriverVersion   string
    22  }
    23  
    24  type HWPowerSupplyMeta struct {
    25  	RatedInputWattage  string
    26  	RatedOutputWattage string
    27  }