I was wondering if someone can help acccess historical performance data from OnCommand DataWarehouse.
We hace access to following data marts and can't seem to access any performance data past one day using the table - "internal_volume_daily_performance_fact".
I am looking to trend IOPS/MB/Latency for the past daily stats over a year.
mysql> show databases;
+-------------------------+
| Database |
+-------------------------+
| information_schema |
| dwh_capacity |
| dwh_capacity_efficiency |
| dwh_fs_util |
| dwh_inventory |
| dwh_performance |
| dwh_ports |
| dwh_reports |
| dwh_sa |
| test |
| tmp |
+-------------------------+
mysql> use dwh_performance;
Database changed
mysql> show tables;
+--------------------------------------------+
| Tables_in_dwh_performance |
+--------------------------------------------+
| application_dimension |
| application_group_bridge |
| application_group_dimension |
| application_volume_hourly_performance_fact |
| business_entity_dimension |
| capacity_volume_fact_current |
| connected_device_dimension |
| date_dimension |
| disk_daily_performance_fact |
| disk_dimension |
| disk_hourly_performance_fact |
| fabric_dimension |
| host_dimension |
| host_group_bridge |
| host_group_dimension |
| host_vm_daily_performance_fact |
| host_vm_hourly_performance_fact |
| host_volume_hourly_performance_fact |
| internal_volume_daily_performance_fact |
| internal_volume_dimension |
| internal_volume_hourly_performance_fact |
| port_dimension |
| service_level_dimension |
| storage_dimension |
| storage_pool_dimension |
| switch_dimension |
| switch_performance_for_host_hourly_fact |
| switch_performance_for_port_hourly_fact |
| switch_performance_for_storage_hourly_fact |
| switch_performance_for_tape_hourly_fact |
| tape_dimension |
| tier_dimension |
| time_dimension |
| vm_daily_performance_fact |
| vm_dimension |
| vm_hourly_performance_fact |
| volume_daily_performance_fact |
| volume_dimension |
| volume_hourly_performance_fact |
+--------------------------------------------+
Further, VMware Virtual Machine, ESX and ESXi VM capacity and Performance is available via table in mysql. Its not currently available via the drag and drop datamarts.
Data Warehouse VM/ESX “Hourly” metrics available up to two weeks, 13 months for “Daily” metrics.
How do I access the 13 months for “Daily” metrics?
Thanks
Modi