Retrying failed action with response code: 500

Hi All,

My config file was working in logstash before installing XPACK.

After installation, I am getting below error in Logstash.

retrying failed action with response code: 500 ({"type"=>"illegal_state_exception", "reason"=>"There are no external requests known to support wildcards that don't support replacing their indices"})

Please share you logstash output config
Looks like you are using wildcrads in index name

output {
elasticsearch {
hosts => "https://localhost:9200"
user => "elastic"
password => "elastic_user_password"
index => "logstash-*"
}
}

Make sure to use correct index name, like this

output {
elasticsearch {
hosts => "https://localhost:9200"
user => "elastic"
password => "elastic_user_password"
index => "logstash-%{YYYY-MM-DD}"
}
}

1 Like

THANK YOU VERY MUCH SIR,,, It is working. I need one more help. Can you please let me know how to generate the permanent licence for XPACK and is it opensource.

Starting version 7.1 Basic Security, SSL/TLS, Role Based access is for free in elasticsearch with Basic licence.

Use this post for more details : https://www.elastic.co/blog/getting-started-with-elasticsearch-security

1 Like

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