Src/Private/Get-AbrVbrIOControlSetting.ps1
function Get-AbrVbrIOControlSetting { <# .SYNOPSIS Used by As Built Report to returns storage latency control settings on the production datastores. .DESCRIPTION Documents the configuration of Veeam VBR in Word/HTML/Text formats using PScribo. .NOTES Version: 0.8.5 Author: Jonathan Colon Twitter: @jcolonfzenpr Github: rebelinux Credits: Iain Brighton (@iainbrighton) - PScribo module .LINK https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR #> [CmdletBinding()] param ( ) begin { Write-PScriboMessage "Discovering Veeam VBR storage latency control settings information from $System." } process { try { if ($VbrLicenses | Where-Object { $_.Edition -in @("EnterprisePlus", "Enterprise") -and $_.Status -ne "Expired" }) { $StorageLatencyControls = Get-VBRStorageLatencyControlOptions if ($StorageLatencyControls) { Section -Style Heading4 'Storage Latency Control' { $OutObj = @() foreach ($StorageLatencyControl in $StorageLatencyControls) { try { $inObj = [ordered] @{ 'Latency Limit' = "$($StorageLatencyControl.LatencyLimitMs)/ms" 'Throttling IO Limit' = "$($StorageLatencyControl.ThrottlingIOLimitMs)/ms" 'Enabled' = ConvertTo-TextYN $StorageLatencyControl.Enabled } $OutObj += [pscustomobject]$inobj } catch { Write-PScriboMessage -IsWarning "Storage Latency Control Section: $($_.Exception.Message)" } } if ($HealthCheck.Infrastructure.Settings) { $OutObj | Where-Object { $_.'Enabled' -like 'No' } | Set-Style -Style Warning -Property 'Enabled' } $TableParams = @{ Name = "Storage Latency Control - $VeeamBackupServer" List = $false ColumnWidths = 35, 35, 30 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Table @TableParams #---------------------------------------------------------------------------------------------# # Per Datastore Latency Control Options # #---------------------------------------------------------------------------------------------# try { $StorageLatencyControls = Get-VBRAdvancedLatencyOptions if (($VbrLicenses | Where-Object { $_.Edition -eq "EnterprisePlus" }) -and $StorageLatencyControls) { Section -Style NOTOCHeading5 -ExcludeFromTOC 'Per Datastore Latency Control Options' { $OutObj = @() foreach ($StorageLatencyControl in $StorageLatencyControls) { try { $Datastores = Find-VBRViEntity -DatastoresAndVMs -ErrorAction SilentlyContinue | Where-Object { ($_.type -eq "Datastore") } $DatastoreName = ($Datastores | Where-Object { $_.Reference -eq $StorageLatencyControl.DatastoreId }).Name | Select-Object -Unique $inObj = [ordered] @{ 'Datastore Name' = Switch ($DatastoreName) { $Null { $StorageLatencyControl.DatastoreId } default { $DatastoreName } } 'Latency Limit' = "$($StorageLatencyControl.LatencyLimitMs)/ms" 'Throttling IO Limit' = "$($StorageLatencyControl.ThrottlingIOLimitMs)/ms" } $OutObj += [pscustomobject]$inobj } catch { Write-PScriboMessage -IsWarning "Per Datastore Latency Control Options Section: $($_.Exception.Message)" } } $TableParams = @{ Name = "Per Datastore Latency Control Options - $VeeamBackupServer" List = $false ColumnWidths = 40, 30, 30 } if ($Report.ShowTableCaptions) { $TableParams['Caption'] = "- $($TableParams.Name)" } $OutObj | Table @TableParams } } } catch { Write-PScriboMessage -IsWarning "Per Datastore Latency Control Options Section: $($_.Exception.Message)" } } } } } catch { Write-PScriboMessage -IsWarning "Storage Latency Control Section: $($_.Exception.Message)" } } end {} } |