Displaying 2 results from an estimated 2 matches for "nodetomigr".
2017 Jan 10
3
Regarding Migration Statistics
...te VM between two physical
hosts *(QEMU/KVM) , *say some *n *number of times.
*1)* I am using right now* virDomainPtr virDomainMigrate (.......) *and to
calculate the total migration time I am using something like this:
*clock_gettime(CLOCK_MONOTONIC_RAW,&begin); *
*migrate*(domainToMigrate,nodeToMigrate);
*clock_gettime(CLOCK_MONOTONIC_RAW,&end);*
*Total Migration Time = end.tv_sec-begin.tv_sec*
Is this correct way to calculate total migration time. And is there some
way to calculate the downtime (not how to set it)?
*2) *I am interested in identifying in particular other statistics o...
2017 Jan 10
0
Re: Regarding Migration Statistics
...ts *(QEMU/KVM) , *say some *n *number of times.
>
> *1)* I am using right now* virDomainPtr virDomainMigrate (.......) *and to
> calculate the total migration time I am using something like this:
>
> *clock_gettime(CLOCK_MONOTONIC_RAW,&begin); *
> *migrate*(domainToMigrate,nodeToMigrate);
>
> *clock_gettime(CLOCK_MONOTONIC_RAW,&end);*
>
> *Total Migration Time = end.tv_sec-begin.tv_sec*
>
> Is this correct way to calculate total migration time. And is there some
> way to calculate the downtime (not how to set it)?
Well, just call virDomainGetJobStat...