Elastic Search

From bibbleWiki
Revision as of 06:06, 20 September 2024 by Iwiseman (talk | contribs) (Introduction)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

First dive into elastic search. I followed the install directions on here
I did not use the ssl and add kibana.local to my host file
The logstash had the following setup

output {
   elasticsearch {
     hosts => ["http://kibana.local:9200"]
     index => "syslog-%{+YYYY.MM.dd}"
     ssl => false
     user => "logstash_system"
     password => "Not Saying"
   }
 }