Libvirt Functions
PHP Manual

libvirt_get_active_domain_count

(php-libvirt 0.1)

libvirt_get_active_domain_countGet the number of active domains.

Description

integer libvirt_get_active_domain_count ( resource $connection )

Provides the number of active domains.

Parameters

connection

Connection resource of hypervisor.

Return Values

Number of active domains.

Examples

Example #1 libvirt_get_domain_count(),libvirt_get_active_domain_count() and libvirt_get_inactive_domain_count() example

Get count of all, active and inactive domains.

<?php

    
echo ("Domain count: Active ".libvirt_get_active_domain_count($conn).",Inactive ".libvirt_get_inactive_domain_count($conn).", Total ".libvirt_get_domain_count($conn)."\n");

?>

The above example will output something similar to:

Domain count: Active 1,Inactive 6, Total 7

See Also


Libvirt Functions
PHP Manual