我正在尝试使用powershell自动创建报告工具。我需要获得Zabbix(v1.8)图形图像。由于尚未通过API,我必须连接到URL然后获取图表。
这是我的代码:
$zabbixLoginUrl = "http://zabfront-eqx.noc.lan/zabbix/index.php?login=1"
$zabbixGraphUrl = "http://zabfront-eqx.noc.lan/zabbix/chart2.php?graphid="
$userName = "username"
$userPwd = "pwd"
$loginPostData = @{name=$userName;password=$userPwd;enter="Enter"}
$login = Invoke-WebRequest -Uri $zabbixLoginUrl -Method Post -Body $loginPostData -SessionVariable sessionZabbix
#let's see if we have a cookie set
if ($sessionZabbix.Cookies.Count -eq 0) {
Write-Host "fail to connect"
break
}
else {Write-Host "connected"}
#now let's retrieve the graph #4433 using the priviously established session
$graph = Invoke-WebRequest -Uri ($zabbixGraphUrl+"4433") -WebSession $sessionZabbix
我可以连接并获取cookie:
$sessionZabbix.Cookies.GetCookies("http://zabfront-eqx.noc.lan/zabbix/index.php") | select name, value
Name Value
---- -----
zbx_sessionid b2451e6c7fd0767dec22cca46427b7c2
不幸的是,$ graph不包含“image”属性,而“内容”表示我没有连接:
$graph.Images.Count
0
$graph.Content
[...]
<span class="footer_sign">Not connected</span>
任何人都知道我做错了什么?
由于
答案 0 :(得分:0)
所以我得到了它的工作: 我需要使用相同的sessionid为图表URL设置cookie:
$sessionZabbix.Cookies.SetCookies("http://zabfront-eqx.noc.lan/zabbix/chart2.php", $sessionZabbix.Cookies.GetCookieHeader($zabbixLoginUrl))