Parsing a value of string field http://127.0.0.1:27336/notify
logstash maps in Elastic search index many values for the original string.
In this case values are http, 127.0.0.1, 27336 and notify.
When it encounters the characters : and / splits the original string.
While in output I expect to see the string as it arrives in input: http://127.0.0.1:27336/notify.
This is my logstash.conf
input {
beats {
port => 5042
}
}
output {
elasticsearch {
hosts => ["http://XX.X.X.XXX:XXXX"]
index => "example"
user => "user"
password => "password"
}
}
Is there a filter that allows me to ignore these special characters?
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.