I am getting this entry in the log when starting Logstash.
[logstash.outputs.elasticsearch] You are using a deprecated config setting "document_type" set in elasticsearch. Deprecated settings will continue to work, but are scheduled for removal from logstash in the future. Document types are being deprecated in Elasticsearch 6.0, and removed entirely in 7.0. You should avoid this feature if you have any questions about this please visit the #Logstash channel on freenode irc.
The only pipeline that I have in the conf.d dir is:
input {
file {
path=>"/home/eyec/d95t45va/local4*"
start_position=> "beginning"
}
}
filter{
grok{
match=> { "message" => "%{SYSLOGLINE}" }
}
}
output {
elasticsearch {
hosts=>"https://sassvdzgpeel101.eyec.proj.xxx.xxx.gov"
user=> "elastic"
password=> "changeme"
ssl=> true
cacert=> '/etc/logstash/iic.ca.bundle.pem'
}
}