This is the logs that i am getting from Debug mode of Elastic Search
Authentication of [elastic] using realm [reserved/reserved] with token [UsernamePasswordToken] was [AuthenticationResult{status=SUCCESS, value=User[username=elastic,roles=[superuser],fullName=null,email=null,metadata={_reserved=true}], message=null, exception=null}]
1.) I am pushing my data from File beat --> Logstash --> Elastic search
The data gets successfully printed on console after logstash and the same data i am sending to Elasticsearch, which does not reflects in Kibana dashboard.
Apache.conf
input
{
beats {
port => "5044"
}
}
filter
{
grok{
match => {
"message" => "%{COMBINEDAPACHELOG}"
}
}
mutate{
convert => { "bytes" => "integer" }
}
date {
match => [ "timestamp", "dd/MMM/YYYY:HH:mm:ss Z" ]
locale => en
remove_field => "timestamp"
}
useragent {
source => "agent"
target => "useragent"
}
}
output
{
elasticsearch {
hosts => ["https://localhost:9200"]
user => 'elastic'
password => 'TFD*t5IPsG5hJH3NtZIt'
cacert => 'D://Softwares//logstash-8.4.3-windows-x86_64//logstash-8.4.3//config//certs//http_ca.crt'
ssl => true
}
stdout
{
codec => rubydebug
}
}
Can anybody help me in the same