feat(xo-server/rest-api): export hosts' SMT status
Fixes https://xcp-ng.org/forum/post/71374
This commit is contained in:
parent
eedaca0195
commit
7fc5d62ca9
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
- Disable search engine indexing via a `robots.txt`
|
- Disable search engine indexing via a `robots.txt`
|
||||||
- [Stats] Support format used by XAPI 23.31
|
- [Stats] Support format used by XAPI 23.31
|
||||||
|
- [REST API] Export host [SMT](https://en.wikipedia.org/wiki/Simultaneous_multithreading) status at `/hosts/:id/smt` [Forum#71374](https://xcp-ng.org/forum/post/71374)
|
||||||
|
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
|
|
||||||
|
@ -253,6 +253,10 @@ export default class RestApi {
|
|||||||
const host = req.xapiObject
|
const host = req.xapiObject
|
||||||
res.json(await host.$xapi.listMissingPatches(host))
|
res.json(await host.$xapi.listMissingPatches(host))
|
||||||
},
|
},
|
||||||
|
|
||||||
|
async smt({ xapiObject }, res) {
|
||||||
|
res.json({ enabled: await xapiObject.$xapi.isHyperThreadingEnabled(xapiObject.$id) })
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
collections.pools.routes = {
|
collections.pools.routes = {
|
||||||
|
Loading…
Reference in New Issue
Block a user