mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-21 20:15:17 +00:00
qemu: bulk stats: implement interface group
This patch implements the VIR_DOMAIN_STATS_INTERFACE group of statistics. Signed-off-by: Francesco Romani <fromani@redhat.com> Signed-off-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
parent
74c066df4d
commit
c8e523722e
@ -2516,6 +2516,7 @@ typedef enum {
|
||||
VIR_DOMAIN_STATS_CPU_TOTAL = (1 << 1), /* return domain CPU info */
|
||||
VIR_DOMAIN_STATS_BALLOON = (1 << 2), /* return domain balloon info */
|
||||
VIR_DOMAIN_STATS_VCPU = (1 << 3), /* return domain virtual CPU info */
|
||||
VIR_DOMAIN_STATS_INTERFACE = (1 << 4), /* return domain interfaces info */
|
||||
} virDomainStatsTypes;
|
||||
|
||||
typedef enum {
|
||||
|
@ -21622,6 +21622,20 @@ virConnectGetDomainCapabilities(virConnectPtr conn,
|
||||
* "vcpu.<num>.time" - virtual cpu time spent by virtual CPU <num>
|
||||
* as unsigned long long.
|
||||
*
|
||||
* VIR_DOMAIN_STATS_INTERFACE: Return network interface statistics.
|
||||
* The typed parameter keys are in this format:
|
||||
* "net.count" - number of network interfaces on this domain
|
||||
* as unsigned int.
|
||||
* "net.<num>.name" - name of the interface <num> as string.
|
||||
* "net.<num>.rx.bytes" - bytes received as unsigned long long.
|
||||
* "net.<num>.rx.pkts" - packets received as unsigned long long.
|
||||
* "net.<num>.rx.errs" - receive errors as unsigned long long.
|
||||
* "net.<num>.rx.drop" - receive packets dropped as unsigned long long.
|
||||
* "net.<num>.tx.bytes" - bytes transmitted as unsigned long long.
|
||||
* "net.<num>.tx.pkts" - packets transmitted as unsigned long long.
|
||||
* "net.<num>.tx.errs" - transmission errors as unsigned long long.
|
||||
* "net.<num>.tx.drop" - transmit packets dropped as unsigned long long.
|
||||
*
|
||||
* Using 0 for @stats returns all stats groups supported by the given
|
||||
* hypervisor.
|
||||
*
|
||||
|
@ -17560,6 +17560,100 @@ qemuDomainGetStatsVcpu(virQEMUDriverPtr driver ATTRIBUTE_UNUSED,
|
||||
return ret;
|
||||
}
|
||||
|
||||
#define QEMU_ADD_COUNT_PARAM(record, maxparams, type, count) \
|
||||
do { \
|
||||
char param_name[VIR_TYPED_PARAM_FIELD_LENGTH]; \
|
||||
snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH, "%s.count", type); \
|
||||
if (virTypedParamsAddUInt(&(record)->params, \
|
||||
&(record)->nparams, \
|
||||
maxparams, \
|
||||
param_name, \
|
||||
count) < 0) \
|
||||
return -1; \
|
||||
} while (0)
|
||||
|
||||
#define QEMU_ADD_NAME_PARAM(record, maxparams, type, num, name) \
|
||||
do { \
|
||||
char param_name[VIR_TYPED_PARAM_FIELD_LENGTH]; \
|
||||
snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH, \
|
||||
"%s.%zu.name", type, num); \
|
||||
if (virTypedParamsAddString(&(record)->params, \
|
||||
&(record)->nparams, \
|
||||
maxparams, \
|
||||
param_name, \
|
||||
name) < 0) \
|
||||
return -1; \
|
||||
} while (0)
|
||||
|
||||
#define QEMU_ADD_NET_PARAM(record, maxparams, num, name, value) \
|
||||
do { \
|
||||
char param_name[VIR_TYPED_PARAM_FIELD_LENGTH]; \
|
||||
snprintf(param_name, VIR_TYPED_PARAM_FIELD_LENGTH, \
|
||||
"net.%zu.%s", num, name); \
|
||||
if (value >= 0 && virTypedParamsAddULLong(&(record)->params, \
|
||||
&(record)->nparams, \
|
||||
maxparams, \
|
||||
param_name, \
|
||||
value) < 0) \
|
||||
return -1; \
|
||||
} while (0)
|
||||
|
||||
static int
|
||||
qemuDomainGetStatsInterface(virQEMUDriverPtr driver ATTRIBUTE_UNUSED,
|
||||
virDomainObjPtr dom,
|
||||
virDomainStatsRecordPtr record,
|
||||
int *maxparams,
|
||||
unsigned int privflags ATTRIBUTE_UNUSED)
|
||||
{
|
||||
size_t i;
|
||||
struct _virDomainInterfaceStats tmp;
|
||||
|
||||
if (!virDomainObjIsActive(dom))
|
||||
return 0;
|
||||
|
||||
QEMU_ADD_COUNT_PARAM(record, maxparams, "net", dom->def->nnets);
|
||||
|
||||
/* Check the path is one of the domain's network interfaces. */
|
||||
for (i = 0; i < dom->def->nnets; i++) {
|
||||
if (!dom->def->nets[i]->ifname)
|
||||
continue;
|
||||
|
||||
memset(&tmp, 0, sizeof(tmp));
|
||||
|
||||
QEMU_ADD_NAME_PARAM(record, maxparams,
|
||||
"net", i, dom->def->nets[i]->ifname);
|
||||
|
||||
if (virNetInterfaceStats(dom->def->nets[i]->ifname, &tmp) < 0) {
|
||||
virResetLastError();
|
||||
continue;
|
||||
}
|
||||
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"rx.bytes", tmp.rx_bytes);
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"rx.pkts", tmp.rx_packets);
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"rx.errs", tmp.rx_errs);
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"rx.drop", tmp.rx_drop);
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"tx.bytes", tmp.tx_bytes);
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"tx.pkts", tmp.tx_packets);
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"tx.errs", tmp.tx_errs);
|
||||
QEMU_ADD_NET_PARAM(record, maxparams, i,
|
||||
"tx.drop", tmp.tx_drop);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#undef QEMU_ADD_NET_PARAM
|
||||
|
||||
#undef QEMU_ADD_NAME_PARAM
|
||||
|
||||
#undef QEMU_ADD_COUNT_PARAM
|
||||
|
||||
typedef int
|
||||
(*qemuDomainGetStatsFunc)(virQEMUDriverPtr driver,
|
||||
@ -17579,6 +17673,7 @@ static struct qemuDomainGetStatsWorker qemuDomainGetStatsWorkers[] = {
|
||||
{ qemuDomainGetStatsCpu, VIR_DOMAIN_STATS_CPU_TOTAL, false },
|
||||
{ qemuDomainGetStatsBalloon, VIR_DOMAIN_STATS_BALLOON, true },
|
||||
{ qemuDomainGetStatsVcpu, VIR_DOMAIN_STATS_VCPU, false },
|
||||
{ qemuDomainGetStatsInterface, VIR_DOMAIN_STATS_INTERFACE, false },
|
||||
{ NULL, 0, false }
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user