[ovirt-users] DWH Question

Shirly Radco sradco at redhat.com
Mon Mar 16 12:29:13 UTC 2015


Hi Koen,

I believe you can use this query:

SELECT v3_5_latest_configuration_hosts_interfaces.vlan_id, 
    v3_5_latest_configuration_hosts.host_id,
    v3_5_statistics_vms_resources_usage_samples.vm_id
FROM v3_5_latest_configuration_hosts_interfaces
LEFT JOIN v3_5_latest_configuration_hosts ON
    v3_5_latest_configuration_hosts_interfaces.host_id = 
    v3_5_latest_configuration_hosts.host_id
LEFT JOIN v3_5_statistics_vms_resources_usage_samples ON 
    v3_5_latest_configuration_hosts.history_id = 
    v3_5_statistics_vms_resources_usage_samples.current_host_configuration_version
LEFT JOIN v3_5_latest_configuration_vms ON
    v3_5_latest_configuration_vms.history_id =
    v3_5_statistics_vms_resources_usage_samples.vm_configuration_version
LEFT JOIN v3_5_latest_configuration_vms_interfaces ON
    v3_5_latest_configuration_vms.history_id =
    v3_5_latest_configuration_vms_interfaces.vm_configuration_version
WHERE v3_5_statistics_vms_resources_usage_samples.vm_status = 1
	AND v3_5_latest_configuration_hosts_interfaces.vlan_id IS NOT NULL
	AND v3_5_latest_configuration_vms_interfaces.logical_network_name =
	v3_5_latest_configuration_hosts_interfaces.logical_network_name
GROUP BY v3_5_latest_configuration_hosts_interfaces.vlan_id, 
    v3_5_latest_configuration_hosts.host_id,
    v3_5_statistics_vms_resources_usage_samples.vm_id
ORDER BY v3_5_latest_configuration_hosts_interfaces.vlan_id, 
    v3_5_latest_configuration_hosts.host_id,
    v3_5_statistics_vms_resources_usage_samples.vm_id

If you need more details please let me know.

Best regards,
--- 
Shirly Radco 
BI Software Engineer 
Red Hat Israel Ltd.


----- Original Message -----
> From: "Koen Vanoppen" <vanoppen.koen at gmail.com>
> To: users at ovirt.org
> Sent: Friday, March 13, 2015 9:17:29 AM
> Subject: [ovirt-users] DWH Question
> 
> Dear all,
> 
> Is it possible to pull a list of all VMS who are in vlanX?
> 
> Kind regards,
> 
> Koen
> 
> _______________________________________________
> Users mailing list
> Users at ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 



More information about the Users mailing list