1

Zabbix JSON API を使用して、IT ショップの一部の監視を自動化しようとしています。ここで説明されているgraph.createメソッドを使用したい: https://www.zabbix.com/documentation/2.2/manual/api/reference/graph/create

私は gitems 配列に苦労しています。これには、ハッシュ テーブル (グラフ内の項目ごとに 1 つ) が含まれている必要があり、それぞれに "itemid" 行と "color" 行があります。

これは私のコードの一部です:

#i get a list of itemids in $items
$colours=@("C04000", "800000", "191970", "3EB489", [...])
$params=@{}
        $gitems=@() #an array of hash tables...

        $c=0
        foreach ($itemid in $items.result) {
            $graphmember=@{}
            $graphmember.add("itemid", $itemid)
            $graphmember.add("color", $colours[$c])
            $gitems += $graphmember
            $c += 1
        }
        $params.add("gitems", $gitems)

        #construct the JSON object  
        $objgraph = (New-Object PSObject | Add-Member -PassThru NoteProperty jsonrpc '2.0' |
        Add-Member -PassThru NoteProperty method 'graph.create' |
        Add-Member -PassThru NoteProperty params $params |
        Add-Member -PassThru NoteProperty auth $session.result |
        Add-Member -PassThru NoteProperty id '2') | ConvertTo-Json

        return $objgraph

これは、呼び出されたときにこれを返します:

{
    "jsonrpc":  "2.0",
    "method":  "graph.create",
    "params":  {
                   "gitems":  [
                                  "System.Collections.Hashtable",
                                  "System.Collections.Hashtable",
                                  "System.Collections.Hashtable",
                                  "System.Collections.Hashtable",
                                  "System.Collections.Hashtable"
                              ]
               },
    "auth":  "dc50acf4c337e5430c00936f998f74da",
    "id":  "2"
}

これは、指定した引数に基づく正しい数ですが、convertto-json が私のオブジェクトを気に入らないようです...理由がわかりません。

配列のハッシュテーブルについて確信が持てなかったので、テストを行ったところ、うまくいくようです:

$gitems=@()
$i1=@{}
$1.add("itemid","123")
$i1.add("color","blue")
$gitems += $i1
$i2=@{}
$i2.add("itemid","567")
$i2.add("color","yellow")
$gitems += $i2

$gitems

Name                           Value
----                           -----
color                          bleu
itemid                         123
color                          yellow
itemid                         567

アイデアをありがとう!

4

1 に答える 1

2

depth パラメーターは、JSON 表現に含まれるオブジェクトのレベル数を指定します。デフォルト値は 2 です。値 3 を指定すると、json が正常に作成されます。

$objgraph = (New-Object PSObject | Add-Member -PassThru NoteProperty jsonrpc '2.0' |
Add-Member -PassThru NoteProperty method 'graph.create' |
Add-Member -PassThru NoteProperty params $params |
Add-Member -PassThru NoteProperty auth $session.result |
Add-Member -PassThru NoteProperty id '2') | ConvertTo-Json -depth 3
于 2013-08-16T14:33:38.747 に答える