mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-19 23:09:19 +01:00
Removed obsolete code/hidden functionality and related outdated sample xapi databases.
- Removed sample databases. They are outdated, hence unloadable, and loading Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
This commit is contained in:
parent
e582ae1e24
commit
3ee2e7e571
39
CREDITS.md
Normal file
39
CREDITS.md
Normal file
@ -0,0 +1,39 @@
|
||||
XenCenter Alumni
|
||||
================
|
||||
|
||||
* Aaron Robson
|
||||
* Adrian Jachacy
|
||||
* Barbara Li
|
||||
* Brian Donegan
|
||||
* Callum McIntyre
|
||||
* Carmen Agimof
|
||||
* Cheng Zhang
|
||||
* Chris Harding
|
||||
* Daniel Lamping
|
||||
* Darren Matthews
|
||||
* Deane Smith
|
||||
* Ewan Mellor
|
||||
* Frederico Mazzone
|
||||
* Gabor Apati-Nagy
|
||||
* Henry Hughes
|
||||
* Hugh Warrington
|
||||
* Hui Zhang
|
||||
* Javier Alvarez-Valle
|
||||
* Jisheng Xing
|
||||
* John Naab
|
||||
* Johnni Aguirre
|
||||
* Julie Allen
|
||||
* Katherine Shann
|
||||
* Kun Ma
|
||||
* Letsibogo Ramadi
|
||||
* Michael Zhao
|
||||
* Mihaela Stoica
|
||||
* Milind Padhye
|
||||
* Rabin Karki
|
||||
* Sarah Vallieres
|
||||
* Seren Corbett
|
||||
* Stephen Rice
|
||||
* Stephen Turner
|
||||
* Tom Wilkie
|
||||
* Usha Mandya
|
||||
* Victor Rodriguez
|
@ -37,7 +37,6 @@
|
||||
<?define UpgradeCode="{EA0EF50F-5CC6-452B-B09F-3F5EC564899D}"?>
|
||||
<?define ReportViewerGuid="D01090B9-1988-4ab4-B48A-D0B6161FAA48"?>
|
||||
<?define MainExeGuid="64FEF765-7593-4612-8D4D-EE81CF704DEB"?>
|
||||
<?define TestResourcesGuid="FA8D4F56-A94A-467c-9E6B-F3DC26F95B1E"?>
|
||||
<?define ExtToolsGuid="D5FC0252-C97B-46e7-9633-A6B68EDB6654"?>
|
||||
<?define SchemasFilesGuid="E2186CD8-5064-4414-8AD7-E4495B6A3204"?>
|
||||
<?define RegEntriesGuid="193BAE1F-F2AE-4451-94DC-4B105DB5179C"?>
|
||||
|
@ -1,53 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Copyright (c) Cloud Software Group, Inc.
|
||||
|
||||
Redistribution and use in source and binary forms,
|
||||
with or without modification, are permitted provided
|
||||
that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above
|
||||
copyright notice, this list of conditions and the
|
||||
following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the
|
||||
following disclaimer in the documentation and/or other
|
||||
materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
-->
|
||||
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
|
||||
<?include branding.wxi ?>
|
||||
<Fragment>
|
||||
<DirectoryRef Id='INSTALLDIR'>
|
||||
<Directory Id="TestReso" ShortName="TestReso" Name="TestResources">
|
||||
<Component Id="TestResources" Guid="$(var.TestResourcesGuid)">
|
||||
<File Source="$(env.RepoRoot)\XenAdmin\bin\Release\TestResources\credits.xml" />
|
||||
<File Id="interes1.xml" Source="$(env.RepoRoot)\XenAdmin\bin\Release\TestResources\interesting-development.xml" />
|
||||
<File Id="interes2.xml" Source="$(env.RepoRoot)\XenAdmin\bin\Release\TestResources\interesting-production.xml" />
|
||||
<File Id="interes3.xml" Source="$(env.RepoRoot)\XenAdmin\bin\Release\TestResources\interesting-xenapp.xml" />
|
||||
</Component>
|
||||
</Directory>
|
||||
</DirectoryRef>
|
||||
</Fragment>
|
||||
<Fragment>
|
||||
<ComponentGroup Id="BrandedComponents">
|
||||
<ComponentRef Id="TestResources" />
|
||||
</ComponentGroup>
|
||||
</Fragment>
|
||||
</Wix>
|
1
XenAdmin/Dialogs/AddServerDialog.Designer.cs
generated
1
XenAdmin/Dialogs/AddServerDialog.Designer.cs
generated
@ -66,7 +66,6 @@ namespace XenAdmin.Dialogs
|
||||
this.CancelButton2.Name = "CancelButton2";
|
||||
this.CancelButton2.UseVisualStyleBackColor = true;
|
||||
this.CancelButton2.Click += new System.EventHandler(this.CancelButton2_Click);
|
||||
this.CancelButton2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CancelButton2_KeyDown);
|
||||
//
|
||||
// ServerNameLabel
|
||||
//
|
||||
|
@ -36,7 +36,6 @@ using System.Text.RegularExpressions;
|
||||
using System.Windows.Forms;
|
||||
using XenAdmin.Core;
|
||||
using XenAdmin.Network;
|
||||
using XenAdmin.TestResources;
|
||||
using XenCenterLib;
|
||||
|
||||
namespace XenAdmin.Dialogs
|
||||
@ -218,36 +217,6 @@ namespace XenAdmin.Dialogs
|
||||
return ServerNameComboBox.Text.Trim().Length > 0 && UsernameTextBox.Text.Trim().Length > 0;
|
||||
}
|
||||
|
||||
private void CancelButton2_KeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (e.Control || e.Alt)
|
||||
{
|
||||
switch (e.KeyCode)
|
||||
{
|
||||
case Keys.D1:
|
||||
Launch(TestResource.Resource.InterestingProduction);
|
||||
break;
|
||||
case Keys.D2:
|
||||
Launch(TestResource.Resource.InterestingDevelopment);
|
||||
break;
|
||||
case Keys.D3:
|
||||
Launch(TestResource.Resource.InterestingXenApp);
|
||||
break;
|
||||
case Keys.D4:
|
||||
Launch(TestResource.Resource.Credits);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void Launch(TestResource.Resource r)
|
||||
{
|
||||
ServerNameComboBox.Text = TestResource.Location(r);
|
||||
AddButton_Click(this, null);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Used for testing. Parses text for a semi-colon separated list of files that are loaded by DbProxy.
|
||||
/// </summary>
|
||||
|
@ -579,33 +579,6 @@
|
||||
<data name="flowLayoutPanel1.AutoSizeMode" type="System.Windows.Forms.AutoSizeMode, System.Windows.Forms">
|
||||
<value>GrowAndShrink</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>164, 7</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>220, 23</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Visible" type="System.Boolean, mscorlib">
|
||||
<value>False</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.Name" xml:space="preserve">
|
||||
<value>comboBoxClouds</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.Parent" xml:space="preserve">
|
||||
<value>flowLayoutPanel1</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="flowLayoutPanel1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
</data>
|
||||
|
@ -579,33 +579,6 @@
|
||||
<data name="flowLayoutPanel1.AutoSizeMode" type="System.Windows.Forms.AutoSizeMode, System.Windows.Forms">
|
||||
<value>GrowAndShrink</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>6, 7</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>220, 23</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="comboBoxClouds.Visible" type="System.Boolean, mscorlib">
|
||||
<value>False</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.Name" xml:space="preserve">
|
||||
<value>comboBoxClouds</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.Parent" xml:space="preserve">
|
||||
<value>flowLayoutPanel1</value>
|
||||
</data>
|
||||
<data name=">>comboBoxClouds.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="flowLayoutPanel1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Fill</value>
|
||||
</data>
|
||||
|
@ -1,60 +0,0 @@
|
||||
/* Copyright (c) Cloud Software Group, Inc.
|
||||
*
|
||||
* Redistribution and use in source and binary forms,
|
||||
* with or without modification, are permitted provided
|
||||
* that the following conditions are met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above
|
||||
* copyright notice, this list of conditions and the
|
||||
* following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the
|
||||
* following disclaimer in the documentation and/or other
|
||||
* materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
namespace XenAdmin.TestResources
|
||||
{
|
||||
static class TestResource
|
||||
{
|
||||
public enum Resource
|
||||
{
|
||||
InterestingProduction,
|
||||
InterestingDevelopment,
|
||||
InterestingXenApp,
|
||||
Credits,
|
||||
}
|
||||
|
||||
private static readonly Dictionary<Resource, string> Filenames = new Dictionary<Resource, string>();
|
||||
static TestResource()
|
||||
{
|
||||
Filenames[Resource.InterestingProduction] = "interesting-production.xml";
|
||||
Filenames[Resource.InterestingDevelopment] = "interesting-development.xml";
|
||||
Filenames[Resource.InterestingXenApp] = "interesting-xenapp.xml";
|
||||
Filenames[Resource.Credits] = "credits.xml";
|
||||
}
|
||||
|
||||
public static string Location(Resource r)
|
||||
{
|
||||
return Path.Combine(Path.Combine(Program.AssemblyDir, "TestResources"), Filenames[r]);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<database>
|
||||
<table name="pool">
|
||||
<row ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2513df" tags="()" ha_enabled="false" master="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" wlb_url="" ha_configuration="()" blobs="()" _ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2513df" wlb_password="" wlb_username="" wlb_enabled="false" ha_statefiles="()" wlb_verify_cert="false" ha_plan_exists_for="0" default_SR="OpaqueRef:NULL" uuid="4f9e8677-bd99-252e-d771-a848a7364bd7" other_config="()" crash_dump_SR="OpaqueRef:NULL" suspend_image_SR="OpaqueRef:NULL" gui_config="()" ha_overcommitted="false" ha_allow_overcommit="false" ha_host_failures_to_tolerate="0" name_description="" name_label="Credits"/>
|
||||
</table>
|
||||
<table name="host">
|
||||
<row ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" API_version__major="2" tags="()" external_auth_type="" sched_policy="credit" API_version__vendor_implementation="()" blobs="()" _ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" external_auth_service_name="" crash_dump_sr="OpaqueRef:NULL" suspend_image_sr="OpaqueRef:NULL" name__description="The chief protagonists" API_version__minor="15" current_operations="()" ha_statefiles="()" cpu_configuration="()" address="10.0.0.1" uuid="34d048ea-5a31-4325-898e-0e35e8b77e79" supported_bootloaders="('pygrub' 'eliloader')" logging="()" other_config="(('agent_start_time' '1241613524.') ('boot_time' '1241085952.') ('MAINTENANCE_MODE_EVACUATED_VMS' '') ('iscsi_iqn' 'iqn.2009-06.com.xensource.uk:4e7a4730'))" API_version__vendor="XenSource" name__label="XenCenter Development Team" enabled="true" license_params="(('sku_type' 'XE Enterprise') ('version' '5.0.0') ('serialnumber' 'cbc0b0d4-d961-cf8f-0558-5fedde2caf9e') ('sockets' '2') ('productcode' 'f3a6-a3c0-ed16-c709-b055-8789') ('expiry' '20300131T00:00:00Z') ('name' 'Citrix XenServer Sample License') ('company' '') ('address1' '') ('address2' '') ('city' '') ('state' '') ('postalcode' '') ('country' '') ('sku_marketing_name' 'Citrix Essentials for XenServer') ('restrict_connection' 'false') ('restrict_pooling' 'false') ('restrict_qos' 'false') ('restrict_pool_attached_storage' 'false') ('restrict_netapp' 'false') ('restrict_equalogic' 'false') ('restrict_vlan' 'false') ('enable_xha' 'true') ('restrict_marathon' 'false') ('platform_filter' 'false') ('restrict_email_alerting' 'false') ('restrict_historical_performance' 'false') ('regular_nag_dialog' 'false'))" external_auth_configuration="()" hostname="XenCenter" software_version="(('product_version' '8.2.0') ('platform_version' '3.2.0') ('product_brand' 'XenServer') ('build_number' '99999') ('hg_id' 'abc450a18a63+') ('hostname' 'eli') ('date' '2009-05-06') ('xapi' '1.3') ('xen' '3.3.1') ('linux' '2.6.18-128.1.6.el5.xs5.5.0.490.1008xen') ('xencenter_min' '1.6') ('xencenter_max' '1.6') ('package-linux' 'installed'))" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" ha_network_peers="()" boot_free_mem="3534888960" capabilities="('xen-3.0-x86_64' 'xen-3.0-x86_32p' 'hvm-3.0-x86_32' 'hvm-3.0-x86_32p' 'hvm-3.0-x86_64' '')" updates_requiring_reboot="()" allowed_operations="('vm_migrate' 'evacuate' 'provision' 'vm_resume' 'vm_start')"/>
|
||||
<row ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" API_version__major="2" tags="()" external_auth_type="" sched_policy="credit" API_version__vendor_implementation="()" blobs="()" _ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" external_auth_service_name="" crash_dump_sr="OpaqueRef:NULL" suspend_image_sr="OpaqueRef:NULL" name__description="The sorely missed" API_version__minor="15" current_operations="()" ha_statefiles="()" cpu_configuration="()" address="10.0.0.2" uuid="34d048ea-5a31-4325-898e-0e35e8b77e77" supported_bootloaders="('pygrub' 'eliloader')" logging="()" other_config="(('agent_start_time' '1241613524.') ('boot_time' '1241085952.') ('MAINTENANCE_MODE_EVACUATED_VMS' '') ('iscsi_iqn' 'iqn.2009-06.com.xensource.uk:4e7a4731'))" API_version__vendor="XenSource" name__label="XenCenter Alumni" enabled="true" license_params="(('sku_type' 'XE Enterprise') ('version' '5.0.0') ('serialnumber' 'cbc0b0d4-d961-cf8f-0558-5fedde2caf9e') ('sockets' '2') ('productcode' 'f3a6-a3c0-ed16-c709-b055-8789') ('expiry' '20300131T00:00:00Z') ('name' 'Citrix XenServer Sample License') ('company' '') ('address1' '') ('address2' '') ('city' '') ('state' '') ('postalcode' '') ('country' '') ('sku_marketing_name' 'Citrix Essentials for XenServer') ('restrict_connection' 'false') ('restrict_pooling' 'false') ('restrict_qos' 'false') ('restrict_pool_attached_storage' 'false') ('restrict_netapp' 'false') ('restrict_equalogic' 'false') ('restrict_vlan' 'false') ('enable_xha' 'true') ('restrict_marathon' 'false') ('platform_filter' 'false') ('restrict_email_alerting' 'false') ('restrict_historical_performance' 'false') ('regular_nag_dialog' 'false'))" external_auth_configuration="()" hostname="XenCenter" software_version="(('product_version' '8.2.0') ('platform_version' '3.2.0') ('product_brand' 'XenServer') ('build_number' '99999') ('hg_id' 'abc450a18a63+') ('hostname' 'eli') ('date' '2009-05-06') ('xapi' '1.3') ('xen' '3.3.1') ('linux' '2.6.18-128.1.6.el5.xs5.5.0.490.1008xen') ('xencenter_min' '1.6') ('xencenter_max' '1.6') ('package-linux' 'installed'))" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" ha_network_peers="()" boot_free_mem="3534888960" capabilities="('xen-3.0-x86_64' 'xen-3.0-x86_32p' 'hvm-3.0-x86_32' 'hvm-3.0-x86_32p' 'hvm-3.0-x86_64' '')" updates_requiring_reboot="()" allowed_operations="('vm_migrate' 'evacuate' 'provision' 'vm_resume' 'vm_start')"/>
|
||||
</table>
|
||||
<table name="host_metrics" />
|
||||
<table name="VM">
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff603" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Henry Hughes" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc0" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff603" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer (Intern)" allowed_operations="('resume' 'hard_reboot' 'hard_shutdown')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff604" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Tom Wilkie" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc1" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff604" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Javier Álvarez Valle" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dd0" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff615" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Deane Smith" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dd1" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff615" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development manager" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff616" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="李柏紅 (Barbara Li)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dd2" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff616" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff617" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Brian Donegan" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc9" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff617" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff618" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Victor Rodriguez" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc8" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff618" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software test engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff619" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Sarah Vallieres" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc7" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff619" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Technical author" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff620" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Mihaela Stoica" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc6" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer and team manager" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff621" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Κωνσταντίνα Χρέμμου (Konstantina Chremmou)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dd3" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer and team dev lead" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff622" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="रविन कार्की (Rabin Karki)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dd4" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff622" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff623" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Gábor Apáti-Nagy" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc5" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff624" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Chris Harding" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dd5" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff624" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff680" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Adrian Jachacy" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667d80" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff691" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff681" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="ಉಷಾ ಮಂಡಽ (Usha Mandya)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667d81" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff691" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Technical author" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff690" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Ewan Mellor" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dbc" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff690" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Team lead emeritus" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff691" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Julie Allen" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dbd" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff691" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="User experience engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff692" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Stephen Turner" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dbe" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff692" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Team manager" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff693" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Stephen Rice" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dbf" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff693" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff694" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Hugh Warrington" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc2" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff694" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff695" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Milind Padhye" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc3" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff695" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff696" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Johnni Aguirre" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc4" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff696" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Program manager" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff697" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="John Naab" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc5" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff697" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff698" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Daniel Lamping" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff698" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Suspended" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff699" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Carmen Agimof" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc6" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff699" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer (Intern)" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff682" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="张诚 (Cheng Zhang)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc7" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff681" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Suspended" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff683" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="张晖 (Hui Zhang)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b667dc8" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff682" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Suspended" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff684" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Frederico Mazzone" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6c7d7e58-f7ed-4a22-388a-cbf92b669dc9" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff765" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff685" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Callum McIntyre" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6c7d7e58-f7ed-4a22-388a-cbf92b669dc9" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff765" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff686" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Letsibogo Ramadi" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc5" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff687" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="江骥 (Joey Jiang)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92k679dc8" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff123" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff688" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="邢继生 (Jisheng Xing)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92k679dc8" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff123" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Suspended" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff689" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="赵凤阳 (Michael Zhao)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92k679dc8" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff123" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff625" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="马堃 (Kun Ma)" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92k679dc8" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff123" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Suspended" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff626" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" is_a_template="false" name__label="Seren Corbett" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc6" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer (Intern)" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Halted" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff627" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Aaron Robson" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="6b7d7e58-d915-1a02-388a-cbf92b669dc6" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:51419ad7-946e-4327-aa52-95add07277e4" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Chris Lancaster" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="2f59c587-d6b6-44c0-8c34-3bf67dff54f5" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:50bc4f1e-70de-404a-83bd-b1c9fda0702f" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Danilo Del Busso" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="1f063765-52f9-4d4a-8f4c-f88f1410e9d9" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Software development engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:be4af725-793a-4516-8cd7-39ae1e82be7b" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Katherine Shann" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="59133d76-f855-422b-908a-bea15f34cc94" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Technical author" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
<row ref="OpaqueRef:d5fdc675-7551-46a3-9321-4e6327fdf549" PV__args="" PV__bootloader_args="" actions__after_shutdown="destroy" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ec" is_a_template="false" name__label="Darren Matthews" ha_restart_priority="" snapshot_of="OpaqueRef:NULL" tags="()" PV__ramdisk="" memory__dynamic_min="536870912" user_version="1" HVM__boot_params="(('order' 'dc'))" uuid="39e72cd9-d254-46eb-a0e7-61f43a27ee81" PV__legacy_args="" last_boot_CPU_flags="()" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" PV__bootloader="" memory__target="268435456" current_operations="()" blobs="()" HVM__boot_policy="BIOS order" VCPUs__max="1" domid="9" other_config="(('last_shutdown_time' '20090505T17:10:33Z') ('last_shutdown_action' 'Destroy') ('last_shutdown_initiator' 'external') ('last_shutdown_reason' 'halted') ('install-methods' 'cdrom') ('mac_seed' '021c8736-06a9-04ca-dfec-213484813516'))" xenstore_data="()" recommendations="" _ref="OpaqueRef:d8c4b5b1-86d8-40f8-ac93-3ed24d4ff614" scheduled_to_be_resident_on="OpaqueRef:NULL" memory__dynamic_max="536870912" name__description="Localization engineer" allowed_operations="('pool_migrate' 'changing_VCPUs_live' 'suspend' 'hard_reboot' 'hard_shutdown' 'clean_reboot' 'clean_shutdown' 'pause' 'snapshot')" blocked_operations="()" is_a_snapshot="false" snapshot_time="19700101T00:00:00Z" ha_always_run="false" memory__static_min="16777216" affinity="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421ed" VCPUs__at_startup="1" actions__after_reboot="restart" is_control_domain="false" PCI_bus="" HVM__shadow_multiplier="1" last_booted_record="" transportable_snapshot_id="" actions__after_crash="restart" power_state="Running" platform="(('timeoffset' '2') ('nx' 'false') ('acpi' 'true') ('apic' 'true') ('pae' 'true') ('viridian' 'true'))" suspend_VDI="OpaqueRef:NULL" domarch="hvm" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" memory__static_max="536870912" VCPUs__params="()" PV__kernel=""/>
|
||||
</table>
|
||||
<table name="VM_guest_metrics">
|
||||
<row ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" disks="()" last_updated="20090506T12:45:12Z" PV_drivers_version="(('major' '5') ('minor' '5') ('micro' '0') ('build' '14066'))" other_config="()" os_version="" uuid="de86726b-2e8d-0441-8628-1b8f4a1c3e1e" other="" PV_drivers_up_to_date="true" networks="" memory="()" live="true" _ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51"/>
|
||||
</table>
|
||||
<table name="VM_metrics">
|
||||
<row ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" last_updated="19700101T00:00:00Z" VCPUs__number="0" other_config="()" VCPUs__flags="()" uuid="28a7bd58-d06b-fc5a-ab80-b31eff17820f" start_time="19700101T00:00:00Z" VCPUs__CPU="()" VCPUs__params="()" VCPUs__utilisation="()" install_time="19700101T00:00:00Z" memory__actual="0" state="()" _ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2"/>
|
||||
</table>
|
||||
</database>
|
@ -1,35 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<database>
|
||||
<table name="pool">
|
||||
<row ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2523bf" tags="()" ha_enabled="false" master="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" wlb_url="10.0.100.1:8012" ha_configuration="()" blobs="()" _ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2513bf" wlb_password="pa55w0rd" wlb_username="wlb_admin" wlb_enabled="true" ha_statefiles="()" wlb_verify_cert="false" ha_plan_exists_for="0" default_SR="OpaqueRef:NULL" uuid="ba987d6c-d229-e939-95d6-009fde2523bf" other_config="()" crash_dump_SR="OpaqueRef:NULL" suspend_image_SR="OpaqueRef:NULL" gui_config="()" ha_overcommitted="false" ha_allow_overcommit="false" ha_host_failures_to_tolerate="0" name_description="" name_label="R & D" />
|
||||
</table>
|
||||
<table name="host">
|
||||
<row ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" API_version__major="2" tags="()" external_auth_type="" sched_policy="credit" API_version__vendor_implementation="()" blobs="()" _ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" external_auth_service_name="" crash_dump_sr="OpaqueRef:NULL" suspend_image_sr="OpaqueRef:NULL" name__description="" API_version__minor="5" current_operations="()" ha_statefiles="()" cpu_configuration="()" address="10.0.0.1" uuid="34d048ea-5a31-4325-898e-0e35e8b77e89" supported_bootloaders="('pygrub' 'eliloader')" logging="()" other_config="(('agent_start_time' '1243295009.') ('boot_time' '1243295000.') ('MAINTENANCE_MODE_EVACUATED_VMS' '') ('iscsi_iqn' 'iqn.2009-06.com.xensource.uk:4e7a4730'))" API_version__vendor="XenSource" name__label="ebony" enabled="true" license_params="(('sku_type' 'XE Enterprise') ('version' '5.0.0') ('serialnumber' 'cbc0b0d4-d961-cf8f-0558-5fedde2caf9e') ('sockets' '2') ('productcode' 'f3a6-a3c0-ed16-c709-b055-8789') ('expiry' '20100131T00:00:00Z') ('name' 'Citrix XenServer Sample License') ('company' '') ('address1' '') ('address2' '') ('city' '') ('state' '') ('postalcode' '') ('country' '') ('sku_marketing_name' 'Citrix Essentials for XenServer') ('restrict_connection' 'false') ('restrict_pooling' 'false') ('restrict_qos' 'false') ('restrict_pool_attached_storage' 'false') ('restrict_netapp' 'false') ('restrict_equalogic' 'false') ('restrict_vlan' 'false') ('enable_xha' 'true') ('restrict_marathon' 'false') ('platform_filter' 'false') ('restrict_email_alerting' 'false') ('restrict_historical_performance' 'false') ('regular_nag_dialog' 'false'))" external_auth_configuration="()" hostname="ebony" software_version="(('product_version' '5.5.0') ('product_brand' 'George') ('build_number' '99999') ('hg_id' 'abc450a18a63+') ('hostname' 'eli') ('date' '2009-05-06') ('xapi' '1.3') ('xen' '3.3.1') ('linux' '2.6.18-128.1.6.el5.xs5.5.0.490.1008xen') ('xencenter_min' '1.6') ('xencenter_max' '1.6') ('package-linux' 'installed'))" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" ha_network_peers="()" boot_free_mem="3534888960" capabilities="('xen-3.0-x86_64' 'xen-3.0-x86_32p' 'hvm-3.0-x86_32' 'hvm-3.0-x86_32p' 'hvm-3.0-x86_64' '')" allowed_operations="('vm_migrate' 'evacuate' 'provision' 'vm_resume' 'vm_start')" />
|
||||
<row ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fd" API_version__major="2" tags="()" external_auth_type="" sched_policy="credit" API_version__vendor_implementation="()" blobs="()" _ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fd" external_auth_service_name="" crash_dump_sr="OpaqueRef:NULL" suspend_image_sr="OpaqueRef:NULL" name__description="" API_version__minor="5" current_operations="()" ha_statefiles="()" cpu_configuration="()" address="10.0.0.2" uuid="34d048ea-5a31-4325-898e-0e35e8b77e90" supported_bootloaders="('pygrub' 'eliloader')" logging="()" other_config="(('agent_start_time' '1243295109.') ('boot_time' '1243295090.') ('MAINTENANCE_MODE_EVACUATED_VMS' '') ('iscsi_iqn' 'iqn.2009-06.com.xensource.uk:4e7a4730'))" API_version__vendor="XenSource" name__label="ivory" enabled="true" license_params="(('sku_type' 'XE Enterprise') ('version' '5.0.0') ('serialnumber' 'cbc0b0d4-d961-cf8f-0558-5fedde2caf9e') ('sockets' '2') ('productcode' 'f3a6-a3c0-ed16-c709-b055-8789') ('expiry' '20100131T00:00:00Z') ('name' 'Citrix XenServer Sample License') ('company' '') ('address1' '') ('address2' '') ('city' '') ('state' '') ('postalcode' '') ('country' '') ('sku_marketing_name' 'Citrix Essentials for XenServer') ('restrict_connection' 'false') ('restrict_pooling' 'false') ('restrict_qos' 'false') ('restrict_pool_attached_storage' 'false') ('restrict_netapp' 'false') ('restrict_equalogic' 'false') ('restrict_vlan' 'false') ('enable_xha' 'true') ('restrict_marathon' 'false') ('platform_filter' 'false') ('restrict_email_alerting' 'false') ('restrict_historical_performance' 'false') ('regular_nag_dialog' 'false'))" external_auth_configuration="()" hostname="ivory" software_version="(('product_version' '5.5.0') ('product_brand' 'George') ('build_number' '99999') ('hg_id' 'abc450a18a63+') ('hostname' 'eli') ('date' '2009-05-06') ('xapi' '1.3') ('xen' '3.3.1') ('linux' '2.6.18-128.1.6.el5.xs5.5.0.490.1008xen') ('xencenter_min' '1.6') ('xencenter_max' '1.6') ('package-linux' 'installed'))" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" ha_network_peers="()" boot_free_mem="3534888960" capabilities="('xen-3.0-x86_64' 'xen-3.0-x86_32p' 'hvm-3.0-x86_32' 'hvm-3.0-x86_32p' 'hvm-3.0-x86_64' '')" allowed_operations="('vm_migrate' 'evacuate' 'provision' 'vm_resume' 'vm_start')" />
|
||||
</table>
|
||||
<table name="host_metrics" />
|
||||
<table name="VM">
|
||||
<row ref="OpaqueRef:8afac55e-5837-4e84-8182-bf025bf85c67" _ref="OpaqueRef:8afac55e-5837-4e84-8182-bf025bf85c67" uuid="8afac55e-5837-4e84-8182-bf025bf85c67" name__label="Citrix Lab Manager" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:4f8a4877-eeee-4cb2-80d8-99e5689f84d1" _ref="OpaqueRef:4f8a4877-eeee-4cb2-80d8-99e5689f84d1" uuid="4f8a4877-eeee-4cb2-80d8-99e5689f84d1" name__label="Vista French" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("French")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:6459a628-87c1-4c34-991e-87c0bbeb4539" _ref="OpaqueRef:6459a628-87c1-4c34-991e-87c0bbeb4539" uuid="6459a628-87c1-4c34-991e-87c0bbeb4539" name__label="Vista German" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("German")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:275d2451-3950-4b3b-ae2f-b6816c9b93ed" _ref="OpaqueRef:275d2451-3950-4b3b-ae2f-b6816c9b93ed" uuid="275d2451-3950-4b3b-ae2f-b6816c9b93ed" name__label="Vista Simplified Chinese" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Simplified Chinese")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:7fd087d0-ab9a-4956-871d-c4083044e7d7" _ref="OpaqueRef:7fd087d0-ab9a-4956-871d-c4083044e7d7" uuid="7fd087d0-ab9a-4956-871d-c4083044e7d7" name__label="Vista Traditional Chinese" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Suspended" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Traditional Chinese")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:fdae5a01-168d-4c94-94c4-85a6fc6ce488" _ref="OpaqueRef:fdae5a01-168d-4c94-94c4-85a6fc6ce488" uuid="fdae5a01-168d-4c94-94c4-85a6fc6ce488" name__label="Vista Korean" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Korean")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:fe7f18d7-2737-40d5-b355-86c49303a64e" _ref="OpaqueRef:fe7f18d7-2737-40d5-b355-86c49303a64e" uuid="fe7f18d7-2737-40d5-b355-86c49303a64e" name__label="Vista Japanese" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Japanese")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:021c704d-a660-4f1f-aa49-6433fffe25d7" _ref="OpaqueRef:021c704d-a660-4f1f-aa49-6433fffe25d7" uuid="021c704d-a660-4f1f-aa49-6433fffe25d7" name__label="XP French" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("French")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:bfc908e4-bca7-4764-b0c6-5ab5a5c47940" _ref="OpaqueRef:bfc908e4-bca7-4764-b0c6-5ab5a5c47940" uuid="bfc908e4-bca7-4764-b0c6-5ab5a5c47940" name__label="XP German" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("German")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:d057dee4-b71c-4afc-ae22-f8d4dd4fcc25" _ref="OpaqueRef:d057dee4-b71c-4afc-ae22-f8d4dd4fcc25" uuid="d057dee4-b71c-4afc-ae22-f8d4dd4fcc25" name__label="XP Simplified Chinese" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Simplified Chinese")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:4fc60fb2-2770-4cb3-80e2-fa015640660a" _ref="OpaqueRef:4fc60fb2-2770-4cb3-80e2-fa015640660a" uuid="4fc60fb2-2770-4cb3-80e2-fa015640660a" name__label="XP Traditional Chinese" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Suspended" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Traditional Chinese")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:f069f257-0b02-409e-944d-e994d46061df" _ref="OpaqueRef:f069f257-0b02-409e-944d-e994d46061df" uuid="f069f257-0b02-409e-944d-e994d46061df" name__label="XP Korean" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Korean")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:6ece8bdc-48e2-4f4e-9852-e9efc296ac4c" _ref="OpaqueRef:6ece8bdc-48e2-4f4e-9852-e9efc296ac4c" uuid="6ece8bdc-48e2-4f4e-9852-e9efc296ac4c" name__label="XP Japanese" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/QA/L10N"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Halted" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Japanese")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:f28f1f69-31df-42e9-9868-e0ab96779341" _ref="OpaqueRef:f28f1f69-31df-42e9-9868-e0ab96779341" uuid="f28f1f69-31df-42e9-9868-e0ab96779341" name__label="Windows 2008 w/ dev tools" name__description="Visual Studio 2008, Windows SDK, windbg" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fd" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:259f9fbb-4da3-40ca-bbfc-6e133734f326" _ref="OpaqueRef:259f9fbb-4da3-40ca-bbfc-6e133734f326" uuid="259f9fbb-4da3-40ca-bbfc-6e133734f326" name__label="Shared Terminal Services" name__description="TS for the developers to share" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fd" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:b240fb2b-976f-486f-b538-88c8abc44f6c" _ref="OpaqueRef:b240fb2b-976f-486f-b538-88c8abc44f6c" uuid="b240fb2b-976f-486f-b538-88c8abc44f6c" name__label="Build services" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fd" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
</table>
|
||||
<table name="VM_guest_metrics">
|
||||
<row ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" disks="()" last_updated="20090526T12:45:12Z" PV_drivers_version="(('major' '5') ('minor' '5') ('micro' '0') ('build' '14066'))" other_config="()" os_version="" uuid="de86726b-2e8d-0441-8628-1b8f4a1c3e1e" other="" PV_drivers_up_to_date="true" networks="" memory="()" live="true" _ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51"/>
|
||||
</table>
|
||||
<table name="VM_metrics">
|
||||
<row ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" last_updated="20090526T12:45:12Z" VCPUs__number="0" other_config="()" VCPUs__flags="()" uuid="28a7bd58-d06b-fc5a-ab80-b31eff17820f" start_time="20090526T12:45:12Z" VCPUs__CPU="()" VCPUs__params="()" VCPUs__utilisation="()" install_time="20090526T12:45:12Z" memory__actual="536870912" state="()" _ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2"/>
|
||||
</table>
|
||||
</database>
|
@ -1,24 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<database>
|
||||
<table name="pool">
|
||||
<row ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2533cf" tags="()" ha_enabled="false" master="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" wlb_url="10.0.100.1:8012" ha_configuration="()" blobs="()" _ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2513cf" wlb_password="pa55w0rd" wlb_username="wlb_admin" wlb_enabled="true" ha_statefiles="()" wlb_verify_cert="false" ha_plan_exists_for="0" default_SR="OpaqueRef:NULL" uuid="ba987d6c-d229-e939-95d6-009fde2533cf" other_config="()" crash_dump_SR="OpaqueRef:NULL" suspend_image_SR="OpaqueRef:NULL" gui_config="()" ha_overcommitted="false" ha_allow_overcommit="false" ha_host_failures_to_tolerate="0" name_description="" name_label="Main Production" />
|
||||
</table>
|
||||
<table name="host">
|
||||
<row ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" API_version__major="2" tags="()" external_auth_type="AD" sched_policy="credit" API_version__vendor_implementation="()" blobs="()" _ref="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" external_auth_service_name="dc.example.citrix.com" crash_dump_sr="OpaqueRef:NULL" suspend_image_sr="OpaqueRef:NULL" name__description="" API_version__minor="5" current_operations="()" ha_statefiles="("OpaqueRef:11dd4ee0-6111-eafb-d2e5-71873f140c33")" cpu_configuration="()" address="10.0.0.1" uuid="34d048ea-5a31-4325-898e-0e35e8b77e89" supported_bootloaders="('pygrub' 'eliloader')" logging="()" other_config="(('agent_start_time' '1241613524.') ('boot_time' '1241085952.') ('MAINTENANCE_MODE_EVACUATED_VMS' '') ('iscsi_iqn' 'iqn.2009-06.com.xensource.uk:4e7a4730'))" API_version__vendor="XenSource" name__label="hopbine" enabled="true" license_params="(('sku_type' 'XE Enterprise') ('version' '5.0.0') ('serialnumber' 'cbc0b0d4-d961-cf8f-0558-5fedde2caf9e') ('sockets' '2') ('productcode' 'f3a6-a3c0-ed16-c709-b055-8789') ('expiry' '20100131T00:00:00Z') ('name' 'Citrix XenServer Sample License') ('company' '') ('address1' '') ('address2' '') ('city' '') ('state' '') ('postalcode' '') ('country' '') ('sku_marketing_name' 'Citrix Essentials for XenServer') ('restrict_connection' 'false') ('restrict_pooling' 'false') ('restrict_qos' 'false') ('restrict_pool_attached_storage' 'false') ('restrict_netapp' 'false') ('restrict_equalogic' 'false') ('restrict_vlan' 'false') ('enable_xha' 'true') ('restrict_marathon' 'false') ('platform_filter' 'false') ('restrict_email_alerting' 'false') ('restrict_historical_performance' 'false') ('regular_nag_dialog' 'false'))" external_auth_configuration="()" hostname="hopbine" software_version="(('product_version' '5.5.0') ('product_brand' 'George') ('build_number' '99999') ('hg_id' 'abc450a18a63+') ('hostname' 'eli') ('date' '2009-05-06') ('xapi' '1.3') ('xen' '3.3.1') ('linux' '2.6.18-128.1.6.el5.xs5.5.0.490.1008xen') ('xencenter_min' '1.6') ('xencenter_max' '1.6') ('package-linux' 'installed'))" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" ha_network_peers="()" boot_free_mem="3534888960" capabilities="('xen-3.0-x86_64' 'xen-3.0-x86_32p' 'hvm-3.0-x86_32' 'hvm-3.0-x86_32p' 'hvm-3.0-x86_64' '')" allowed_operations="('vm_migrate' 'evacuate' 'provision' 'vm_resume' 'vm_start')" />
|
||||
</table>
|
||||
<table name="host_metrics" />
|
||||
<table name="VM">
|
||||
<row ref="OpaqueRef:2098b317-dcd3-48ad-9c99-e9bbdd9c10c7" _ref="OpaqueRef:2098b317-dcd3-48ad-9c99-e9bbdd9c10c7" uuid="2098b317-dcd3-48ad-9c99-e9bbdd9c10c7" name__label="Domain controller" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:b2e5d096-5ee2-4be2-8a3c-25b679144062" _ref="OpaqueRef:b2e5d096-5ee2-4be2-8a3c-25b679144062" uuid="b2e5d096-5ee2-4be2-8a3c-25b679144062" name__label="NetBackup 1" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure/backup"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:a68be421-b546-405c-af76-1f2f92e6e3b1" _ref="OpaqueRef:a68be421-b546-405c-af76-1f2f92e6e3b1" uuid="a68be421-b546-405c-af76-1f2f92e6e3b1" name__label="Support desktop" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:8ba3edb6-fdbb-4372-b2f1-e40f14c60c2a" _ref="OpaqueRef:8ba3edb6-fdbb-4372-b2f1-e40f14c60c2a" uuid="8ba3edb6-fdbb-4372-b2f1-e40f14c60c2a" name__label="Showcase" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:37970cb1-0b4b-47ca-8faf-af66fe0636a9" _ref="OpaqueRef:37970cb1-0b4b-47ca-8faf-af66fe0636a9" uuid="37970cb1-0b4b-47ca-8faf-af66fe0636a9" name__label="Workload balancing" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure/XenServer"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:34268a8d-2b06-47eb-bbbb-aca2325de340" _ref="OpaqueRef:34268a8d-2b06-47eb-bbbb-aca2325de340" uuid="34268a8d-2b06-47eb-bbbb-aca2325de340" name__label="StorageLink gateway" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure/XenServer"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-53f3429421fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
</table>
|
||||
<table name="VM_guest_metrics">
|
||||
<row ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" disks="()" last_updated="20090526T12:45:12Z" PV_drivers_version="(('major' '5') ('minor' '5') ('micro' '0') ('build' '14066'))" other_config="()" os_version="" uuid="de86726b-2e8d-0441-8628-1b8f4a1c3e1e" other="" PV_drivers_up_to_date="true" networks="" memory="()" live="true" _ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51"/>
|
||||
</table>
|
||||
<table name="VM_metrics">
|
||||
<row ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" last_updated="20090526T12:45:12Z" VCPUs__number="0" other_config="()" VCPUs__flags="()" uuid="28a7bd58-d06b-fc5a-ab80-b31eff17820f" start_time="20090526T12:45:12Z" VCPUs__CPU="()" VCPUs__params="()" VCPUs__utilisation="()" install_time="20090526T12:45:12Z" memory__actual="536870912" state="()" _ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2"/>
|
||||
</table>
|
||||
</database>
|
@ -1,52 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<database>
|
||||
<table name="pool">
|
||||
<row ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2543ff" tags="()" ha_enabled="true" master="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" wlb_url="10.0.100.1:8012" ha_configuration="()" blobs="()" _ref="OpaqueRef:ba987d6c-d229-e939-95d6-009fde2513ff" wlb_password="pa55w0rd" wlb_username="wlb_admin" wlb_enabled="true" ha_statefiles="("OpaqueRef:11dd4ee0-6111-eafb-d2e5-71873f140c33")" wlb_verify_cert="false" ha_plan_exists_for="1" default_SR="OpaqueRef:NULL" uuid="ba987d6c-d229-e939-95d6-009fde2543ff" other_config="()" crash_dump_SR="OpaqueRef:NULL" suspend_image_SR="OpaqueRef:NULL" gui_config="()" ha_overcommitted="false" ha_allow_overcommit="false" ha_host_failures_to_tolerate="1" name_description="" name_label="XenApp Farm" />
|
||||
</table>
|
||||
<table name="host">
|
||||
<row ref="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" API_version__major="2" tags="()" external_auth_type="" sched_policy="credit" API_version__vendor_implementation="()" blobs="()" _ref="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" external_auth_service_name="" crash_dump_sr="OpaqueRef:NULL" suspend_image_sr="OpaqueRef:NULL" name__description="" API_version__minor="5" current_operations="()" ha_statefiles="("OpaqueRef:11dd4ee0-6111-eafb-d2e5-71873f140c33")" cpu_configuration="()" address="10.0.0.1" uuid="34d048ea-5a31-4325-898e-0e35e8b77e89" supported_bootloaders="('pygrub' 'eliloader')" logging="()" other_config="(('agent_start_time' '1241613524.') ('boot_time' '1241085952.') ('MAINTENANCE_MODE_EVACUATED_VMS' '') ('iscsi_iqn' 'iqn.2009-06.com.xensource.uk:4e7a4730'))" API_version__vendor="XenSource" name__label="incubus" enabled="true" license_params="(('sku_type' 'XE Enterprise') ('version' '5.0.0') ('serialnumber' 'cbc0b0d4-d961-cf8f-0558-5fedde2caf9e') ('sockets' '2') ('productcode' 'f3a6-a3c0-ed16-c709-b055-8789') ('expiry' '20100131T00:00:00Z') ('name' 'Citrix XenServer Sample License') ('company' '') ('address1' '') ('address2' '') ('city' '') ('state' '') ('postalcode' '') ('country' '') ('sku_marketing_name' 'Citrix Essentials for XenServer') ('restrict_connection' 'false') ('restrict_pooling' 'false') ('restrict_qos' 'false') ('restrict_pool_attached_storage' 'false') ('restrict_netapp' 'false') ('restrict_equalogic' 'false') ('restrict_vlan' 'false') ('enable_xha' 'true') ('restrict_marathon' 'false') ('platform_filter' 'false') ('restrict_email_alerting' 'false') ('restrict_historical_performance' 'false') ('regular_nag_dialog' 'false'))" external_auth_configuration="()" hostname="incubus" software_version="(('product_version' '5.5.0') ('product_brand' 'George') ('build_number' '99999') ('hg_id' 'abc450a18a63+') ('hostname' 'eli') ('date' '2009-05-06') ('xapi' '1.3') ('xen' '3.3.1') ('linux' '2.6.18-128.1.6.el5.xs5.5.0.490.1008xen') ('xencenter_min' '1.6') ('xencenter_max' '1.6') ('package-linux' 'installed'))" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" ha_network_peers="("34d048ea-5a31-4325-898e-0e35e8b77e89" "34d048ea-5a31-4325-898e-0e35e8b77e99")" boot_free_mem="3534888960" capabilities="('xen-3.0-x86_64' 'xen-3.0-x86_32p' 'hvm-3.0-x86_32' 'hvm-3.0-x86_32p' 'hvm-3.0-x86_64' '')" allowed_operations="('vm_migrate' 'evacuate' 'provision' 'vm_resume' 'vm_start')" />
|
||||
<row ref="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" API_version__major="2" tags="()" external_auth_type="" sched_policy="credit" API_version__vendor_implementation="()" blobs="()" _ref="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429421fc" external_auth_service_name="" crash_dump_sr="OpaqueRef:NULL" suspend_image_sr="OpaqueRef:NULL" name__description="" API_version__minor="5" current_operations="()" ha_statefiles="("OpaqueRef:11dd4ee0-6111-eafb-d2e5-71873f140c33")" cpu_configuration="()" address="10.0.0.1" uuid="34d048ea-5a31-4325-898e-0e35e8b77e99" supported_bootloaders="('pygrub' 'eliloader')" logging="()" other_config="(('agent_start_time' '1241613524.') ('boot_time' '1241085952.') ('MAINTENANCE_MODE_EVACUATED_VMS' '') ('iscsi_iqn' 'iqn.2009-06.com.xensource.uk:4e7a4730'))" API_version__vendor="XenSource" name__label="inflames" enabled="true" license_params="(('sku_type' 'XE Enterprise') ('version' '5.0.0') ('serialnumber' 'cbc0b0d4-d961-cf8f-0558-5fedde2caf9e') ('sockets' '2') ('productcode' 'f3a6-a3c0-ed16-c709-b055-8789') ('expiry' '20100131T00:00:00Z') ('name' 'Citrix XenServer Sample License') ('company' '') ('address1' '') ('address2' '') ('city' '') ('state' '') ('postalcode' '') ('country' '') ('sku_marketing_name' 'Citrix Essentials for XenServer') ('restrict_connection' 'false') ('restrict_pooling' 'false') ('restrict_qos' 'false') ('restrict_pool_attached_storage' 'false') ('restrict_netapp' 'false') ('restrict_equalogic' 'false') ('restrict_vlan' 'false') ('enable_xha' 'true') ('restrict_marathon' 'false') ('platform_filter' 'false') ('restrict_email_alerting' 'false') ('restrict_historical_performance' 'false') ('regular_nag_dialog' 'false'))" external_auth_configuration="()" hostname="inflames" software_version="(('product_version' '5.5.0') ('product_brand' 'George') ('build_number' '99999') ('hg_id' 'abc450a18a63+') ('hostname' 'eli') ('date' '2009-05-06') ('xapi' '1.3') ('xen' '3.3.1') ('linux' '2.6.18-128.1.6.el5.xs5.5.0.490.1008xen') ('xencenter_min' '1.6') ('xencenter_max' '1.6') ('package-linux' 'installed'))" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" ha_network_peers="("34d048ea-5a31-4325-898e-0e35e8b77e89" "34d048ea-5a31-4325-898e-0e35e8b77e99")" boot_free_mem="3534888960" capabilities="('xen-3.0-x86_64' 'xen-3.0-x86_32p' 'hvm-3.0-x86_32' 'hvm-3.0-x86_32p' 'hvm-3.0-x86_64' '')" allowed_operations="('vm_migrate' 'evacuate' 'provision' 'vm_resume' 'vm_start')" />
|
||||
</table>
|
||||
<table name="host_metrics" />
|
||||
<table name="VM">
|
||||
<row ref="OpaqueRef:33d383f6-1c59-4d59-9d4b-982f835ad771" _ref="OpaqueRef:33d383f6-1c59-4d59-9d4b-982f835ad771" uuid="33d383f6-1c59-4d59-9d4b-982f835ad771" name__label="XenApp 1" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Normal load")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:e9e1da05-bd1d-4a42-9ca4-edc994684cea" _ref="OpaqueRef:e9e1da05-bd1d-4a42-9ca4-edc994684cea" uuid="e9e1da05-bd1d-4a42-9ca4-edc994684cea" name__label="XenApp 2" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Normal load")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:736ab106-0460-4dbf-810d-d00b13c86244" _ref="OpaqueRef:736ab106-0460-4dbf-810d-d00b13c86244" uuid="736ab106-0460-4dbf-810d-d00b13c86244" name__label="XenApp 3" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Normal load")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:26f6e64e-ee26-47df-843c-8b6d6e229e1c" _ref="OpaqueRef:26f6e64e-ee26-47df-843c-8b6d6e229e1c" uuid="26f6e64e-ee26-47df-843c-8b6d6e229e1c" name__label="XenApp 4" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Normal load")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:b8fe6353-56ab-4824-81ba-112fdb38d36f" _ref="OpaqueRef:b8fe6353-56ab-4824-81ba-112fdb38d36f" uuid="b8fe6353-56ab-4824-81ba-112fdb38d36f" name__label="XenApp 5" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Peak load")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:be7b9385-b32a-4c55-8df0-b3ce476be92c" _ref="OpaqueRef:be7b9385-b32a-4c55-8df0-b3ce476be92c" uuid="be7b9385-b32a-4c55-8df0-b3ce476be92c" name__label="XenApp 6" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Peak load")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:aee945bc-63fd-4611-8378-668441e34846" _ref="OpaqueRef:aee945bc-63fd-4611-8378-668441e34846" uuid="aee945bc-63fd-4611-8378-668441e34846" name__label="XenApp 7" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Suspended" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Hot spare")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:8c4c11b0-0b8a-4389-abe4-2848aeacc55d" _ref="OpaqueRef:8c4c11b0-0b8a-4389-abe4-2848aeacc55d" uuid="8c4c11b0-0b8a-4389-abe4-2848aeacc55d" name__label="XenApp 8" name__description="XenApp / Windows 2008 32 bit" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:NULL" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="()" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Suspended" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:NULL" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="("Hot spare")" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
<row ref="OpaqueRef:abd7ff91-cecf-4978-88a9-dcb002891669" _ref="OpaqueRef:abd7ff91-cecf-4978-88a9-dcb002891669" uuid="abd7ff91-cecf-4978-88a9-dcb002891669" name__label="NetBackup 2" name__description="" affinity="OpaqueRef:NULL" guest_metrics="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" metrics="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" scheduled_to_be_resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" suspend_VDI="OpaqueRef:NULL" is_a_template="false" is_a_snapshot="false" is_control_domain="false" HVM__boot_params="(("order" "dc"))" HVM__boot_policy="BIOS order" HVM__shadow_multiplier="1" PV__args="" PV__bootloader="" PV__bootloader_args="" PV__kernel="" PV__legacy_args="" PV__ramdisk="" memory__dynamic_min="536870912" memory__dynamic_max="536870912" memory__static_max="536870912" memory__static_min="16777216" memory__target="268435456" actions__after_shutdown="destroy" actions__after_crash="restart" actions__after_reboot="restart" allowed_operations="("snapshot" "copy" "clone" "export" "provision")" blobs="()" blocked_operations="()" current_operations="()" domarch="" domid="-1" ha_always_run="false" ha_restart_priority="" last_boot_CPU_flags="()" last_booted_record="" other_config="(("folder" "/infrastructure/backup"))" platform="(("nx" "true") ("acpi" "true") ("apic" "true") ("pae" "true") ("viridian" "true"))" power_state="Running" PCI_bus="" recommendations="<restrictions><restriction field="memory-static-max" max="34359738368" /><restriction field="vcpus-max" max="8" /><restriction property="number-of-vbds" max="7" /><restriction property="number-of-vifs" max="7" /></restrictions>" resident_on="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" snapshot_of="OpaqueRef:NULL" snapshot_time="19700101T00:00:00Z" transportable_snapshot_id="" tags="()" user_version="1" VCPUs__at_startup="1" VCPUs__max="1" VCPUs__params="()" xenstore_data="()" />
|
||||
</table>
|
||||
<table name="VM_guest_metrics">
|
||||
<row ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51" disks="()" last_updated="20090506T12:45:12Z" PV_drivers_version="(('major' '5') ('minor' '5') ('micro' '0') ('build' '14066'))" other_config="()" os_version="" uuid="de86726b-2e8d-0441-8628-1b8f4a1c3e1e" other="" PV_drivers_up_to_date="true" networks="" memory="()" live="true" _ref="OpaqueRef:82982a7f-1a56-9491-45f0-6e221e4edc51"/>
|
||||
</table>
|
||||
<table name="VM_metrics">
|
||||
<row ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2" last_updated="20090506T12:45:12Z" VCPUs__number="0" other_config="()" VCPUs__flags="()" uuid="28a7bd58-d06b-fc5a-ab80-b31eff17820f" start_time="20090506T12:45:12Z" VCPUs__CPU="()" VCPUs__params="()" VCPUs__utilisation="()" install_time="20090506T12:45:12Z" memory__actual="536870912" state="()" _ref="OpaqueRef:5b4b36d2-422e-8649-7a72-3b67bf3fa9b2"/>
|
||||
</table>
|
||||
<table name="VDI">
|
||||
<row ref="OpaqueRef:11dd4ee0-6111-eafb-d2e5-71873f140c33" missing="false" snapshot_of="OpaqueRef:NULL" other_config="()" location="ae19c023-0e2a-4f3a-a9ca-58d80c81b2e6" sharable="true" uuid="ae19c023-0e2a-4f3a-a9ca-58d80c81b2e6" storage_lock="false" managed="true" sm_config="()" type="ha_statefile" xenstore_data="()" name__label="Statefile for HA" snapshot_time="19700101T00:00:00Z" is_a_snapshot="false" name__description="Used for storage heartbeating" virtual_size="4194304" read_only="false" tags="()" _ref="OpaqueRef:11dd4ee0-6111-eafb-d2e5-71873f140c33" allowed_operations="("clone" "generate_config")" SR="OpaqueRef:85e9c5aa-af84-f805-04c1-8fd6c962f10a" current_operations="()" parent="OpaqueRef:NULL" physical_utilisation="4194304" />
|
||||
</table>
|
||||
<table name="SR">
|
||||
<row ref="OpaqueRef:e8e2718d-2a91-0714-2611-bb58982a8e80" name__label="DVD drives" virtual_allocation="1073741312" default_vdi_visibility="true" uuid="fdb192f6-dacc-9219-1ffc-fbde9ab4f899" current_operations="()" physical_utilisation="1073741312" content_type="iso" shared="false" sm_config="(("type" "cd"))" blobs="()" _ref="OpaqueRef:e8e2718d-2a91-0714-2611-bb58982a8e80" name__description="Physical DVD drives" allowed_operations="("forget" "vdi_introduce" "plug" "update" "destroy" "scan" "vdi_clone" "unplug")" physical_size="1073741312" tags="()" type="udev" other_config="(("i18n-original-value-name_description" "Physical DVD drives") ("i18n-original-value-name_label" "DVD drives") ("i18n-key" "local-hotplug-cd"))"/>
|
||||
<row ref="OpaqueRef:c2eef925-5648-7ae7-dc09-afd417f0bb6b" name__label="Removable storage" virtual_allocation="0" default_vdi_visibility="true" uuid="4654ace6-46b7-9c2f-a375-e091610681fb" current_operations="()" physical_utilisation="0" content_type="disk" shared="false" sm_config="(("type" "block"))" blobs="()" _ref="OpaqueRef:c2eef925-5648-7ae7-dc09-afd417f0bb6b" name__description="" allowed_operations="("forget" "vdi_introduce" "plug" "update" "destroy" "scan" "vdi_clone" "unplug")" physical_size="0" tags="()" type="udev" other_config="(("i18n-original-value-name_label" "Removable storage") ("i18n-key" "local-hotplug-disk"))"/>
|
||||
<row ref="OpaqueRef:9971219e-b56f-fc8a-6b89-37cd7945e89b" name__label="Local storage" virtual_allocation="0" default_vdi_visibility="true" uuid="2cf6a28c-6850-d4b0-6af5-600fa5dae51f" current_operations="()" physical_utilisation="0" content_type="user" shared="false" sm_config="(("use_vhd" "true") ("devserial" "scsi-SATA_SAMSUNG_SP0812CS01UJ20Y547340_"))" blobs="()" _ref="OpaqueRef:9971219e-b56f-fc8a-6b89-37cd7945e89b" name__description="" allowed_operations="("forget" "vdi_create" "plug" "destroy" "vdi_destroy" "scan" "vdi_clone" "vdi_resize" "unplug")" physical_size="70791462912" tags="()" type="lvm" other_config="(("i18n-original-value-name_label" "Local storage") ("i18n-key" "local-storage"))"/>
|
||||
<row ref="OpaqueRef:c78d226c-dc31-3fe3-f4a3-beb3df451cee" name__label="Local storage" virtual_allocation="0" default_vdi_visibility="true" uuid="920cd935-ca89-0d69-d377-c23db33e3cb4" current_operations="()" physical_utilisation="0" content_type="user" shared="false" sm_config="(("use_vhd" "true") ("devserial" "scsi-SATA_HDS728080PLA380_PFDBU0ELR700KX"))" blobs="()" _ref="OpaqueRef:c78d226c-dc31-3fe3-f4a3-beb3df451cee" name__description="" allowed_operations="("forget" "vdi_create" "plug" "destroy" "vdi_destroy" "scan" "vdi_clone" "vdi_resize" "unplug")" physical_size="73077358592" tags="()" type="lvm" other_config="(("i18n-original-value-name_label" "Local storage") ("i18n-key" "local-storage"))"/>
|
||||
<row ref="OpaqueRef:85e9c5aa-af84-f805-04c1-8fd6c962f10a" name__label="iSCSI virtual disk storage" virtual_allocation="272629760" default_vdi_visibility="true" uuid="15d6e02e-5dae-8748-9d07-765683ee55e5" current_operations="()" physical_utilisation="272629760" content_type="" shared="true" sm_config="(("use_vhd" "true") ("devserial" "scsi-1494554000000000000000000010000008518000010000000") ("multipathable" "true"))" blobs="()" _ref="OpaqueRef:85e9c5aa-af84-f805-04c1-8fd6c962f10a" name__description="iSCSI SR [172.16.14.176 (iqn.one:oneofone)]" allowed_operations="("forget" "vdi_create" "plug" "destroy" "vdi_destroy" "scan" "vdi_clone" "vdi_resize" "unplug")" physical_size="19314769920" tags="()" type="lvmoiscsi" other_config="(("auto-scan" "false"))"/>
|
||||
<row ref="OpaqueRef:d884e1b6-f341-11fc-a84d-17a82a72b527" name__label="DVD drives" virtual_allocation="1073741312" default_vdi_visibility="true" uuid="2d11bca0-c7c8-2b9f-3e55-c09f838f4c84" current_operations="()" physical_utilisation="1073741312" content_type="iso" shared="false" sm_config="(("type" "cd"))" blobs="()" _ref="OpaqueRef:d884e1b6-f341-11fc-a84d-17a82a72b527" name__description="Physical DVD drives" allowed_operations="("forget" "vdi_introduce" "plug" "update" "destroy" "scan" "vdi_clone" "unplug")" physical_size="1073741312" tags="()" type="udev" other_config="(("i18n-original-value-name_description" "Physical DVD drives") ("i18n-original-value-name_label" "DVD drives") ("i18n-key" "local-hotplug-cd"))"/>
|
||||
<row ref="OpaqueRef:d26c4ce6-5738-be20-21ec-8968a3579dd0" name__label="Removable storage" virtual_allocation="0" default_vdi_visibility="true" uuid="9002f52d-4261-ffd0-1638-cd11c61d62cf" current_operations="()" physical_utilisation="0" content_type="disk" shared="false" sm_config="(("type" "block"))" blobs="()" _ref="OpaqueRef:d26c4ce6-5738-be20-21ec-8968a3579dd0" name__description="" allowed_operations="("forget" "vdi_introduce" "plug" "update" "destroy" "scan" "vdi_clone" "unplug")" physical_size="0" tags="()" type="udev" other_config="(("i18n-original-value-name_label" "Removable storage") ("i18n-key" "local-hotplug-disk"))"/>
|
||||
<row ref="OpaqueRef:845403df-070a-104f-7dc7-cd5725f9ec55" name__label="XenServer Tools" virtual_allocation="0" default_vdi_visibility="true" uuid="b6274885-88fe-5c1b-506e-27bac280d7d9" current_operations="()" physical_utilisation="-1" content_type="iso" shared="true" sm_config="()" blobs="()" _ref="OpaqueRef:845403df-070a-104f-7dc7-cd5725f9ec55" name__description="XenServer Tools ISOs" allowed_operations="("forget" "plug" "destroy" "scan" "vdi_clone" "unplug")" physical_size="-1" tags="()" type="iso" other_config="(("xensource_internal" "true") ("xenserver_tools_sr" "true") ("i18n-key" "xenserver-tools") ("i18n-original-value-name_label" "XenServer Tools") ("i18n-original-value-name_description" "XenServer Tools ISOs"))"/>
|
||||
</table>
|
||||
<table name="PBD">
|
||||
<row ref="OpaqueRef:fa49fa4c-4f6d-12f4-5463-3306e7059533" device_config="(("location" "/dev/xapi/block"))" uuid="195b62e5-07a0-751e-8c2a-73bc6af70fa6" _ref="OpaqueRef:fa49fa4c-4f6d-12f4-5463-3306e7059533" host="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:d26c4ce6-5738-be20-21ec-8968a3579dd0"/>
|
||||
<row ref="OpaqueRef:640c5682-42f0-013b-222a-a96557099dfd" device_config="(("device" "/dev/disk/by-id/scsi-SATA_HDS728080PLA380_PFDBU0ELR700KX-part8"))" uuid="5d582bad-a1cd-5604-3ecb-c007e36acf7d" _ref="OpaqueRef:640c5682-42f0-013b-222a-a96557099dfd" host="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:c78d226c-dc31-3fe3-f4a3-beb3df451cee"/>
|
||||
<row ref="OpaqueRef:2852647a-8842-a3de-f268-84c5db6c8f3a" device_config="(("location" "/dev/xapi/cd"))" uuid="87b75d44-99b9-c36b-9c9b-074aee2798f0" _ref="OpaqueRef:2852647a-8842-a3de-f268-84c5db6c8f3a" host="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:d884e1b6-f341-11fc-a84d-17a82a72b527"/>
|
||||
<row ref="OpaqueRef:11d1bb16-aaba-4149-bac4-fdf280b4e75b" device_config="(("port" "3260") ("target" "172.16.14.176") ("SCSIid" "1494554000000000000000000010000008518000010000000") ("targetIQN" "iqn.one:oneofone"))" uuid="03d78502-47d7-f17c-a938-1a24d9c703fa" _ref="OpaqueRef:11d1bb16-aaba-4149-bac4-fdf280b4e75b" host="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:85e9c5aa-af84-f805-04c1-8fd6c962f10a"/>
|
||||
<row ref="OpaqueRef:80e641bf-057e-dd65-eecd-29f48b1d04a0" device_config="(("location" "/dev/xapi/block"))" uuid="cf4dba6d-7c61-702f-7513-8a59db4db127" _ref="OpaqueRef:80e641bf-057e-dd65-eecd-29f48b1d04a0" host="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:c2eef925-5648-7ae7-dc09-afd417f0bb6b"/>
|
||||
<row ref="OpaqueRef:a95929c1-f756-a596-a4c0-f2b418291361" device_config="(("location" "/opt/xensource/packages/iso") ("legacy_mode" "true"))" uuid="2974c6fa-9c2c-0b8d-f923-de1efdd0e35e" _ref="OpaqueRef:a95929c1-f756-a596-a4c0-f2b418291361" host="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:845403df-070a-104f-7dc7-cd5725f9ec55"/>
|
||||
<row ref="OpaqueRef:40237ba7-7217-c9c6-544d-0e4438516c34" device_config="(("location" "/dev/xapi/cd"))" uuid="24329fa5-67b7-f1b1-196f-ca1d5cc6588c" _ref="OpaqueRef:40237ba7-7217-c9c6-544d-0e4438516c34" host="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:e8e2718d-2a91-0714-2611-bb58982a8e80"/>
|
||||
<row ref="OpaqueRef:dcffc063-5445-3e54-3899-b1745b7dbe95" device_config="(("location" "/opt/xensource/packages/iso") ("legacy_mode" "true"))" uuid="c82641ca-1340-db69-85d9-4201596ec178" _ref="OpaqueRef:dcffc063-5445-3e54-3899-b1745b7dbe95" host="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:845403df-070a-104f-7dc7-cd5725f9ec55"/>
|
||||
<row ref="OpaqueRef:7989091f-0a2a-73fd-3bf6-ed4e18193478" device_config="(("port" "3260") ("target" "172.16.14.176") ("SCSIid" "1494554000000000000000000010000008518000010000000") ("targetIQN" "iqn.one:oneofone"))" uuid="dedef853-4062-c32f-d81c-5bd1ca07be8d" _ref="OpaqueRef:7989091f-0a2a-73fd-3bf6-ed4e18193478" host="OpaqueRef:95de2421-c5ef-26ee-0eff-63f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:85e9c5aa-af84-f805-04c1-8fd6c962f10a"/>
|
||||
<row ref="OpaqueRef:f77d4b05-0aab-6abb-a1d4-0a355df9b912" device_config="(("device" "/dev/disk/by-id/scsi-SATA_SAMSUNG_SP0812CS01UJ20Y547340-part8"))" uuid="0607f7d9-c555-2a52-2185-51030ae32d7c" _ref="OpaqueRef:f77d4b05-0aab-6abb-a1d4-0a355df9b912" host="OpaqueRef:95de2421-c5ef-26ee-0eff-73f3429521fc" currently_attached="true" other_config="()" SR="OpaqueRef:9971219e-b56f-fc8a-6b89-37cd7945e89b"/></table>
|
||||
</database>
|
@ -4107,7 +4107,6 @@
|
||||
<Compile Include="TabPages\WlbPage.Designer.cs">
|
||||
<DependentUpon>WlbPage.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="TestResources\TestResource.cs" />
|
||||
<Compile Include="UpdateManager.cs" />
|
||||
<Compile Include="UpdateManager.DelayCalculator.cs">
|
||||
<SubType>Code</SubType>
|
||||
@ -6697,21 +6696,9 @@
|
||||
<DependentUpon>WorkloadReports.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<None Include="Images\VMTemplate_h32bit_32.png" />
|
||||
<Content Include="TestResources\credits.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="TestResources\console.png">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="TestResources\interesting-development.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="TestResources\interesting-production.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="TestResources\interesting-xenapp.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<None Include="..\Branding\Images\wizard_background.png">
|
||||
<Link>Images\wizard_background.png</Link>
|
||||
</None>
|
||||
|
Loading…
Reference in New Issue
Block a user