You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I included logstash in my Gemfile.
I added all the configuration in my development.rb.
However, when I restart my app server, I can only see a logstasher_development.log being created but no logs are getting indexed in the running elasticsearch server.
What am I missing here?
Using ruby-2.3.3 and rails 4.2
The text was updated successfully, but these errors were encountered:
This gem does not provide any integration to Elasticsearch out of the box. It simply writes logs entries in JSON format, thus making it easier to use with Logstash.
Some of the info there is out dated, you'll have to google to find chunks of more up to date info, such as consulting the Filebeat documentation, Logstash documentation, etc. Your goal is to transfer your log data from the log file on your application instance (Filebeat) to Logstash (if your data requires further manipulation) or directly to Elasticsearch (if no transformation is required, or you're happy using Elasticsearch ingest nodes). Once the data is in Elasticsearch, you can use Kibana to visualize the data.
I included
logstash
in my Gemfile.I added all the configuration in my
development.rb
.However, when I restart my app server, I can only see a
logstasher_development.log
being created but no logs are getting indexed in the running elasticsearch server.What am I missing here?
Using
ruby-2.3.3
andrails 4.2
The text was updated successfully, but these errors were encountered: