Bug 1041181 - [RFE][nova]: Migration history extenstion
Summary: [RFE][nova]: Migration history extenstion
Keywords:
Status: CLOSED UPSTREAM
Alias: None
Product: Red Hat OpenStack
Classification: Red Hat
Component: RFEs
Version: unspecified
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
: ---
Assignee: RHOS Maint
QA Contact:
URL: https://blueprints.launchpad.net/nova...
Whiteboard: upstream_milestone_none upstream_stat...
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-12-12 13:52 UTC by RHOS Integration
Modified: 2015-03-19 17:19 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Enhancement
Doc Text:
Clone Of:
Environment:
Last Closed: 2015-03-19 17:19:35 UTC
Target Upstream Version:


Attachments (Terms of Use)

Description RHOS Integration 2013-12-12 13:52:04 UTC
Cloned from launchpad blueprint https://blueprints.launchpad.net/nova/+spec/bp-migration-history-ext.

Description:

Add a extension to list migration history for instances.

Admins are frequently in need of reviewing migration history for instances for various
purposes. There is currently no clean way to do this. This purposes to add an extension
to access this information through the openstack API, so that we dont have to go to the
db to get this info.

Usage:
GET on
/v2/<project_id>/servers/<server_uuid>/os-migration-history 

to get migration history for the instance <server_uuid> in the form:
{
	    "migrations": [
	        {
	            "created_at": "2013-03-25 01:00:00.000000",
	            "dest_compute": "compute-2",
	            "id": "1",
	            "instance_uuid": "00000000-0000-0000-0000-000000000001",
	            "new_instance_type_id": "2",
	            "old_instance_type_id": "1",
	            "source_compute": "compute-1",
	            "status": "confirmed",
	            "updated_at": "2013-03-25 01:20:00.000000"
	        }
	    ]
	}

Specification URL (additional information):

None


Note You need to log in before you can comment on or make changes to this bug.