Does System Center-VMM 2012 displays storage performance information

Proposed Does System Center-VMM 2012 displays storage performance information

  • Tuesday, April 24, 2012 8:40 AM
     
     
    Does System Center-VMM 2012 displays storage performance information like latency and events for a particular duration. If yes could you please let me know how to view it

All Replies

  • Saturday, April 28, 2012 5:35 PM
     
     

    Dear Snehal,

    As far as my experience you dont have this option.

    If you use HP Storage , you need Storage essentials or perfomance analyzer which are third party softwares.

    In Windows you can use perfmon.

    Sincerely,

    Murat Demirkiran


    If the post helps you and remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. www.scvmm2012.com (TR Language)

  • Monday, April 30, 2012 1:43 PM
     
     Proposed Has Code

    Hi,

    I'd agree with Murat. I use IBM kit which has the ablility to start a data/performance capture.

    As well as perfmon to can script grabbing some counters with powershell ...

    (Get-Counter -ListSet PhysicalDisk).Paths | 
        Get-Counter -MaxSamples 10 -SampleInterval 2 | 
        Export-Counter -Path "$([Environment]::GetFolderPath("MyDocuments"))\$($env:Computername)_DiskCounters.csv" -FileFormat CSV -Force

    John