From eb1c5f759a2704331359338ab08ba8218e9cdaae Mon Sep 17 00:00:00 2001 From: Bryce Date: Thu, 5 Mar 2026 09:42:37 -0800 Subject: [PATCH] server stats cpu -> add threads and physical cpu property --- .../schemas/infrastructure/stats/ServerStatsCpu.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/components/schemas/infrastructure/stats/ServerStatsCpu.yml b/components/schemas/infrastructure/stats/ServerStatsCpu.yml index a04f193d..2d607cba 100644 --- a/components/schemas/infrastructure/stats/ServerStatsCpu.yml +++ b/components/schemas/infrastructure/stats/ServerStatsCpu.yml @@ -2,9 +2,15 @@ title: ServerStatsCpu type: object description: Statistics about the CPU resources on a server. properties: + physical_cpus: + type: integer + description: The number of physical CPU's for a given server. cores: type: integer - description: The number of CPU's or vCPU's for a given server. + description: The number vCPU's for a given server. + threads: + type: integer + description: The number of CPU threads for a given server. processors: description: An array of processor information objects. type: array