2

我正在运行一个将 Citrix QFarm /load 命令输出到文本文件中的脚本;它本质上是两列,然后我将其输入到多维数组中,如下所示:

SERVER1 100
SERVER2 200
SERVER3 300

我正在寻找特定服务器的 indexOf 以便我可以检查负载均衡器级别是什么。当我使用 indexOf 方法时,我只会得到 -1 的回报;但是脚本末尾的明确 write-host 表明答案应该是 41。

为了将 IndexOf 与 2d 数组一起使用,是否需要一些魔法?

$arrQFarm= @()
$reader = [System.IO.File]::OpenText("B:\WorkWith.log")
try {
for(;;) {
    $str1 = $reader.ReadLine()
    if ($str1 -eq $null) { break }

    $strHostname = $str1.SubString(0,21)
    $strHostname = $strHostname.TrimEnd()
    $strLB = $str1.SubString(22)
    $strLB = $strLB.TrimEnd()

    $arrQFarm += , ($strHostName , $strLB)
    }
}
finally {
$reader.Close()
}

$arrCheckProdAppServers = "CTXPRODAPP1","CTXPRODAPP2"


foreach ($lines in $arrCheckProdAppServers){
$index = [array]::IndexOf($arrQFarm, $lines)
Write-host "Index is" $index
Write-Host "Lines is" $lines

}

if ($arrQFarm[41][0] -eq "CTXPRODAPP1"){
Write-Host "YES!"
}

运行它会给出输出:

PS B:\Citrix Health Monitoring\249PM.ps1
Index is -1
Lines is CTXPRODAPP1
Index is -1
Lines is CTXPRODAPP2
YES!
4

1 回答 1

1

我假设在您的情况下,只有当两列都匹配 (hostname|level) 时,它才会起作用:[array]::IndexOf($arrQFarm, ($strHostName , $strLB))。根据IndexOf它比较数组的整个项目(在你的情况下也是数组)

也许我不会直接回答这个问题,但是如何使用 Hashtable(感谢 dugas 的纠正)?喜欢:

$arrQFarm= @{}
$content = Get-Content "B:\WorkWith.log"
foreach ($line in $content)
{
    if ($line -match "(?<hostname>.+)\s(?<level>\d+)")
    {
        $arrQFarm.Add($matches["hostname"], $matches["level"])
    }
}

$arrCheckProdAppServers = "CTXPRODAPP1","CTXPRODAPP2"

foreach ($lines in $arrCheckProdAppServers)
{
    Write-host ("Loadbalancer level is: {0}" -f $arrQFarm[$lines])
}
于 2013-03-19T20:10:13.947 回答