Hi,
I'm setting up a logstash that has a snmp input plugin and an elasticsearch output.
Everything works except 1 specific OID, I checked and the OID has data and it is available. I ca't figure out why he is not polling this 1 specific OID, google was no help.
Here is my logstash pipeline input plugin:
input{
#input of palo alto firewall logs - SNMPv3 over udp/port
snmp{
id => "paloalto"
ecs_compatibility => "v8"
#store SNMP payload under [snmp] to avoid root clashes under ECS
target => "snmp"
#Palo Alto Firewall host
hosts => [{host => "udp:<host/port>" community => "<community string>" version => "3"}]
#v3 - security
<hidden as this part works and don't want to share to much info>
#OIDs
oid_mapping_format => "default"
#oid_mapping_format => "ruby_snmp"
#oid_mapping_format => "dotted_string"
get => [
"1.3.6.1.4.1.25461.2.1.2.1.11.0", #Node HA mode
"1.3.6.1.4.1.25461.2.1.2.1.12.0", #Peer HA node
"1.3.6.1.2.1.25.2.2.0", #Memory
"1.3.6.1.4.1.25461.2.1.2.3.1.0", #Session Statistics
"1.3.6.1.2.1.25.1.1.0", #System Uptime
"1.3.6.1.4.1.25461.2.1.2.5.1.1.0" #Gateway Statistics
]
walk => [
"1.3.6.1.4.1.25461.2.1.2.6.1.3.1.2", #Disk free
"1.3.6.1.2.1.99.1.1", #PhysSensor: (2) / CPU die Temperature
"1.3.6.1.2.1.2.2.1.2", #Traffic 64bit
"1.3.6.1.2.1.2.2.1.10", #Traffic 64bit ifInOctets
"1.3.6.1.2.1.2.2.1.16" #Traffic 64bit ifOutOctets
]
#polling happens every 30 seconds
interval => 30
}
}
Any help is appreciated, i'm currently trying with the ai assistant but no luck ther either.
The OID not working is: "1.3.6.1.2.1.25.2.2.0"
Kind regards,
Tom