File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -178,6 +178,16 @@ type PlatformInfoAIX struct {
178178 Version string `json:"version" textlog:"version"`
179179 // Processor type, e.g. "POWER9"
180180 Proc string `json:"proc" textlog:"proc"`
181+ // Number of virtual CPUs available to the system. This is not necessarily the same as the number of physical cores, due to SMT and partitioning.
182+ VCPUs int `json:"vcpus" textlog:"vcpus"`
183+ // Build timestamp of the OS. This specifies the precise OS version that is running on the system.
184+ OSBuildTime time.Time `json:"os_build_time" textlog:"os_build_time"`
185+ // Technology levels are major updates of an OS version
186+ TechnologyLevel int `json:"technology_level" textlog:"technology_level"`
187+ // Service packs provide bug fixes within a technology level
188+ ServicePack int `json:"service_pack" textlog:"service_pack"`
189+ // Build sequence identifier is a unique identifier for the exact OS build
190+ BuildSequenceID int `json:"build_sequence_id" textlog:"build_sequence_id"`
181191}
182192
183193func (PlatformInfoAIX ) platform () {}
You can’t perform that action at this time.
0 commit comments