Hello everyone,
I have installed ELK, one server ELASTICSEARCH, 3 servers (collectors) that have installed LOGSTASH and ELASTIFLOW and each one is in 3 branches. In a branch there is a server where logstash is installed and it is collecting SNMP information and then send to ELASTICSEARCH MASTER. All that information shows me through the Kibana Dhasboard, my question is:
Why in kibana I have a minute loss along the whole timestap?
these is my config logstash input:
input {
** snmp {**
** walk => ["1.3.6.1.2.1.1", "1.3.6.1.2.1.2", "1.3.6.1.4.1.9.9.109.1.1"]**
** # get => ["1.3.6.1.2.1.2.2.1.10.10102", "1.3.6.1.2.1.2.2.1.16.10102"]**
# walk => ["1.3.6.1.2.1.1"]
** hosts => [{host => "udp:x.x.x.x/161" community => "public"}]**
** mib_paths => ["/etc/logstash/mibs/"]**
** add_field => {host => "%{[@metadata][host_protocol]}:%{[@metadata][host_address]}/%{[@metadata][host_port]},%{[@metadata][host_community]}"}**
** }**
}
and these is my output:
output {
** elasticsearch {**
** id => "output_elasticsearch_single"**
** document_type => "elasticsearch"**
** hosts => ["http://y.y.y.y:9200"]**
# index => "{%[@metadata][snmp]}-%{+YYYY.MM.dd}"
** index => "snmp-cisco-%{+YYYY.MM.dd}"**
** }**
}
According to me, the logstash log does not show me any error:
Help!! a new on ELK.