Elastic: mudanças entre as edições
Ir para navegação
Ir para pesquisar
(2 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
Linha 1: | Linha 1: | ||
=Elastic Search= | =Elastic Search= | ||
==SSL== | ==SSL== | ||
*https://www.elastic.co/guide/en/elasticsearch/reference/7.1/certutil.html | *[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= | ||
=FileBeat= | =FileBeat= | ||
==SSL== | ==SSL== | ||
*https://www.elastic.co/guide/en/beats/filebeat/current/configuring-ssl-logstash.html | *[https://www.elastic.co/guide/en/beats/filebeat/current/configuring-ssl-logstash.html configuring-ssl-logstash] | ||
*[https://www.elastic.co/guide/en/beats/filebeat/current/configuration-ssl.html configuration-ssl] | |||
=LogStash= | =LogStash= | ||
==Input== | ==Input== | ||
*https://www.elastic.co/guide/en/logstash/current/plugins-inputs-beats.html | *[https://www.elastic.co/guide/en/logstash/current/plugins-inputs-beats.html plugins-inputs-beats] | ||
==Output== | ==Output== | ||
*https://www.elastic.co/guide/en/logstash/current/plugins-outputs-elasticsearch.html | *[https://www.elastic.co/guide/en/logstash/current/plugins-outputs-elasticsearch.html plugins-outputs-elasticsearch] | ||
*https://www.elastic.co/guide/en/logstash/current/plugins-outputs-influxdb.html | *[https://www.elastic.co/guide/en/logstash/current/plugins-outputs-influxdb.html plugins-outputs-influxdb] | ||
*https://www.elastic.co/guide/en/logstash/current/plugins-outputs-zabbix.html | *[https://www.elastic.co/guide/en/logstash/current/plugins-outputs-zabbix.html plugins-outputs-zabbix] |
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" } }
]
}