第一部分与 SNMP 和查找有关 - 以下内容应该可以帮助您在 PRTG 中实现这一点:SNMP 自定义字符串查找传感器
第二部分 - 要组合来自一个(两个或多个)不同传感器的两个值,您应该使用PRTG Sensor Factory Sensor - 如果需要,您甚至可以对这些值进行一些计算。无需编程
例子
假设您有一个传感器从 SNMP 中提取一个值 - 该传感器的 ID 为 100,并且您的值存储在通道 0 中
ID 为 101 的第二个传感器将不同的 SNMP 值拉到通道 0
使用 PRTG Sensor Factory Sensor,您可以创建新的(第三个)传感器,其通道定义如下:
#1:SUM_OF_VALUES
Channel(100,0) + Channel(101,0)
这意味着它将两个传感器的值添加到您新创建的名为“SUM_OF_VALUES”的通道中。你可以
您始终可以使用 PowerShell 从 SNMP 中提取数据,但 PRTG 有工具让您无需编程即可实现它。如果您仍想在 PowerShell 中执行此操作,请询问详细信息的新问题,我可以进一步帮助您使用 PowerShell 脚本
让我知道这是否有帮助
编辑
这个简单的脚本应该可以帮助您开始使用传感器 - 它将收集 $ifaceNumbers 数组中列出的接口的描述和错误数量。该脚本可以放在 PRTG 探针的 EXE 目录中(不是 EXEXML,因为它不会生成 XML 作为输出)。
更改接口编号(从 1 和 12 到您的编号)并更改社区字符串和 IP 并尝试首先在 Powershell IDE/Powershell 中手动运行它
玩得开心
### source: https://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/26007-faq-snmpcounter.html
#
# ifInNUcastPkts (.1.3.6.1.2.1.2.2.1.12) These are counts of inbound broadcast and multicast packets.
# ifInDiscards (.1.3.6.1.2.1.2.2.1.13) These are counted as no buffers as reflected in the show interfaces command.
# ifInErrors (.1.3.6.1.2.1.2.2.1.14) These are counts of all input errors as reflected in the show interfaces command.
# ifInUnknownProtos (.1.3.6.1.2.1.2.2.1.15) These are counted as unclassified errors.
# ifOutOctets (.1.3.6.1.2.1.2.2.1.16) These are counts of the number of bytes output by the interface as shown in the show interfaces command.
# ifOutUcastPkts (.1.3.6.1.2.1.2.2.1.17) These are counts of outbound broadcast and multicast packets.
# ifOutDiscards (.1.3.6.1.2.1.2.2.1.19) These are counted as output drops as shown in the show interfaces command.
# ifOutErrors (.1.3.6.1.2.1.2.2.1.20) These are counted as output errors as shown in the show interfaces command.
# ifOutQLen (.1.3.6.1.2.1.2.2.1.21) This is the number of packets allowed to be on the output queue as shown in the show interfaces command.
#
# desctiption .1.3.6.1.2.1.2.2.1.2
###
$OIDDescripiton = ".1.3.6.1.2.1.2.2.1.2"
$OIDErrors = ".1.3.6.1.2.1.2.2.1.20"
$ifaceNumbers = @(1,12)
$state=0 # OK state
$cntErrors=0
$msg = "All interfaces are ok - no errors found"
function getSNMPValue ($oid)
{
$snmp = New-Object -ComObject olePrn.OleSNMP
$snmp.open('192.168.1.1','secretCommunityString',2,1000)
return $snmp.get($oid)
}
foreach ($ifaceNum in $ifaceNumbers)
{
$oid = ("{0}.{1}" -f $OIDDescripiton, $ifaceNum )
$descr = getSNMPValue -oid $oid
$oid = ("{0}.{1}" -f $OIDErrors, $ifaceNum )
$errors = getSNMPValue -oid $oid
if ([int]$errors -gt 0) {
$state=1; # ERROR state
$cntErrors +=1;
$msg="$($descr) has $($errors) errors"
}
}
# writing output to PRTG probe
echo "$($state):$($cntErrors) $($msg)"