1{
2    "$id": "http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_4.json",
3    "$ref": "#/definitions/ProcessorMetrics",
4    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
5    "copyright": "Copyright 2014-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
6    "definitions": {
7        "Actions": {
8            "additionalProperties": false,
9            "description": "The available actions for this resource.",
10            "longDescription": "This type shall contain the available actions for this resource.",
11            "patternProperties": {
12                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
13                    "description": "This property shall specify a valid odata or Redfish property.",
14                    "type": [
15                        "array",
16                        "boolean",
17                        "integer",
18                        "number",
19                        "null",
20                        "object",
21                        "string"
22                    ]
23                }
24            },
25            "properties": {
26                "#ProcessorMetrics.ClearCurrentPeriod": {
27                    "$ref": "#/definitions/ClearCurrentPeriod"
28                },
29                "Oem": {
30                    "$ref": "#/definitions/OemActions",
31                    "description": "The available OEM-specific actions for this resource.",
32                    "longDescription": "This property shall contain the available OEM-specific actions for this resource."
33                }
34            },
35            "type": "object"
36        },
37        "CStateResidency": {
38            "additionalProperties": false,
39            "description": "The C-state residency of the processor.",
40            "longDescription": "This type shall contain properties that describe the C-state residency of the processor or core.",
41            "patternProperties": {
42                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
43                    "description": "This property shall specify a valid odata or Redfish property.",
44                    "type": [
45                        "array",
46                        "boolean",
47                        "integer",
48                        "number",
49                        "null",
50                        "object",
51                        "string"
52                    ]
53                }
54            },
55            "properties": {
56                "Level": {
57                    "description": "The C-state level, such as C0, C1, or C2.",
58                    "longDescription": "This property shall contain the C-state level, such as C0, C1, or C2.  When this resource is subordinate to the `ProcessorSummary` object, this property is not applicable.",
59                    "readonly": true,
60                    "type": [
61                        "string",
62                        "null"
63                    ]
64                },
65                "ResidencyPercent": {
66                    "description": "The percentage of time that the processor or core has spent in this particular level of C-state.",
67                    "longDescription": "This property shall contain the percentage of time, `0` to `100`, that the processor or core has spent in this particular level of C-state.  When this resource is subordinate to the `ProcessorSummary` object, this property is not applicable.",
68                    "minimum": 0,
69                    "readonly": true,
70                    "type": [
71                        "number",
72                        "null"
73                    ],
74                    "units": "%"
75                }
76            },
77            "type": "object"
78        },
79        "CacheMetrics": {
80            "additionalProperties": false,
81            "description": "The processor core metrics.",
82            "longDescription": "This type shall contain properties that describe cache metrics of a processor or core.",
83            "patternProperties": {
84                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
85                    "description": "This property shall specify a valid odata or Redfish property.",
86                    "type": [
87                        "array",
88                        "boolean",
89                        "integer",
90                        "number",
91                        "null",
92                        "object",
93                        "string"
94                    ]
95                }
96            },
97            "properties": {
98                "CacheMiss": {
99                    "description": "The number of cache line misses in millions.",
100                    "longDescription": "This property shall contain the number of cache line misses of the processor or core in millions.",
101                    "readonly": true,
102                    "type": [
103                        "number",
104                        "null"
105                    ]
106                },
107                "CacheMissesPerInstruction": {
108                    "description": "The number of cache misses per instruction.",
109                    "longDescription": "This property shall contain the number of cache misses per instruction of the processor or core.",
110                    "readonly": true,
111                    "type": [
112                        "number",
113                        "null"
114                    ]
115                },
116                "HitRatio": {
117                    "description": "The cache line hit ratio.",
118                    "longDescription": "This property shall contain the cache hit ratio of the processor or core.",
119                    "readonly": true,
120                    "type": [
121                        "number",
122                        "null"
123                    ]
124                },
125                "Level": {
126                    "description": "The cache level.",
127                    "longDescription": "This property shall contain the level of the cache in the processor or core.",
128                    "readonly": true,
129                    "type": [
130                        "string",
131                        "null"
132                    ]
133                },
134                "OccupancyBytes": {
135                    "description": "The total cache level occupancy in bytes.",
136                    "longDescription": "This property shall contain the total cache occupancy of the processor or core in bytes.",
137                    "readonly": true,
138                    "type": [
139                        "integer",
140                        "null"
141                    ],
142                    "units": "By"
143                },
144                "OccupancyPercent": {
145                    "description": "The total cache occupancy percentage.",
146                    "longDescription": "This property shall contain the total cache occupancy percentage, `0` to `100`, of the processor or core.",
147                    "minimum": 0,
148                    "readonly": true,
149                    "type": [
150                        "number",
151                        "null"
152                    ],
153                    "units": "%"
154                }
155            },
156            "type": "object"
157        },
158        "CacheMetricsTotal": {
159            "additionalProperties": false,
160            "description": "The total cache metrics for a processor.",
161            "longDescription": "This property shall contain properties that describe the metrics for all of the cache memory for a processor.",
162            "patternProperties": {
163                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
164                    "description": "This property shall specify a valid odata or Redfish property.",
165                    "type": [
166                        "array",
167                        "boolean",
168                        "integer",
169                        "number",
170                        "null",
171                        "object",
172                        "string"
173                    ]
174                }
175            },
176            "properties": {
177                "CurrentPeriod": {
178                    "$ref": "#/definitions/CurrentPeriod",
179                    "description": "The cache metrics since the last reset or `ClearCurrentPeriod` action for this processor.",
180                    "longDescription": "This property shall contain properties that describe the metrics for the current period of cache memory for this processor.",
181                    "versionAdded": "v1_2_0"
182                },
183                "LifeTime": {
184                    "$ref": "#/definitions/LifeTime",
185                    "description": "The cache metrics for the lifetime of this processor.",
186                    "longDescription": "This property shall contain properties that describe the metrics for the lifetime of the cache memory for this processor.",
187                    "versionAdded": "v1_2_0"
188                }
189            },
190            "type": "object"
191        },
192        "ClearCurrentPeriod": {
193            "additionalProperties": false,
194            "description": "This action sets the `CurrentPeriod` property's values to 0.",
195            "longDescription": "This action shall set the `CurrentPeriod` property's values to 0.",
196            "parameters": {},
197            "patternProperties": {
198                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
199                    "description": "This property shall specify a valid odata or Redfish property.",
200                    "type": [
201                        "array",
202                        "boolean",
203                        "integer",
204                        "number",
205                        "null",
206                        "object",
207                        "string"
208                    ]
209                }
210            },
211            "properties": {
212                "target": {
213                    "description": "Link to invoke action",
214                    "format": "uri-reference",
215                    "type": "string"
216                },
217                "title": {
218                    "description": "Friendly action name",
219                    "type": "string"
220                }
221            },
222            "type": "object",
223            "versionAdded": "v1_2_0"
224        },
225        "CoreMetrics": {
226            "additionalProperties": false,
227            "description": "The processor core metrics.",
228            "longDescription": "This type shall contain properties that describe the cores of a processor.",
229            "patternProperties": {
230                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
231                    "description": "This property shall specify a valid odata or Redfish property.",
232                    "type": [
233                        "array",
234                        "boolean",
235                        "integer",
236                        "number",
237                        "null",
238                        "object",
239                        "string"
240                    ]
241                }
242            },
243            "properties": {
244                "CStateResidency": {
245                    "description": "The C-state residency of this core in the processor.",
246                    "items": {
247                        "$ref": "#/definitions/CStateResidency"
248                    },
249                    "longDescription": "This property shall contain properties that describe the C-state residency of this core in the processor.",
250                    "type": "array"
251                },
252                "CoreCache": {
253                    "description": "The cache metrics of this core in the processor.",
254                    "items": {
255                        "$ref": "#/definitions/CacheMetrics"
256                    },
257                    "longDescription": "This property shall contain properties that describe the cache metrics of this core in the processor.",
258                    "type": "array"
259                },
260                "CoreId": {
261                    "description": "The processor core identifier.",
262                    "longDescription": "This property shall contain the identifier of the core within the processor.",
263                    "readonly": true,
264                    "type": [
265                        "string",
266                        "null"
267                    ]
268                },
269                "CorrectableCoreErrorCount": {
270                    "description": "The number of correctable core errors.",
271                    "longDescription": "This property shall contain the number of correctable core errors, such as TLB or cache errors.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `CorrectableCoreErrorCount` over all processors.",
272                    "readonly": true,
273                    "type": [
274                        "integer",
275                        "null"
276                    ],
277                    "versionAdded": "v1_5_0"
278                },
279                "CorrectableOtherErrorCount": {
280                    "description": "The number of correctable errors of all other components.",
281                    "longDescription": "This property shall contain the number of correctable errors of all other components.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `CorrectableOtherErrorCount` over all processors.",
282                    "readonly": true,
283                    "type": [
284                        "integer",
285                        "null"
286                    ],
287                    "versionAdded": "v1_5_0"
288                },
289                "IOStallCount": {
290                    "description": "The number of stalled cycles due to I/O operations.",
291                    "longDescription": "This property shall contain the number of stalled cycles due to I/O operations of this core in the processor.",
292                    "readonly": true,
293                    "type": [
294                        "number",
295                        "null"
296                    ]
297                },
298                "InstructionsPerCycle": {
299                    "description": "The number of instructions per clock cycle of this core.",
300                    "longDescription": "This property shall contain the number of instructions per clock cycle of this core in the processor.",
301                    "readonly": true,
302                    "type": [
303                        "number",
304                        "null"
305                    ]
306                },
307                "MemoryStallCount": {
308                    "description": "The number of stalled cycles due to memory operations.",
309                    "longDescription": "This property shall contain the number of stalled cycles due to memory operations of this core in the processor.",
310                    "readonly": true,
311                    "type": [
312                        "number",
313                        "null"
314                    ]
315                },
316                "UncorrectableCoreErrorCount": {
317                    "description": "The number of uncorrectable core errors.",
318                    "longDescription": "This property shall contain the number of uncorrectable core errors, such as TLB or cache errors.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `UncorrectableCoreErrorCount` over all processors.",
319                    "readonly": true,
320                    "type": [
321                        "integer",
322                        "null"
323                    ],
324                    "versionAdded": "v1_5_0"
325                },
326                "UncorrectableOtherErrorCount": {
327                    "description": "The number of uncorrectable errors of all other components.",
328                    "longDescription": "This property shall contain the number of uncorrectable errors of all other components.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `UncorrectableOtherErrorCount` over all processors.",
329                    "readonly": true,
330                    "type": [
331                        "integer",
332                        "null"
333                    ],
334                    "versionAdded": "v1_5_0"
335                },
336                "UnhaltedCycles": {
337                    "description": "The unhalted cycles count of this core.",
338                    "longDescription": "This property shall contain the number of unhalted cycles of this core in the processor.",
339                    "readonly": true,
340                    "type": [
341                        "number",
342                        "null"
343                    ]
344                }
345            },
346            "type": "object"
347        },
348        "CurrentPeriod": {
349            "additionalProperties": false,
350            "description": "The cache memory metrics since the last system reset or `ClearCurrentPeriod` action for a processor.",
351            "longDescription": "This type shall describe the cache memory metrics since last system reset or `ClearCurrentPeriod` action for a processor.",
352            "patternProperties": {
353                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
354                    "description": "This property shall specify a valid odata or Redfish property.",
355                    "type": [
356                        "array",
357                        "boolean",
358                        "integer",
359                        "number",
360                        "null",
361                        "object",
362                        "string"
363                    ]
364                }
365            },
366            "properties": {
367                "CorrectableECCErrorCount": {
368                    "description": "The number of correctable errors of cache memory since reset or `ClearCurrentPeriod` action for this processor.",
369                    "longDescription": "This property shall contain the number of correctable errors of cache memory since reset or `ClearCurrentPeriod` action for this processor.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `CorrectableECCErrorCount` over all processors.",
370                    "readonly": true,
371                    "type": [
372                        "integer",
373                        "null"
374                    ],
375                    "versionAdded": "v1_2_0"
376                },
377                "UncorrectableECCErrorCount": {
378                    "description": "The number of uncorrectable errors of cache memory since reset or `ClearCurrentPeriod` action for this processor.",
379                    "longDescription": "This property shall contain the number of uncorrectable errors of cache memory since reset or `ClearCurrentPeriod` action for this processor.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `UncorrectableECCErrorCount` over all processors.",
380                    "readonly": true,
381                    "type": [
382                        "integer",
383                        "null"
384                    ],
385                    "versionAdded": "v1_2_0"
386                }
387            },
388            "type": "object"
389        },
390        "LifeTime": {
391            "additionalProperties": false,
392            "description": "The cache memory metrics for the lifetime for a processor.",
393            "longDescription": "This type shall describe the cache memory metrics since manufacturing for a processor.",
394            "patternProperties": {
395                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
396                    "description": "This property shall specify a valid odata or Redfish property.",
397                    "type": [
398                        "array",
399                        "boolean",
400                        "integer",
401                        "number",
402                        "null",
403                        "object",
404                        "string"
405                    ]
406                }
407            },
408            "properties": {
409                "CorrectableECCErrorCount": {
410                    "description": "The number of correctable errors for the lifetime of the cache memory.",
411                    "longDescription": "This property shall contain the number of correctable errors for the lifetime of the cache memory.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `CorrectableECCErrorCount` over all processors.",
412                    "readonly": true,
413                    "type": [
414                        "integer",
415                        "null"
416                    ],
417                    "versionAdded": "v1_2_0"
418                },
419                "UncorrectableECCErrorCount": {
420                    "description": "The number of uncorrectable errors for the lifetime of the cache memory.",
421                    "longDescription": "This property shall contain the number of uncorrectable errors for the lifetime of the cache memory.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `UncorrectableECCErrorCount` over all processors.",
422                    "readonly": true,
423                    "type": [
424                        "integer",
425                        "null"
426                    ],
427                    "versionAdded": "v1_2_0"
428                }
429            },
430            "type": "object"
431        },
432        "OemActions": {
433            "additionalProperties": true,
434            "description": "The available OEM-specific actions for this resource.",
435            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
436            "patternProperties": {
437                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
438                    "description": "This property shall specify a valid odata or Redfish property.",
439                    "type": [
440                        "array",
441                        "boolean",
442                        "integer",
443                        "number",
444                        "null",
445                        "object",
446                        "string"
447                    ]
448                }
449            },
450            "properties": {},
451            "type": "object"
452        },
453        "ProcessorMetrics": {
454            "additionalProperties": false,
455            "description": "The `ProcessorMetrics` schema contains usage and health statistics for a processor.",
456            "longDescription": "This resource contains the processor metrics for a single processor in a Redfish implementation.",
457            "patternProperties": {
458                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
459                    "description": "This property shall specify a valid odata or Redfish property.",
460                    "type": [
461                        "array",
462                        "boolean",
463                        "integer",
464                        "number",
465                        "null",
466                        "object",
467                        "string"
468                    ]
469                }
470            },
471            "properties": {
472                "@odata.context": {
473                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
474                },
475                "@odata.etag": {
476                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
477                },
478                "@odata.id": {
479                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
480                },
481                "@odata.type": {
482                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
483                },
484                "Actions": {
485                    "$ref": "#/definitions/Actions",
486                    "description": "The available actions for this resource.",
487                    "longDescription": "This property shall contain the available actions for this resource."
488                },
489                "AverageFrequencyMHz": {
490                    "deprecated": "This property has been deprecated in favor of the `OperatingSpeedMHz` property.",
491                    "description": "The average frequency of the processor.",
492                    "longDescription": "This property shall contain average frequency in MHz, across all enabled cores in the processor.  When this resource is subordinate to the `ProcessorSummary` object, this property is not applicable.",
493                    "readonly": true,
494                    "type": [
495                        "number",
496                        "null"
497                    ],
498                    "units": "MHz",
499                    "versionDeprecated": "v1_1_0"
500                },
501                "BandwidthPercent": {
502                    "description": "The bandwidth usage of this processor as a percentage.",
503                    "longDescription": "This property shall contain the bandwidth usage of the processor as a percentage, typically `0` to `100`.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the CPU utilization over all processors as a percentage.",
504                    "minimum": 0,
505                    "readonly": true,
506                    "type": [
507                        "number",
508                        "null"
509                    ],
510                    "units": "%"
511                },
512                "Cache": {
513                    "description": "The processor cache metrics.",
514                    "items": {
515                        "$ref": "#/definitions/CacheMetrics"
516                    },
517                    "longDescription": "This property shall contain properties that describe this processor's cache.  When this resource is subordinate to the `ProcessorSummary` object, this property is not applicable.",
518                    "type": "array"
519                },
520                "CacheMetricsTotal": {
521                    "$ref": "#/definitions/CacheMetricsTotal",
522                    "description": "The total cache metrics for this processor.",
523                    "longDescription": "This property shall contain properties that describe the metrics for all of the cache memory of this processor.",
524                    "versionAdded": "v1_2_0"
525                },
526                "ConsumedPowerWatt": {
527                    "deprecated": "This property has been deprecated in favor of the properties in `EnvironmentMetrics`.",
528                    "description": "The power, in watt units, that the processor has consumed.",
529                    "longDescription": "This property shall contain the power, in watt units, that the processor has consumed.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of power, in watt units, that all processors have consumed.",
530                    "readonly": true,
531                    "type": [
532                        "number",
533                        "null"
534                    ],
535                    "units": "W",
536                    "versionDeprecated": "v1_2_0"
537                },
538                "CoreMetrics": {
539                    "description": "The processor core metrics.",
540                    "items": {
541                        "$ref": "#/definitions/CoreMetrics"
542                    },
543                    "longDescription": "This property shall contain properties that describe the cores of this processor.  When this resource is subordinate to the `ProcessorSummary` object, this property is not applicable.",
544                    "type": "array"
545                },
546                "CoreVoltage": {
547                    "anyOf": [
548                        {
549                            "$ref": "http://redfish.dmtf.org/schemas/v1/Sensor.json#/definitions/SensorVoltageExcerpt"
550                        },
551                        {
552                            "type": "null"
553                        }
554                    ],
555                    "description": "The core voltage (V) of this processor.",
556                    "excerptCopy": "SensorVoltageExcerpt",
557                    "longDescription": "The value of this property shall contain the core voltage, in volt units, of this processor.  The core voltage of the processor may change more frequently than the manager is able to monitor.  The value of the `DataSourceUri` property, if present, shall reference a resource of type `Sensor` with the `ReadingType` property containing the value `Voltage`.",
558                    "versionAdded": "v1_3_0"
559                },
560                "CorrectableCoreErrorCount": {
561                    "description": "The number of correctable core errors.",
562                    "longDescription": "This property shall contain the number of correctable core errors, such as TLB or cache errors.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `CorrectableCoreErrorCount` over all processors.",
563                    "readonly": true,
564                    "type": [
565                        "integer",
566                        "null"
567                    ],
568                    "versionAdded": "v1_5_0"
569                },
570                "CorrectableOtherErrorCount": {
571                    "description": "The number of correctable errors of all other components.",
572                    "longDescription": "This property shall contain the number of correctable errors of all other components.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `CorrectableOtherErrorCount` over all processors.",
573                    "readonly": true,
574                    "type": [
575                        "integer",
576                        "null"
577                    ],
578                    "versionAdded": "v1_5_0"
579                },
580                "Description": {
581                    "anyOf": [
582                        {
583                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
584                        },
585                        {
586                            "type": "null"
587                        }
588                    ],
589                    "readonly": true
590                },
591                "FrequencyRatio": {
592                    "description": "The frequency relative to the nominal processor frequency ratio.",
593                    "longDescription": "This property shall contain the frequency relative to the nominal processor frequency ratio of this processor.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the average FrequencyRatio over all processors.",
594                    "readonly": true,
595                    "type": [
596                        "number",
597                        "null"
598                    ]
599                },
600                "Id": {
601                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
602                    "readonly": true
603                },
604                "KernelPercent": {
605                    "description": "The percentage of time spent in kernel mode.",
606                    "longDescription": "This property shall contain total percentage of time, `0` to `100`, the processor has spent in kernel mode.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the average KernelPercent over all processors.",
607                    "minimum": 0,
608                    "readonly": true,
609                    "type": [
610                        "number",
611                        "null"
612                    ],
613                    "units": "%"
614                },
615                "LocalMemoryBandwidthBytes": {
616                    "description": "The local memory bandwidth usage in bytes.",
617                    "longDescription": "This property shall contain the local memory bandwidth usage of this processor in bytes.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of LocalMemoryBandwidthBytes over all processors.",
618                    "readonly": true,
619                    "type": [
620                        "integer",
621                        "null"
622                    ],
623                    "units": "By"
624                },
625                "Name": {
626                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
627                    "readonly": true
628                },
629                "Oem": {
630                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
631                    "description": "The OEM extension property.",
632                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
633                },
634                "OperatingSpeedMHz": {
635                    "description": "Operating speed of the processor in MHz.",
636                    "longDescription": "This property shall contain the operating speed of the processor in MHz.  The operating speed of the processor may change more frequently than the manager is able to monitor.",
637                    "readonly": true,
638                    "type": [
639                        "integer",
640                        "null"
641                    ],
642                    "units": "MHz",
643                    "versionAdded": "v1_1_0"
644                },
645                "PCIeErrors": {
646                    "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeDevice.json#/definitions/PCIeErrors",
647                    "description": "The PCIe errors associated with this processor.",
648                    "longDescription": "This property shall contain the PCIe errors associated with this processor.",
649                    "versionAdded": "v1_4_0"
650                },
651                "PowerLimitThrottleDuration": {
652                    "description": "The total duration of throttling caused by a power limit of the processor since reset.",
653                    "longDescription": "This property shall contain the total duration of throttling caused by a power limit of the processor since reset.",
654                    "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$",
655                    "readonly": true,
656                    "type": [
657                        "string",
658                        "null"
659                    ],
660                    "versionAdded": "v1_6_0"
661                },
662                "RemoteMemoryBandwidthBytes": {
663                    "description": "The remote memory bandwidth usage in bytes.",
664                    "longDescription": "This property shall contain the remote memory bandwidth usage of this processor in bytes.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of RemoteMemoryBandwidthBytes over all processors.",
665                    "readonly": true,
666                    "type": [
667                        "integer",
668                        "null"
669                    ],
670                    "units": "By"
671                },
672                "TemperatureCelsius": {
673                    "deprecated": "This property has been deprecated in favor of the properties in `EnvironmentMetrics`.",
674                    "description": "The temperature of the processor.",
675                    "longDescription": "This property shall contain the temperature, in degree Celsius units, of the processor.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the average temperature, in Celsius, over all processors.",
676                    "readonly": true,
677                    "type": [
678                        "number",
679                        "null"
680                    ],
681                    "units": "Cel",
682                    "versionDeprecated": "v1_2_0"
683                },
684                "ThermalLimitThrottleDuration": {
685                    "description": "The total duration of throttling caused by a thermal limit of the processor since reset.",
686                    "longDescription": "This property shall contain the total duration of throttling caused by a thermal limit of the processor since reset.",
687                    "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$",
688                    "readonly": true,
689                    "type": [
690                        "string",
691                        "null"
692                    ],
693                    "versionAdded": "v1_6_0"
694                },
695                "ThrottlingCelsius": {
696                    "description": "The CPU margin to throttle (temperature offset in degree Celsius units).",
697                    "longDescription": "This property shall contain the CPU margin to throttle based on an offset between the maximum temperature in which the processor can operate, and the processor's current temperature.  When this resource is subordinate to the `ProcessorSummary` object, this property is not applicable.",
698                    "readonly": true,
699                    "type": [
700                        "number",
701                        "null"
702                    ],
703                    "units": "Cel"
704                },
705                "UncorrectableCoreErrorCount": {
706                    "description": "The number of uncorrectable core errors.",
707                    "longDescription": "This property shall contain the number of uncorrectable core errors, such as TLB or cache errors.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `UncorrectableCoreErrorCount` over all processors.",
708                    "readonly": true,
709                    "type": [
710                        "integer",
711                        "null"
712                    ],
713                    "versionAdded": "v1_5_0"
714                },
715                "UncorrectableOtherErrorCount": {
716                    "description": "The number of uncorrectable errors of all other components.",
717                    "longDescription": "This property shall contain the number of uncorrectable errors of all other components.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the sum of `UncorrectableOtherErrorCount` over all processors.",
718                    "readonly": true,
719                    "type": [
720                        "integer",
721                        "null"
722                    ],
723                    "versionAdded": "v1_5_0"
724                },
725                "UserPercent": {
726                    "description": "The percentage of time spent in user mode.",
727                    "longDescription": "This property shall contain total percentage of time, `0` to `100`, the processor has spent in user mode.  When this resource is subordinate to the `ProcessorSummary` object, this property shall be the average UserPercent over all processors.",
728                    "minimum": 0,
729                    "readonly": true,
730                    "type": [
731                        "number",
732                        "null"
733                    ],
734                    "units": "%"
735                }
736            },
737            "required": [
738                "@odata.id",
739                "@odata.type",
740                "Id",
741                "Name"
742            ],
743            "type": "object"
744        }
745    },
746    "language": "en",
747    "owningEntity": "DMTF",
748    "release": "2022.2",
749    "title": "#ProcessorMetrics.v1_6_4.ProcessorMetrics"
750}