Indices not showing on Kibana and data type does not change

Hi,
This is my logstash.conf file. I cannot see the index on kibana and data type does not convert. Any help?

input {
beats {
port => 5044
}
}

filter {
grok {
match => { "message" => '%{TIME:timex} %{WORD:Ix} %{NUMBER:nox:int} (?[^\s]) %{WORD:stdlog} %{WORD:type} %{NUMBER:numbery} %{NUMBER:noh} %{WORD:dbtype} %{WORD:loguserx} (?[^\s]) %{DATA:query_topic} {"(?<query_str>[^"])","(?[^"])","(?<execution_time_ms>[\d])","(?<total_time_ms>[\d])"}$' }
}

mutate {
convert => { "execution_time_ms" => "float" "total_time_ms" => "float" }
}

}

output {
elasticsearch {
hosts => [ "elasticsearch:9200" ]
index => "ninjadb"
}
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.