I'm trying to send CPU, Memory and Storage parameters of VCenter Server (VMWare) to Elasticsearch node (8.6.1 verson) passing by Logstash 8.6.1. What MIB file should I use to get those specific parameters?
This is my Logstash configuration file:
input {
snmp {
get => ["1.3.6.1.4.1.6876.3.2.1.0"]
hosts => [{host => "udp:10.4.1.183/161" version => "3"}]
mib_paths => ["C:\Monitoring\logging\logstash-8.6.1-server\mibs"]
security_name => "user1"
auth_protocol => "sha"
auth_pass => "test1"
priv_protocol => "aes128"
priv_pass => "test1"
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
}
}
The parameters that I want to get are in the following image on the right: