Debashisenator
Debashisenator

Reputation: 1739

How to store logs in Elasticsearch without using any log shipper like Filebeat or Logstash?

I don't want to use filebeat or logstash. I have installed only Elasticsearch and I want to store log records in it and then index them. Is it possible.

Upvotes: 0

Views: 593

Answers (1)

Val
Val

Reputation: 217294

Yes, it's possible, you can use any client library of your choosing and then hit the Index API endpoint or the Bulk API endpoint to index your data.

Upvotes: 1

Related Questions