The VM Watcher package provides two monitoring functions that report a VM’s running state and its hardware resource allocation. Both functions are accessible from the main CLI menu. In the current release, the values displayed are hardcoded placeholders — live hypervisor integration is planned for a future version.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/stratosphere-ve/core/llms.txt
Use this file to discover all available pages before exploring further.
CLI options
| Option | Action |
|---|---|
| 5 | View VM resource allocation |
| 6 | View VM running status |
| 7 | View both resource allocation and status |
VMResourceAllocation (option 5)
This function prints the RAM and CPU core allocation for the VM. Current output:vmwatcher.go:
- RAM: 4 GB
- CPU cores: 2
VMRunningStatus (option 6)
This function prints whether the VM is currently running. Current output:false.
Option 7 — view both
Selecting option 7 calls bothVMResourceAllocation and VMRunningStatus in sequence, displaying both outputs together.
All values shown by the VM Watcher are currently hardcoded. The watcher does not read from a running hypervisor or inspect any live VM state. Future versions will accept a VM ID and query real system metrics.