Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 657 Bytes

File metadata and controls

14 lines (9 loc) · 657 Bytes

logstore

A distributed log storage database. Logstore is meant as a replacement for Elasticsearch when storing logs. Elasticsearch is a distributed document store and search engine, and in my opinion really isn't optimized for storing log messages.

Documentation

Log Message Placement

Logs are placed on one of the servers using Jump Consistent Hashing. Currently rack-awareness is not supported.

Messages

All log messages are JSON objects, and must be "flat"; they cannot contain nested JSON objects. Arrays as values are supported.

API

Coming Soon