I'm trying to send VMWare server parameters to Elastic Search node 8.6.1 passing by Logstash 8.6.1.
I obtained string in get option using Paessler MIB Importer.
I downloaded MIB file in official site of VMWare.
This is my logstash configuration file.
input {
snmp {
get => [ "1.3.6.1.2.1.17.1.1.0" ]
hosts => [{host => "udp:10.4.1.183/162" version => "3"}]
mib_paths => ["C:\Monitoring\logging\logstash-8.6.1-server\mibs"]
security_name => "root"
auth_protocol => "sha"
auth_pass => "test2"
priv_protocol => "aes128"
priv_pass => "test2"
interval => 30
security_level => "authPriv"
}
}
output {
elasticsearch {
hosts => ["https://XX.X.X.XXX:9200"]
index => "server-%{+YYYY.MM.dd}"
user => "elastic"
password => "test"
ssl => true
ssl_certificate_verification => false
}
}
When I start logstash.bat I obtain this error:


