Elastic: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
|||
Linha 2: | Linha 2: | ||
==SSL== | ==SSL== | ||
*[https://www.elastic.co/guide/en/elasticsearch/reference/7.1/certutil.html certutil] | *[https://www.elastic.co/guide/en/elasticsearch/reference/7.1/certutil.html certutil] | ||
==Commands== | |||
===[https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html Create / Remove an Index Alias]=== | |||
<syntaxhighlight lang=json> | |||
POST /_aliases | |||
{ | |||
"actions" : [ | |||
{ "remove" : { "index" : "test1", "alias" : "alias1" } }, | |||
{ "add" : { "index" : "test2", "alias" : "alias1" } } | |||
] | |||
} | |||
</syntaxhighlight> | |||
=Kibana= | =Kibana= |
Edição atual tal como às 13h14min de 17 de julho de 2019
Elastic Search
SSL
Commands
Create / Remove an Index Alias
POST /_aliases
{
"actions" : [
{ "remove" : { "index" : "test1", "alias" : "alias1" } },
{ "add" : { "index" : "test2", "alias" : "alias1" } }
]
}