Event Notifications

Cisco Enterprise NFVIS generates event notifications for key events. A NETCONF client can subscribe to these notifications for monitoring the progress of configuration activation and the status change of the system and VMs.

There are two types of event notifications: nfvisEvent and vmlcEvent (VM life cycle event)

To receive event notifications automatically, you can run the NETCONF client, and subscribe to these notifications using the following NETCONF operations:

  • --create-subscription=nfvisEvent

  • --create-subscription=vmlcEvent

You can view NFVIS and VM life cycle event notifications using the show notification stream nfvisEvent and show notification stream vmlcEvent commands respectively.

nfvisEvent

Event Type

Notification Trigger

Notification Output Example

WAN_DHCP_RENEW

DHCP renew operation is performed.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2017-04-26T18:06:46.142089+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>NA</user_id>
		<config_change>false</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_code>0</status_code>
		<status_message>Wan DHCP IP address is being renewed</status_message>
		<details>NA</details>
		<event_type>WAN_DHCP_RENEW</event_type>
	</nfvisEvent>
</notification>

INTF_STATUS_CHANGE

Interface status is changed.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2017-04-26T18:12:09.963556+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<event_type>INTF_STATUS_CHANGE</event_type>
		<intf_name>eth7</intf_name>
		<intf_prv_op>up</intf_prv_op>
		<intf_op>down</intf_op>
		<intf_prv_link>down</intf_prv_link>
		<intf_link>down</intf_link>
	</nfvisEvent>
</notification>

NETWORK_CREATE

A network is created.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-09-22T12:41:04.564298+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>admin</user_id>
		<config_change>true</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_message>Network created succesfully</status_message>
		<event_type>NETWORK_CREATE</event_type>
		<network_name>testn1</network_name>
		<network_bridge>test-net-br</network_bridge>
		<network_sriov>false</network_sriov>
		<network_vlan/>
		<network_trunk/>
	</nfvisEvent>
</notification>

NETWORK_UPDATE

A network is updated.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-09-22T12:42:03.391986+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>admin</user_id>
		<config_change>true</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_message>Network updated succesfully</status_message>
		<event_type>NETWORK_UPDATE</event_type>
		<network_name>testn1</network_name>
		<network_bridge/>
		<network_sriov/>
		<network_vlan/>
		<network_trunk/>
	</nfvisEvent>
</notification>

NETWORK_DELETE

A network is deleted.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-09-22T12:42:03.391986+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>admin</user_id>
		<config_change>true</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_message>Network deleted succesfully</status_message>
		<event_type>NETWORK_DELETE</event_type>
		<network_name>testn1</network_name>
		<network_bridge/>
		<network_sriov/>
		<network_vlan/>
		<network_trunk/>
	</nfvisEvent>
</notification>

UPGRADE_REGISTER

System upgrade is registered.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2017-04-26T15:57:50.434636+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>NA</user_id>
		<config_change>true</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_code>0</status_code>
		<status_message>Upgrade package registration successful: Cisco_NFVIS_Upgrade-3.6.1-698-20170402_042811.nfvispkg</status_message>
		<event_type>UPGRADE_REGISTER</event_type>
	</nfvisEvent>
</notification>

UPGRADE_APPLY

System upgrade is applied.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2017-04-26T16:02:43.885516+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>NA</user_id>
		<config_change>true</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_code>0</status_code>
		<status_message>Upgrade Process: In Progress</status_message>
		<event_type>UPGRADE_APPLY</event_type>
	</nfvisEvent>
</notification>

ROTATED_LOGS_DELETE

Rotated logs older than 30 days are deleted by the system.


<?xml version="1.0" encoding="UTF-8"?>
<rpc-reply
	xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
	<ok/>
</rpc-reply>
<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2017-04-26T17:38:10.321152+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>NA</user_id>
		<config_change>true</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_code>0</status_code>
		<status_message>Deleted rotated logs from archive older than 30 days</status_message>
		<details>NA</details>
		<event_type>ROTATED_LOGS_DELETE</event_type>
	</nfvisEvent>
</notification>

ROTATED_LOGS_DELETE

Older logs deleted by the system when the total file size of rotated logs exceeds 2GB.


<?xml version="1.0" encoding="UTF-8"?>
<rpc-reply
	xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1">
	<ok/>
</rpc-reply>
<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2017-04-26T17:42:10.321152+00:00</eventTime>
	<nfvisEvent
		xmlns="http://www.cisco.com/nfvis/notifier">
		<user_id>NA</user_id>
		<config_change>true</config_change>
		<transaction_id>0</transaction_id>
		<status>SUCCESS</status>
		<status_code>0</status_code>
		<status_message>Rotated logs had exceeded 2G, older logs have been deleted to make space</status_message>
		<details>NA</details>
		<event_type>ROTATED_LOGS_DELETE</event_type>
	</nfvisEvent>
</notification>

vmlcEvent

Event Type

Notification Trigger

Notification Output Example

CREATE_IMAGE

The VM image is registered.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:12:30.76+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Image creation completed successfully.</status_message>
		<image>isrv-universalk9.16.03.01.tar.gz</image>
		<vm_source></vm_source>
		<vm_target></vm_target>
		<event>
			<type>CREATE_IMAGE</type>
		</event>
	</vmlcEvent>
</notification>

DELETE_IMAGE

The VM image is unregistered.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:14:51.169+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Image deletion completed successfully.</status_message>
		<image>isrv-universalk9.16.03.01.tar.gz</image>
		<vm_source></vm_source>
		<vm_target></vm_target>
		<event>
			<type>DELETE_IMAGE</type>
		</event>
	</vmlcEvent>
</notification>

CREATE_FLAVOR

A flavor is created.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:12:29.685+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Flavor creation completed successfully.</status_message>
		<flavor>ISRv-small</flavor>
		<vm_source></vm_source>
		<vm_target></vm_target>
		<event>
			<type>CREATE_FLAVOR</type>
		</event>
	</vmlcEvent>
</notification>

DELETE_FLAVOR

A flavor is deleted.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:14:51.425+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Flavor deletion completed successfully.</status_message>
		<flavor>ISRv-small</flavor>
		<vm_source></vm_source>
		<vm_target></vm_target>
		<event>
			<type>DELETE_FLAVOR</type>
		</event>
	</vmlcEvent>
</notification>

VM_DEPLOYED

The VM is deployed.

<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:19:16.927+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>VIM Driver: VM successfully created, VM Name: [SystemAdminTena_ROUTER_0_df6733c1-0768-4ae6-8dce-b223ecdb036c]</status_message>
		<depname>1479341445</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<depid>c64d79db-3a29-41a8-8114-c80d42731a5b</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>d18dd252-80c8-44f2-ab66-d4481790bb79</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
			<interfaces>
				<interface>
					<nicid>0</nicid>
					<port_id>vnet0</port_id>
					<network>int-mgmt-net</network>
					<subnet>N/A</subnet>
					<ip_address>10.20.0.2</ip_address>
					<mac_address>52:54:00:31:c5:7f</mac_address>
					<netmask>255.255.255.0</netmask>
					<gateway>10.20.0.1</gateway>
				</interface>
				<interface>
					<nicid>1</nicid>
					<port_id>vnet1</port_id>
					<network>wan-net</network>
					<subnet>N/A</subnet>
					<mac_address>52:54:00:59:52:41</mac_address>
					<netmask>255.255.255.0</netmask>
					<gateway>172.19.181.152</gateway>
				</interface>
			</interfaces>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_DEPLOYED</type>
		</event>
	</vmlcEvent>
</notification>

VM_ALIVE

The state of a monitored VM becomes ACTIVE.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:22:47.306+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>VM_Alive event received, VM ID: [SystemAdminTena_ROUTER_0_df6733c1-0768-4ae6-8dce-b223ecdb036c]</status_message>
		<depname>1479341445</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<depid>c64d79db-3a29-41a8-8114-c80d42731a5b</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>d18dd252-80c8-44f2-ab66-d4481790bb79</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
			<interfaces>
				<interface>
					<nicid>0</nicid>
					<port_id>vnet0</port_id>
					<network>int-mgmt-net</network>
					<subnet>N/A</subnet>
					<ip_address>10.20.0.2</ip_address>
					<mac_address>52:54:00:31:c5:7f</mac_address>
					<netmask>255.255.255.0</netmask>
					<gateway>10.20.0.1</gateway>
				</interface>
				<interface>
					<nicid>1</nicid>
					<port_id>vnet1</port_id>
					<network>wan-net</network>
					<subnet>N/A</subnet>
					<mac_address>52:54:00:59:52:41</mac_address>
					<netmask>255.255.255.0</netmask>
					<gateway>172.19.181.152</gateway>
				</interface>
			</interfaces>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_ALIVE</type>
		</event>
	</vmlcEvent>
</notification>

VM_UNDEPLOYED

The VM is undeployed.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:31:40.6+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>204</status_code>
		<status_message>VIM Driver: VM successfully deleted</status_message>
		<depname>1479341445</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<depid>c64d79db-3a29-41a8-8114-c80d42731a5b</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>d18dd252-80c8-44f2-ab66-d4481790bb79</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
			<interfaces>
				<interface>
					<nicid>0</nicid>
					<port_id>vnet0</port_id>
					<network>int-mgmt-net</network>
					<subnet>N/A</subnet>
					<ip_address>10.20.0.2</ip_address>
					<mac_address>52:54:00:31:c5:7f</mac_address>
					<netmask>255.255.255.0</netmask>
					<gateway>10.20.0.1</gateway>
				</interface>
				<interface>
					<nicid>1</nicid>
					<port_id>vnet1</port_id>
					<network>wan-net</network>
					<subnet>N/A</subnet>
					<mac_address>52:54:00:59:52:41</mac_address>
					<netmask>255.255.255.0</netmask>
					<gateway>172.19.181.152</gateway>
				</interface>
			</interfaces>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_UNDEPLOYED</type>
		</event>
	</vmlcEvent>
</notification>

SERVICE_UPDATED

The VM is updated.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:51:45.5+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Service group update completed successfully</status_message>
		<depname>1479342258</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<depid>827e871a-30d5-4f5f-a05a-263b7ee3a734</depid>
		<vm_source></vm_source>
		<vm_target></vm_target>
		<event>
			<type>SERVICE_UPDATED</type>
		</event>
	</vmlcEvent>
</notification>

VM_STOPPED

The VM is stopped per VM action requrest.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:26:05.762+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Successfully stopped VM [SystemAdminTena_ROUTER_0_df6733c1-0768-4ae6-8dce-b223ecdb036c].</status_message>
		<depname>1479341445</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<svcid>NULL</svcid>
		<depid>c64d79db-3a29-41a8-8114-c80d42731a5b</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>d18dd252-80c8-44f2-ab66-d4481790bb79</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_STOPPED</type>
		</event>
	</vmlcEvent>
</notification>

VM_STARTED

The VM is started per VM action request.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:26:40.398+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Started VM [SystemAdminTena_ROUTER_0_df6733c1-0768-4ae6-8dce-b223ecdb036c].</status_message>
		<depname>1479341445</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<svcid>NULL</svcid>
		<depid>c64d79db-3a29-41a8-8114-c80d42731a5b</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>d18dd252-80c8-44f2-ab66-d4481790bb79</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_STARTED</type>
		</event>
	</vmlcEvent>
</notification>

VM_REBOOTED

The VM is rebooted per VM action request.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T17:36:56.5+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Rebooted VM [SystemAdminTena_ROUTER_0_f17fc494-8535-4b05-b88d-f0fd2effdc7d]</status_message>
		<depname>1479342258</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<svcid>NULL</svcid>
		<depid>827e871a-30d5-4f5f-a05a-263b7ee3a734</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>d918a3b1-f2a9-4065-9d8e-2135b0a37d87</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_REBOOTED</type>
		</event>
	</vmlcEvent>
</notification>

VM_RECOVERY_INIT

A monitored VM is not reachable.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T16:27:51.627+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Recovery event for VM [SystemAdminTena_ROUTER_0_40ae18be-5930-4d94-95ff-dbb0b56ef12b] trigge
red. Processing Auto healing. Proceeding with Recovery.</status_message>
		<depname>1479328919</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<svcid>NULL</svcid>
		<depid>9e7fe4f8-a5f4-4a6d-aad7-121405be4ba4</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>000883fc-77f3-4b9e-aaf6-0f31d88a8f67</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_RECOVERY_INIT</type>
		</event>
	</vmlcEvent>
</notification>

VM_RECOVERY_REBOOT

Recovery reboot starts for the monitored VM, which is not reachable.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T16:27:53.979+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>VM [SystemAdminTena_ROUTER_0_40ae18be-5930-4d94-95ff-dbb0b56ef12b] is being rebooted.
		</statu
s_message>
		<depname>1479328919</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<svcid>NULL</svcid>
		<depid>9e7fe4f8-a5f4-4a6d-aad7-121405be4ba4</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>000883fc-77f3-4b9e-aaf6-0f31d88a8f67</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_RECOVERY_REBOOT</type>
		</event>
	</vmlcEvent>
</notification>

VM_RECOVERY_COMPLETE

Recovery reboot completes for the monitored VM, which is not reachable.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-17T16:31:26.934+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Successfully recovered VM [SystemAdminTena_ROUTER_0_40ae18be-5930-4d94-95ff-dbb0b56ef12b].<
status_message>
			<depname>1479328919</depname>
			<tenant>admin</tenant>
			<tenant_id>AdminTenantId</tenant_id>
			<svcid>NULL</svcid>
			<depid>9e7fe4f8-a5f4-4a6d-aad7-121405be4ba4</depid>
			<vm_group>ROUTER</vm_group>
			<vm_source>
				<vmid>000883fc-77f3-4b9e-aaf6-0f31d88a8f67</vmid>
				<hostid>NFVIS</hostid>
				<hostname>NFVIS</hostname>
			</vm_source>
			<vm_target>
				<vmid>000883fc-77f3-4b9e-aaf6-0f31d88a8f67</vmid>
				<hostid>NFVIS</hostid>
				<hostname>NFVIS</hostname>
				<interfaces>
					<interface>
						<nicid>0</nicid>
						<port_id>vnet0</port_id>
						<network>int-mgmt-net</network>
						<subnet>N/A</subnet>
						<ip_address>10.20.0.2</ip_address>
						<mac_address>52:54:00:7b:3f:de</mac_address>
						<netmask>255.255.255.0</netmask>
						<gateway>10.20.0.1</gateway>
					</interface>
					<interface>
						<nicid>1</nicid>
						<port_id>vnet1</port_id>
						<network>wan-net</network>
						<subnet>N/A</subnet>
						<mac_address>52:54:00:96:8a:4d</mac_address>
						<netmask>255.255.255.0</netmask>
						<gateway>172.19.181.152</gateway>
					</interface>
				</interfaces>
			</vm_target>
			<event>
				<type>VM_RECOVERY_COMPLETE</type>
			</event>
		</vmlcEvent>
	</notification>

VM_MONITOR_UNSET

Monitoring is disabled per VM action request.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-18T13:36:43.613+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Unset monitor completed successfully</status_message>
		<depname>1479413090</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<svcid>NULL</svcid>
		<depid>742dd335-330c-4bf0-a75d-a44003c645c5</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>23ec3793-37ab-4ec2-a978-a10e08585fdd</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_MONITOR_UNSET</type>
		</event>
	</vmlcEvent>
</notification>

VM_MONITOR_SET

Monitoring is enabled per VM action request.


<?xml version="1.0" encoding="UTF-8"?>
<notification
	xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0">
	<eventTime>2016-11-18T13:40:15.276+00:00</eventTime>
	<vmlcEvent
		xmlns="http://www.cisco.com/nfvis/vm_lifecycle">
		<status>SUCCESS</status>
		<status_code>200</status_code>
		<status_message>Set monitor completed successfully</status_message>
		<depname>1479413090</depname>
		<tenant>admin</tenant>
		<tenant_id>AdminTenantId</tenant_id>
		<svcid>NULL</svcid>
		<depid>742dd335-330c-4bf0-a75d-a44003c645c5</depid>
		<vm_group>ROUTER</vm_group>
		<vm_source>
			<vmid>23ec3793-37ab-4ec2-a978-a10e08585fdd</vmid>
			<hostid>NFVIS</hostid>
			<hostname>NFVIS</hostname>
		</vm_source>
		<vm_target></vm_target>
		<event>
			<type>VM_MONITOR_SET</type>
		</event>
	</vmlcEvent>
</notification>