[Users] [rhevm-api] Assign IP address to VM using Java SDK
Tejesh M
tejeshmk at gmail.com
Fri Feb 14 04:30:08 EST 2014
Hi,
There is no option in "Initial Run" to set root password & other stuff.
Have attached screenshots & debug output. Is there any configuration needs
to be done? or any cloud-init service needs to be started? How do integrate
cloud-init with RHEV-M?
Thanks & Regards,
Tejesh
On Thu, Feb 13, 2014 at 9:50 PM, Juan Hernandez <jhernand at redhat.com> wrote:
> On 02/13/2014 05:15 PM, Tejesh M wrote:
> > Actually, i want to automate the vm provisioning through java sdk. and
> > this urgent requirement. Is it possible to automate setting hostname,
> > root password n nic info by any means in 3.3? Also in windows
> > administration password as similar to linux.. kindly help as im new to
> > this..
> >
>
> Yes, setting the hostname, root password and NIC info is possible in
> 3.3, using cloud-init and the Java SDK. I tested this with 3.3 and it
> works correctly.
>
> As you are having problems I suggest to try it manually, from the GUI,
> if it doesn't work then please report the details, so that we can
> diagnose and fix it.
>
> Once it works manually from the GUI, we can see why it doesn't work with
> the SDK, but we will need the output generated when running in debug mode.
>
> > On 13 Feb 2014 20:32, "Juan Hernandez" <jhernand at redhat.com
> > <mailto:jhernand at redhat.com>> wrote:
> >
> > On 02/13/2014 03:59 PM, Shahar Havivi wrote:
> > > On 13.02.14 20:17, Tejesh M wrote:
> > >> 1. The Version is RHEV-M 3.3 & Cloud-init is
> > >> cloud-init-0.6.3-0.12.bzr532.el6.noarch
> > >>
> > >> 2. In Webadmin, i don't find any option to set Cloud-init data's.
> > I checked
> > >> under New VM->Initial Run.. Am i looking at the right place?
> > >> How to enable cloud-init support in engine?
> > > You will not found it since you are working in 3.3 and this
> > feature presented
> > > in 3.4.
> > > In 3.3 you can try to set the Cloud-Init via the Run-Once button.
> > >
> >
> > In 3.3 you need first to create the VM. Once it is created select it,
> > click the "Run Once" button, then click on the plus sign next to
> > "Initial Run", check the "Cloud-Init" box, and populate the fields
> > you want.
> >
> > >>
> > >> I have installed cloud-init package in RHEV-M & also in Template.
> > >>
> > >> Please suggest.
> > >>
> > >>
> > >> On Thu, Feb 13, 2014 at 7:31 PM, Juan Hernandez
> > <jhernand at redhat.com <mailto:jhernand at redhat.com>> wrote:
> > >>
> > >>> On 02/13/2014 02:39 PM, Tejesh M wrote:
> > >>>> Hi All,
> > >>>>
> > >>>> Thanks alot.
> > >>>>
> > >>>> I have created one VM with minimal installation & installed
> > cloud-init
> > >>>> package. And, converted that VM into Template. Then executed
> > the code
> > >>>> given in
> > >>>>
> > http://lists.ovirt.org/pipermail/users/2014-February/021302.html ,
> but
> > >>>> no luck, the code is not setting root password.
> > >>>>
> > >>>
> > >>> What version of the engine are you running? I may not have the
> > required
> > >>> cloud-init support.
> > >>>
> > >>> Try to run the application in debug mode:
> > >>>
> > >>> Api api = new Api(
> > >>> "https://whatever/api",
> > >>> "user at domain",
> > >>> "password",
> > >>> null,
> > >>> null,
> > >>> null,
> > >>> null,
> > >>> true,
> > >>> null,
> > >>> true // <- This is to enable debug mode
> > >>> );
> > >>>
> > >>> It will send to the log the actual XML documents sent to the
> > server. We
> > >>> can use it to see if the request is generated correctly.
> > >>>
> > >>> It may also happen that cloud-init support isn't working
> > correctly. To
> > >>> verify this try to use the cloud-init support manually from
> > webadmin.
> > >>> Does it work from there?
> > >>>
> > >>>> Also, there is no option to set *Hostname *for the VM.
> > >>>>
> > >>>
> > >>> To set the host name you need to add something like this:
> > >>>
> > >>> Host hostData = new Host();
> > >>> hostData.setAddress("the.host.name <http://the.host.name>");
> > >>> cloudData.setHost(hostData);
> > >>>
> > >>>>
> > >>>>
> > >>>> _*Code:*_
> > >>>>
> > >>>> /*********************Begin Customize
> > VM*********************/
> > >>>> // Generate the random password, using whatever
> > mechanism you
> > >>>> // prefer:
> > >>>> String password = "cJql3P9XLQG4drCYVG/6Q/";
> > >>>>
> > >>>> // You need to know the name of the template, the
> > cluster and
> > >>>> // the VM you are going to create:
> > >>>> String templateName = "rhel2_temp";
> > >>>> String clusterName = "testCluster";
> > >>>> String vmName = "myvm";
> > >>>>
> > >>>> // Prepare the data to create the VM from the
> template:
> > >>>> org.ovirt.engine.sdk.entities.Template templateData =
> new
> > >>>> Template();
> > >>>> templateData.setName(templateName);
> > >>>> org.ovirt.engine.sdk.entities.Cluster clusterData =
> new
> > >>> Cluster();
> > >>>> clusterData.setName(clusterName);
> > >>>> org.ovirt.engine.sdk.entities.VM vmDataForCreate =
> > new VM();
> > >>>> vmDataForCreate.setName(vmName);
> > >>>> vmDataForCreate.setCluster(clusterData);
> > >>>> vmDataForCreate.setTemplate(templateData);
> > >>>>
> > >>>> // Send the request to create the VM to the server:
> > >>>> api.getVMs().add(vmDataForCreate);
> > >>>> String state;
> > >>>> // White till the VM is down (it will be locked for a
> > while):
> > >>>> for (;;) {
> > >>>> state =
> > api.getVMs().get(vmName).getStatus().getState();
> > >>>> if ("down".equals(state)) {
> > >>>> break;
> > >>>> }
> > >>>> Thread.sleep(1000);
> > >>>> }
> > >>>> System.out.println("System Status:"+state);
> > >>>> // Populate parameters for the action to start the VM
> > with
> > >>>> cloud-init:
> > >>>> org.ovirt.engine.sdk.entities.User userData = new
> User();
> > >>>> userData.setUserName("root");
> > >>>> userData.setPassword(password);
> > >>>> Users usersData = new Users();
> > >>>> usersData.getUsers().add(userData);
> > >>>> CloudInit cloudData = new CloudInit();
> > >>>> cloudData.setUsers(usersData);
> > >>>>
> > >>>> Initialization initData = new Initialization();
> > >>>> initData.setCloudInit(cloudData);
> > >>>> VM vmDataForStart = new VM();
> > >>>> vmDataForStart.setInitialization(initData);
> > >>>> Action actionData = new Action();
> > >>>> actionData.setVm(vmDataForStart);
> > >>>>
> > >>>> // Send the request to start the VM to the server:
> > >>>> api.getVMs().get(vmName).start(actionData);
> > >>>> System.out.println("After :
> > >>>> "+api.getVMs().get(vmName).getStatus());
> > >>>> /*********************End Customize
> > VM*********************/
> > >>>>
> > >>>>
> > >>>>
> > >>>> Thanks & Regards,
> > >>>> Tejesh
> > >>>>
> > >>>>
> > >>>>
> > >>>> On Thu, Feb 13, 2014 at 2:26 PM, Juan Hernandez
> > <jhernand at redhat.com <mailto:jhernand at redhat.com>
> > >>>> <mailto:jhernand at redhat.com <mailto:jhernand at redhat.com>>>
> wrote:
> > >>>>
> > >>>> On 02/13/2014 09:29 AM, Shahar Havivi wrote:
> > >>>> > On 13.02.14 00:59, Oved Ourfalli wrote:
> > >>>> >>
> > >>>> >>
> > >>>> >> ----- Original Message -----
> > >>>> >>> From: "Shahar Havivi" <shaharh at redhat.com
> > <mailto:shaharh at redhat.com>
> > >>>> <mailto:shaharh at redhat.com <mailto:shaharh at redhat.com>>>
> > >>>> >>> To: users at ovirt.org <mailto:users at ovirt.org>
> > <mailto:users at ovirt.org <mailto:users at ovirt.org>>
> > >>>> >>> Cc: "Juan Antonio Hernandez Fernandez"
> > <jhernand at redhat.com <mailto:jhernand at redhat.com>
> > >>>> <mailto:jhernand at redhat.com <mailto:jhernand at redhat.com>>>,
> > rhevm-api at lists.fedorahosted.org
> > <mailto:rhevm-api at lists.fedorahosted.org>
> > >>>> <mailto:rhevm-api at lists.fedorahosted.org
> > <mailto:rhevm-api at lists.fedorahosted.org>>, "Tejesh M"
> > >>>> >>> <tejeshmk at gmail.com <mailto:tejeshmk at gmail.com>
> > <mailto:tejeshmk at gmail.com <mailto:tejeshmk at gmail.com>>>
> > >>>> >>> Sent: Wednesday, February 12, 2014 11:22:20 PM
> > >>>> >>> Subject: Re: [Users] [rhevm-api] Assign IP address to
> > VM using
> > >>>> Java SDK
> > >>>> >>>
> > >>>> >>> On 12.02.14 22:55, Itamar Heim wrote:
> > >>>> >>>> On 02/12/2014 03:14 PM, Tejesh M wrote:
> > >>>> >>>>> Hi,
> > >>>> >>>>>
> > >>>> >>>>> Can anyone share sample code on how to assign IP
> > address to
> > >>>> guest os &
> > >>>> >>>>> changing the root password while creating VM from
> > Template
> > >>>> using Java SDK?
> > >>>> >>> Hi Tejesh,
> > >>>> >>> You should start here:
> > >>>> >>> http://www.ovirt.org/Api
> > >>>> >>> This link will explain the basics for fetching VM via
> > the API
> > >>>> using HTTP via
> > >>>> >>> curl command line.
> > >>>> >>>
> > >>>> >>> Every VM have a collection of networks and manipulating
> > them can
> > >>>> be seeing
> > >>>> >>> here with the REST API examples:
> > >>>> >>>
> > http://www.ovirt.org/Features/Design/Network/SetupNetworks#REST
> > >>>> >>> the section for you is "Attaching a network to a NIC"
> > under the
> > >>> REST
> > >>>> >>> category.
> > >>>> >>>
> > >>>> >>> Shahar Havivi.
> > >>>> >>>
> > >>>> >>
> > >>>> >> Actually it looks like Tejesh is referring to the Guests
> > and not
> > >>>> the hosts, so you can use cloud-init in order to do that.
> > >>>> >> See more in
> > "http://www.ovirt.org/Features/Cloud-Init_Integration
> > >>> ".
> > >>>> >> If the VM's operating system is defined as some kind of
> > Linux,
> > >>>> then you'll be able to set some stuff using cloud-init,
> > either via
> > >>>> the Run-Once Dialog, or in the regular VM properties dialog.
> > >>>> >>
> > >>>> >> Omer - we have REST API support for cloud-init, right?
> > >>>> > Yes, more on that can be found here:
> > >>>> > http://www.ovirt.org/Features/vm-init-persistent
> > >>>> >>
> > >>>>
> > >>>> Tajesh, you have a detailed example of how to set the
> > password in the
> > >>>> following message:
> > >>>>
> > >>>>
> > http://lists.ovirt.org/pipermail/users/2014-February/021302.html
> > >>>>
> > >>>> Setting the IP address is similar.
> > >>>>
> > >>>
> > >>> --
> > >>> Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3,
> > planta
> > >>> 3ºD, 28016 Madrid, Spain
> > >>> Inscrita en el Reg. Mercantil de Madrid - C.I.F. B82657941 - Red
> > Hat S.L.
> > >>>
> > >>
> > >>
> > >>
> > >> --
> > >> Thanks & Regards
> > >> Tejesh
> > > _______________________________________________
> > > Users mailing list
> > > Users at ovirt.org <mailto:Users at ovirt.org>
> > > http://lists.ovirt.org/mailman/listinfo/users
> > >
> >
> >
> > --
> > Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
> > 3ºD, 28016 Madrid, Spain
> > Inscrita en el Reg. Mercantil de Madrid - C.I.F. B82657941 - Red Hat
> > S.L.
> >
> >
> >
> > _______________________________________________
> > Users mailing list
> > Users at ovirt.org
> > http://lists.ovirt.org/mailman/listinfo/users
> >
>
>
> --
> Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
> 3ºD, 28016 Madrid, Spain
> Inscrita en el Reg. Mercantil de Madrid - C.I.F. B82657941 - Red Hat S.L.
>
--
Thanks & Regards
Tejesh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ovirt.org/pipermail/users/attachments/20140214/60a9520b/attachment-0001.html>
-------------- next part --------------
2014-02-14 14:43:39,258 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2014-02-14 14:43:39,259 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: POST /api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start HTTP/1.1
2014-02-14 14:43:39,259 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: POST /api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start HTTP/1.1
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "POST /api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start HTTP/1.1[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "POST /api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start HTTP/1.1[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Content-type: application/xml[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Content-type: application/xml[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Filter: false[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Filter: false[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Prefer: persistent-auth[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Prefer: persistent-auth[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Content-Length: 511[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Content-Length: 511[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Host: rhevm:443[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Host: rhevm:443[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "User-Agent: Apache-HttpClient/4.3.2 (java 1.5)[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "User-Agent: Apache-HttpClient/4.3.2 (java 1.5)[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Cookie2: $Version=1[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "Cookie2: $Version=1[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> POST /api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start HTTP/1.1
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> POST /api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start HTTP/1.1
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Content-type: application/xml
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Content-type: application/xml
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Filter: false
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Filter: false
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Prefer: persistent-auth
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Prefer: persistent-auth
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Content-Length: 511
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Content-Length: 511
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Host: rhevm:443
2014-02-14 14:43:39,259 DEBUG [org.apache.http.headers] >> Host: rhevm:443
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> User-Agent: Apache-HttpClient/4.3.2 (java 1.5)
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> User-Agent: Apache-HttpClient/4.3.2 (java 1.5)
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> Cookie2: $Version=1
2014-02-14 14:43:39,260 DEBUG [org.apache.http.headers] >> Cookie2: $Version=1
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> "<?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> "<?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> "<action>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> "<action>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <vm>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <vm>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <initialization>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <initialization>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <cloud_init>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <cloud_init>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <host>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <host>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <address>myvm</address>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <address>myvm</address>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </host>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </host>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <users>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <users>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <user>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <user>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <user_name>root</user_name>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <user_name>root</user_name>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <password>cJql3P9XLQG4drCYVG/6Q/</password>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " <password>cJql3P9XLQG4drCYVG/6Q/</password>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </user>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </user>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </users>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </users>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </cloud_init>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </cloud_init>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </initialization>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </initialization>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </vm>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> " </vm>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> "</action>[\n]"
2014-02-14 14:43:39,260 DEBUG [org.apache.http.wire] >> "</action>[\n]"
2014-02-14 14:43:39,692 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 OK[\r][\n]"
2014-02-14 14:43:39,692 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 OK[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Date: Fri, 14 Feb 2014 14:44:09 GMT[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Date: Fri, 14 Feb 2014 14:44:09 GMT[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Content-Type: application/xml[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Content-Type: application/xml[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Content-Length: 2171[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Content-Length: 2171[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Vary: Accept-Encoding[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Vary: Accept-Encoding[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Connection: close[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "Connection: close[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,694 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200 OK
2014-02-14 14:43:39,694 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200 OK
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << HTTP/1.1 200 OK
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << HTTP/1.1 200 OK
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Date: Fri, 14 Feb 2014 14:44:09 GMT
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Date: Fri, 14 Feb 2014 14:44:09 GMT
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Content-Type: application/xml
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Content-Type: application/xml
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Content-Length: 2171
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Content-Length: 2171
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Vary: Accept-Encoding
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Vary: Accept-Encoding
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Connection: close
2014-02-14 14:43:39,694 DEBUG [org.apache.http.headers] << Connection: close
2014-02-14 14:43:39,695 DEBUG [org.apache.http.wire] << "<?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
2014-02-14 14:43:39,695 DEBUG [org.apache.http.wire] << "<?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
2014-02-14 14:43:39,695 DEBUG [org.apache.http.wire] << "<action>[\n]"
2014-02-14 14:43:39,695 DEBUG [org.apache.http.wire] << "<action>[\n]"
2014-02-14 14:43:39,695 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162" id="f4955c27-beaa-434f-973c-1eb2725e4162">[\n]"
2014-02-14 14:43:39,695 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162" id="f4955c27-beaa-434f-973c-1eb2725e4162">[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/move" rel="move"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/move" rel="move"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/export" rel="export"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/export" rel="export"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start" rel="start"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start" rel="start"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,696 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <state>complete</state>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " <state>complete</state>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << "</action>[\n]"
2014-02-14 14:43:39,697 DEBUG [org.apache.http.wire] << "</action>[\n]"
2014-02-14 14:43:39,698 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:14150<->210.210.125.17:443 closed
2014-02-14 14:43:39,698 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:14150<->210.210.125.17:443 closed
2014-02-14 14:43:39,698 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 12][route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 20]
2014-02-14 14:43:39,698 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 12][route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 20]
2014-02-14 14:43:39,703 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 20]
2014-02-14 14:43:39,703 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection request: [route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 20]
2014-02-14 14:43:39,703 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 13][route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 1 of 5; total allocated: 1 of 20]
2014-02-14 14:43:39,703 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection leased: [id: 13][route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 1 of 5; total allocated: 1 of 20]
2014-02-14 14:43:39,703 DEBUG [org.apache.http.impl.conn.DefaultClientConnectionOperator] Connecting to rhevm:443
2014-02-14 14:43:39,703 DEBUG [org.apache.http.impl.conn.DefaultClientConnectionOperator] Connecting to rhevm:443
2014-02-14 14:43:39,712 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2014-02-14 14:43:39,712 DEBUG [org.apache.http.client.protocol.RequestAddCookies] CookieSpec selected: best-match
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestAddCookies] Cookie [version: 0][name: JSESSIONID][value: UlKTUGnWl8VIj3gSnaDSkqpO][domain: rhevm][path: /api][expiry: null] match [(secure)rhevm:443/api/vms]
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestAddCookies] Cookie [version: 0][name: JSESSIONID][value: UlKTUGnWl8VIj3gSnaDSkqpO][domain: rhevm][path: /api][expiry: null] match [(secure)rhevm:443/api/vms]
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestAuthCache] Auth cache not set in the context
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestAuthCache] Auth cache not set in the context
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: UNCHALLENGED
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestTargetAuthentication] Target auth state: UNCHALLENGED
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2014-02-14 14:43:39,713 DEBUG [org.apache.http.client.protocol.RequestProxyAuthentication] Proxy auth state: UNCHALLENGED
2014-02-14 14:43:39,713 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2014-02-14 14:43:39,713 DEBUG [org.apache.http.impl.client.DefaultHttpClient] Attempt 1 to execute request
2014-02-14 14:43:39,713 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /api/vms HTTP/1.1
2014-02-14 14:43:39,713 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Sending request: GET /api/vms HTTP/1.1
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "GET /api/vms HTTP/1.1[\r][\n]"
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "GET /api/vms HTTP/1.1[\r][\n]"
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "Content-type: application/xml[\r][\n]"
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "Content-type: application/xml[\r][\n]"
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "Filter: false[\r][\n]"
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "Filter: false[\r][\n]"
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "Prefer: persistent-auth[\r][\n]"
2014-02-14 14:43:39,713 DEBUG [org.apache.http.wire] >> "Prefer: persistent-auth[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Host: rhevm:443[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Host: rhevm:443[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Connection: Keep-Alive[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "User-Agent: Apache-HttpClient/4.3.2 (java 1.5)[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "User-Agent: Apache-HttpClient/4.3.2 (java 1.5)[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Cookie2: $Version=1[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "Cookie2: $Version=1[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.wire] >> "[\r][\n]"
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> GET /api/vms HTTP/1.1
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> GET /api/vms HTTP/1.1
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Content-type: application/xml
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Content-type: application/xml
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Filter: false
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Filter: false
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Prefer: persistent-auth
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Prefer: persistent-auth
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Host: rhevm:443
2014-02-14 14:43:39,714 DEBUG [org.apache.http.headers] >> Host: rhevm:443
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> Connection: Keep-Alive
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> User-Agent: Apache-HttpClient/4.3.2 (java 1.5)
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> User-Agent: Apache-HttpClient/4.3.2 (java 1.5)
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> Cookie: JSESSIONID=UlKTUGnWl8VIj3gSnaDSkqpO
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> Cookie2: $Version=1
2014-02-14 14:43:39,715 DEBUG [org.apache.http.headers] >> Cookie2: $Version=1
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 OK[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "HTTP/1.1 200 OK[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Date: Fri, 14 Feb 2014 14:44:10 GMT[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Date: Fri, 14 Feb 2014 14:44:10 GMT[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Pragma: No-cache[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Pragma: No-cache[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Cache-Control: no-cache[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Cache-Control: no-cache[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Expires: Thu, 01 Jan 1970 05:30:00 IST[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Expires: Thu, 01 Jan 1970 05:30:00 IST[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Content-Type: application/xml[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Content-Type: application/xml[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Vary: Accept-Encoding[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Vary: Accept-Encoding[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Connection: close[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Connection: close[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Transfer-Encoding: chunked[\r][\n]"
2014-02-14 14:43:39,811 DEBUG [org.apache.http.wire] << "Transfer-Encoding: chunked[\r][\n]"
2014-02-14 14:43:39,812 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,812 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,812 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200 OK
2014-02-14 14:43:39,812 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Receiving response: HTTP/1.1 200 OK
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << HTTP/1.1 200 OK
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << HTTP/1.1 200 OK
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Date: Fri, 14 Feb 2014 14:44:10 GMT
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Date: Fri, 14 Feb 2014 14:44:10 GMT
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Pragma: No-cache
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Pragma: No-cache
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Cache-Control: no-cache
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Cache-Control: no-cache
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Expires: Thu, 01 Jan 1970 05:30:00 IST
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Expires: Thu, 01 Jan 1970 05:30:00 IST
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Content-Type: application/xml
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Content-Type: application/xml
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Vary: Accept-Encoding
2014-02-14 14:43:39,812 DEBUG [org.apache.http.headers] << Vary: Accept-Encoding
2014-02-14 14:43:39,813 DEBUG [org.apache.http.headers] << Connection: close
2014-02-14 14:43:39,813 DEBUG [org.apache.http.headers] << Connection: close
2014-02-14 14:43:39,813 DEBUG [org.apache.http.headers] << Transfer-Encoding: chunked
2014-02-14 14:43:39,813 DEBUG [org.apache.http.headers] << Transfer-Encoding: chunked
2014-02-14 14:43:39,814 DEBUG [org.apache.http.wire] << "1ff8[\r][\n]"
2014-02-14 14:43:39,814 DEBUG [org.apache.http.wire] << "1ff8[\r][\n]"
2014-02-14 14:43:39,814 DEBUG [org.apache.http.wire] << "<?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
2014-02-14 14:43:39,814 DEBUG [org.apache.http.wire] << "<?xml version="1.0" encoding="UTF-8" standalone="yes"?>[\n]"
2014-02-14 14:43:39,814 DEBUG [org.apache.http.wire] << "<vms>[\n]"
2014-02-14 14:43:39,814 DEBUG [org.apache.http.wire] << "<vms>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162" id="f4955c27-beaa-434f-973c-1eb2725e4162">[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162" id="f4955c27-beaa-434f-973c-1eb2725e4162">[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/move" rel="move"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/move" rel="move"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/export" rel="export"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/export" rel="export"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start" rel="start"/>[\n]"
2014-02-14 14:43:39,815 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/start" rel="start"/>[\n]"
2014-02-14 14:43:39,821 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,821 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,821 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,821 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,823 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,823 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,823 DEBUG [org.apache.http.wire] << " <name>myvm</name>[\n]"
2014-02-14 14:43:39,823 DEBUG [org.apache.http.wire] << " <name>myvm</name>[\n]"
2014-02-14 14:43:39,823 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,823 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <link href="/api/vms/f4955c27-beaa-434f-973c-1eb2725e4162/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <type>server</type>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <type>server</type>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <state>wait_for_launch</state>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " <state>wait_for_launch</state>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,824 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <memory>2147483648</memory>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <memory>2147483648</memory>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <cpu>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <cpu>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <topology sockets="1" cores="1"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <topology sockets="1" cores="1"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </cpu>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </cpu>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <cpu_shares>0</cpu_shares>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <cpu_shares>0</cpu_shares>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <os type="other">[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <os type="other">[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <boot dev="hd"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <boot dev="hd"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <boot dev="cdrom"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <boot dev="cdrom"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </os>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </os>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <high_availability>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <high_availability>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <priority>1</priority>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <priority>1</priority>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </high_availability>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </high_availability>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <display>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <display>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <type>spice</type>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <type>spice</type>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <address>0</address>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <address>0</address>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <monitors>1</monitors>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <monitors>1</monitors>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <single_qxl_pci>false</single_qxl_pci>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <single_qxl_pci>false</single_qxl_pci>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <allow_override>true</allow_override>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <allow_override>true</allow_override>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <smartcard_enabled>false</smartcard_enabled>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <smartcard_enabled>false</smartcard_enabled>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </display>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " </display>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <host href="/api/hosts/982c230a-415b-4ce7-ab9d-fe8d945ec211" id="982c230a-415b-4ce7-ab9d-fe8d945ec211"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <host href="/api/hosts/982c230a-415b-4ce7-ab9d-fe8d945ec211" id="982c230a-415b-4ce7-ab9d-fe8d945ec211"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <cluster href="/api/clusters/0b4fb862-5a2e-46c3-979e-fa0778493ba4" id="0b4fb862-5a2e-46c3-979e-fa0778493ba4"/>[\n]"
2014-02-14 14:43:39,825 DEBUG [org.apache.http.wire] << " <cluster href="/api/clusters/0b4fb862-5a2e-46c3-979e-fa0778493ba4" id="0b4fb862-5a2e-46c3-979e-fa0778493ba4"/>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <template href="/api/templates/9b790195-3e8e-498d-9ebe-94138d8383c9" id="9b790195-3e8e-498d-9ebe-94138d8383c9"/>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <template href="/api/templates/9b790195-3e8e-498d-9ebe-94138d8383c9" id="9b790195-3e8e-498d-9ebe-94138d8383c9"/>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <start_time>2014-02-14T20:14:10.002+05:30</start_time>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <start_time>2014-02-14T20:14:10.002+05:30</start_time>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <creation_time>2014-02-14T20:13:59.769+05:30</creation_time>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <creation_time>2014-02-14T20:13:59.769+05:30</creation_time>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <origin>ovirt</origin>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <origin>ovirt</origin>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <stateless>false</stateless>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <stateless>false</stateless>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <delete_protected>false</delete_protected>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <delete_protected>false</delete_protected>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <placement_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <placement_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <affinity>migratable</affinity>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <affinity>migratable</affinity>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </placement_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </placement_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <memory_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <memory_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <guaranteed>2147483648</guaranteed>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <guaranteed>2147483648</guaranteed>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </memory_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </memory_policy>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <usb>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <usb>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </usb>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </usb>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,826 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd" id="bf963661-b206-4f81-82f7-36a24336b5cd">[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd" id="bf963661-b206-4f81-82f7-36a24336b5cd">[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/move" rel="move"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/move" rel="move"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/export" rel="export"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/export" rel="export"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/start" rel="start"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/start" rel="start"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <name>PadhuVM</name>[\n]"
2014-02-14 14:43:39,827 DEBUG [org.apache.http.wire] << " <name>PadhuVM</name>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <link href="/api/vms/bf963661-b206-4f81-82f7-36a24336b5cd/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <type>server</type>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <type>server</type>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <state>up</state>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <state>up</state>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <memory>1073741824</memory>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <memory>1073741824</memory>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <cpu>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <cpu>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <topology sockets="1" cores="1"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <topology sockets="1" cores="1"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </cpu>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </cpu>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <cpu_shares>0</cpu_shares>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <cpu_shares>0</cpu_shares>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <os type="other">[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <os type="other">[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <boot dev="hd"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <boot dev="hd"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <boot dev="cdrom"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <boot dev="cdrom"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </os>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </os>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <high_availability>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <high_availability>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <priority>1</priority>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <priority>1</priority>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </high_availability>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </high_availability>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <display>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <display>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <type>spice</type>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <type>spice</type>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <address>192.168.1.2</address>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <address>192.168.1.2</address>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <port>5900</port>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <port>5900</port>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <secure_port>5901</secure_port>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <secure_port>5901</secure_port>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <monitors>1</monitors>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <monitors>1</monitors>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <single_qxl_pci>false</single_qxl_pci>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <single_qxl_pci>false</single_qxl_pci>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <allow_override>true</allow_override>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <allow_override>true</allow_override>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <smartcard_enabled>false</smartcard_enabled>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <smartcard_enabled>false</smartcard_enabled>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </display>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " </display>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <host href="/api/hosts/982c230a-415b-4ce7-ab9d-fe8d945ec211" id="982c230a-415b-4ce7-ab9d-fe8d945ec211"/>[\n]"
2014-02-14 14:43:39,828 DEBUG [org.apache.http.wire] << " <host href="/api/hosts/982c230a-415b-4ce7-ab9d-fe8d945ec211" id="982c230a-415b-4ce7-ab9d-fe8d945ec211"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <cluster href="/api/clusters/0b4fb862-5a2e-46c3-979e-fa0778493ba4" id="0b4fb862-5a2e-46c3-979e-fa0778493ba4"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <cluster href="/api/clusters/0b4fb862-5a2e-46c3-979e-fa0778493ba4" id="0b4fb862-5a2e-46c3-979e-fa0778493ba4"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <template href="/api/templates/bbfd3148-56e5-4574-9313-25640a8a056c" id="bbfd3148-56e5-4574-9313-25640a8a056c"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <template href="/api/templates/bbfd3148-56e5-4574-9313-25640a8a056c" id="bbfd3148-56e5-4574-9313-25640a8a056c"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <start_time>2014-02-14T20:06:38.331+05:30</start_time>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <start_time>2014-02-14T20:06:38.331+05:30</start_time>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <creation_time>2014-02-14T19:52:03.149+05:30</creation_time>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <creation_time>2014-02-14T19:52:03.149+05:30</creation_time>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <origin>ovirt</origin>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <origin>ovirt</origin>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <stateless>false</stateless>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <stateless>false</stateless>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <delete_protected>false</delete_protected>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <delete_protected>false</delete_protected>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <placement_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <placement_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <affinity>migratable</affinity>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <affinity>migratable</affinity>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </placement_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </placement_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <memory_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <memory_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <guaranteed>1073741824</guaranteed>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <guaranteed>1073741824</guaranteed>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </memory_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </memory_policy>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <usb>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <usb>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </usb>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </usb>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530" id="5ac200c8-b509-4def-9ee2-836ea09aa530">[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <vm href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530" id="5ac200c8-b509-4def-9ee2-836ea09aa530">[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <actions>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/ticket" rel="ticket"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/cancelmigration" rel="cancelmigration"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/migrate" rel="migrate"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/move" rel="move"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/move" rel="move"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/detach" rel="detach"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5a"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5a"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << "b56[\r][\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << "b56[\r][\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << "c200c8-b509-4def-9ee2-836ea09aa530/export" rel="export"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << "c200c8-b509-4def-9ee2-836ea09aa530/export" rel="export"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/shutdown" rel="shutdown"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/start" rel="start"/>[\n]"
2014-02-14 14:43:39,829 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/start" rel="start"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/stop" rel="stop"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/suspend" rel="suspend"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </actions>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <name>testVM3</name>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <name>testVM3</name>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <description>java_sdk2</description>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <description>java_sdk2</description>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/applications" rel="applications"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/disks" rel="disks"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/nics" rel="nics"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/cdroms" rel="cdroms"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/snapshots" rel="snapshots"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/tags" rel="tags"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/permissions" rel="permissions"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/statistics" rel="statistics"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/reporteddevices" rel="reporteddevices"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <link href="/api/vms/5ac200c8-b509-4def-9ee2-836ea09aa530/watchdogs" rel="watchdogs"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <type>server</type>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <type>server</type>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <status>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <state>down</state>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <state>down</state>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </status>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <memory>2147483648</memory>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <memory>2147483648</memory>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <cpu>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <cpu>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <topology sockets="1" cores="1"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <topology sockets="1" cores="1"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </cpu>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </cpu>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <cpu_shares>0</cpu_shares>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <cpu_shares>0</cpu_shares>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <os type="other">[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <os type="other">[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <boot dev="hd"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <boot dev="hd"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <boot dev="cdrom"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <boot dev="cdrom"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </os>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </os>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <high_availability>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <high_availability>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <priority>1</priority>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <priority>1</priority>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </high_availability>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </high_availability>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <display>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <display>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <type>spice</type>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <type>spice</type>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <monitors>1</monitors>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <monitors>1</monitors>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <single_qxl_pci>false</single_qxl_pci>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <single_qxl_pci>false</single_qxl_pci>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <allow_override>true</allow_override>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <allow_override>true</allow_override>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <smartcard_enabled>false</smartcard_enabled>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <smartcard_enabled>false</smartcard_enabled>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </display>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " </display>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <cluster href="/api/clusters/0b4fb862-5a2e-46c3-979e-fa0778493ba4" id="0b4fb862-5a2e-46c3-979e-fa0778493ba4"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <cluster href="/api/clusters/0b4fb862-5a2e-46c3-979e-fa0778493ba4" id="0b4fb862-5a2e-46c3-979e-fa0778493ba4"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <template href="/api/templates/00000000-0000-0000-0000-000000000000" id="00000000-0000-0000-0000-000000000000"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <template href="/api/templates/00000000-0000-0000-0000-000000000000" id="00000000-0000-0000-0000-000000000000"/>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <creation_time>2014-02-11T22:06:05.267+05:30</creation_time>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <creation_time>2014-02-11T22:06:05.267+05:30</creation_time>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <origin>ovirt</origin>[\n]"
2014-02-14 14:43:39,830 DEBUG [org.apache.http.wire] << " <origin>ovirt</origin>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <stateless>false</stateless>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <stateless>false</stateless>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <delete_protected>false</delete_protected>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <delete_protected>false</delete_protected>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <placement_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <placement_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <affinity>migratable</affinity>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <affinity>migratable</affinity>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </placement_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </placement_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <memory_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <memory_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <guaranteed>1073741824</guaranteed>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <guaranteed>1073741824</guaranteed>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </memory_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </memory_policy>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <usb>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <usb>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " <enabled>false</enabled>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </usb>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </usb>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << " </vm>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "</vms>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "</vms>[\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "0[\r][\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "0[\r][\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,831 DEBUG [org.apache.http.wire] << "[\r][\n]"
2014-02-14 14:43:39,832 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:14152<->210.210.125.17:443 closed
2014-02-14 14:43:39,832 DEBUG [org.apache.http.impl.conn.DefaultClientConnection] Connection 0.0.0.0:14152<->210.210.125.17:443 closed
2014-02-14 14:43:39,832 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 13][route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 20]
2014-02-14 14:43:39,832 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection released: [id: 13][route: {s}->https://rhevm:443][total kept alive: 0; route allocated: 0 of 5; total allocated: 0 of 20]
After : org.ovirt.engine.sdk.entities.Status at e3ffdf
2014-02-14 14:43:39,835 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2014-02-14 14:43:39,835 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager is shutting down
2014-02-14 14:43:39,835 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
2014-02-14 14:43:39,835 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Connection manager shut down
completed
2014-02-14 14:43:39,835 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Closing expired connections
2014-02-14 14:43:39,835 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Closing expired connections
2014-02-14 14:43:39,836 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Closing connections idle longer than 30 SECONDS
2014-02-14 14:43:39,836 DEBUG [org.apache.http.impl.conn.PoolingClientConnectionManager] Closing connections idle longer than 30 SECONDS
-------------- next part --------------
A non-text attachment was scrubbed...
Name: No Cloud-Init 2.png
Type: image/png
Size: 36614 bytes
Desc: not available
URL: <http://lists.ovirt.org/pipermail/users/attachments/20140214/60a9520b/attachment-0002.png>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: No Cloud-Init.png
Type: image/png
Size: 38372 bytes
Desc: not available
URL: <http://lists.ovirt.org/pipermail/users/attachments/20140214/60a9520b/attachment-0003.png>
More information about the Users
mailing list