1 virtio balloon memory statistics
2 ================================
4 The virtio balloon driver supports guest memory statistics reporting. These
5 statistics are available to QEMU users as QOM (QEMU Object Model) device
6 properties via a polling mechanism.
8 Before querying the available stats, clients first have to enable polling.
9 This is done by writing a time interval value (in seconds) to the
10 guest-stats-polling-interval property. This value can be:
12 > 0 enables polling in the specified interval. If polling is already
13 enabled, the polling time interval is changed to the new value
15 0 disables polling. Previous polled statistics are still valid and
18 Once polling is enabled, the virtio-balloon device in QEMU will start
19 polling the guest's balloon driver for new stats in the specified time
22 To retrieve those stats, clients have to query the guest-stats property,
23 which will return a dictionary containing:
25 o A key named 'stats', containing all available stats. If the guest
26 doesn't support a particular stat, or if it couldn't be retrieved,
27 its value will be -1. Currently, the following stats are supported:
36 o A key named last-update, which contains the last stats update
37 timestamp in seconds. Since this timestamp is generated by the host,
38 a buggy guest can't influence its value
40 It's also important to note the following:
42 - Previously polled statistics remain available even if the polling is
45 - As noted above, if a guest doesn't support a particular stat its value
46 will always be -1. However, it's also possible that a guest temporarily
47 couldn't update one or even all stats. If this happens, just wait for
50 - Polling can be enabled even if the guest doesn't have stats support
51 or the balloon driver wasn't loaded in the guest. If this is the case
52 and stats are queried, an error will be returned
54 - The polling timer is only re-armed when the guest responds to the
55 statistics request. This means that if a (buggy) guest doesn't ever
56 respond to the request the timer will never be re-armed, which has
57 the same effect as disabling polling
59 Here are a few examples. QEMU is started with '-balloon virtio', which
60 generates '/machine/peripheral-anon/device[1]' as the QOM path for the
63 Enable polling with 2 seconds interval:
65 { "execute": "qom-set",
66 "arguments": { "path": "/machine/peripheral-anon/device[1]",
67 "property": "guest-stats-polling-interval", "value": 2 } }
71 Change polling to 10 seconds:
73 { "execute": "qom-set",
74 "arguments": { "path": "/machine/peripheral-anon/device[1]",
75 "property": "guest-stats-polling-interval", "value": 10 } }
81 { "execute": "qom-get",
82 "arguments": { "path": "/machine/peripheral-anon/device[1]",
83 "property": "guest-stats" } }
88 "stat-free-memory": 844943360,
89 "stat-minor-faults": 219028,
90 "stat-major-faults": 235,
91 "stat-total-memory": 1044406272,
94 "last-update": 1358529861
100 { "execute": "qom-set",
101 "arguments": { "path": "/machine/peripheral-anon/device[1]",
102 "property": "stats-polling-interval", "value": 0 } }