We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dc4c34 commit 3fee809Copy full SHA for 3fee809
1 file changed
thorlog/v3/hostinfo.go
@@ -178,6 +178,17 @@ type PlatformInfoAIX struct {
178
Version string `json:"version" textlog:"version"`
179
// Processor type, e.g. "POWER9"
180
Proc string `json:"proc" textlog:"proc"`
181
+ // OS build version
182
+ BuildVersion string
183
+
184
+ // Whether this system is running in an LPAR partition
185
+ LparPartition bool
186
187
+ // LPAR configuration regarding memory / CPUs
188
+ MinMemory Memory
189
+ MaxMemory Memory
190
+ MinVCPUs int
191
+ MaxVCPUs int
192
}
193
194
func (PlatformInfoAIX) platform() {}
0 commit comments