File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -234,13 +234,16 @@ Irrelevant to the availability of Intel RDT on the host operating system.
234
234
* ** ` enabled ` ** (bool, OPTIONAL) represents whether the runtime supports Intel RDT.
235
235
* ** ` schemata ` ** (bool, OPTIONAL) represents whether the
236
236
(` schemata ` field of ` linux.intelRdt ` in ` config.json ` )[ config-linux.md#intelrdt] is supported.
237
+ * ** ` monitoring ` ** (bool, OPTIONAL) represents whether the
238
+ (` enableMonitoring ` field of ` linux.intelRdt ` in ` config.json ` )[ config-linux.md#intelrdt] is supported.
237
239
238
240
### Example
239
241
240
242
``` json
241
243
"intelRdt" : {
242
244
"enabled" : true ,
243
- "schemata" : true
245
+ "schemata" : true ,
246
+ "monitoring" : true
244
247
}
245
248
```
246
249
Original file line number Diff line number Diff line change @@ -372,7 +372,8 @@ Here is a full example for reference.
372
372
},
373
373
"intelRdt" : {
374
374
"enabled" : true ,
375
- "schemata" : true
375
+ "schemata" : true ,
376
+ "monitoring" : true
376
377
}
377
378
},
378
379
"annotations" : {
Original file line number Diff line number Diff line change @@ -134,6 +134,10 @@ type IntelRdt struct {
134
134
// Schemata is true if the "linux.intelRdt.enableMonitoring" field of the
135
135
// spec is implemented.
136
136
Schemata * bool `json:"schemata,omitempty"`
137
+ // Monitoring is true if the "linux.intelRdt.enableMonitoring" field of the
138
+ // spec is implemented.
139
+ // Nil value means "unknown", not "false".
140
+ Monitoring * bool `json:"monitoring,omitempty"`
137
141
}
138
142
139
143
// MemoryPolicy represents the "memoryPolicy" field.
You can’t perform that action at this time.
0 commit comments