Parseable
An open source log storage and observability platform
Parseable is an open source log data platform that focuses on the storage, processing and query of real-time logs. Its main functions include helping developers and enterprises quickly collect, process and analyze massive log data to better monitor system performance, troubleshoot problems, or conduct data insights. Parseable has the following characteristics: Real-time performance: Supports rapid processing and querying of log data. Extensibility: Can handle large-scale distributed system logs. Open source: Means users can deploy and customize the platform themselves, avoiding relying on closed-source commercial solutions. Default account admin password admin How to submit log records, you can use curl execution to insert a log curl --location --request POST \ 'https://parseable. Device name.heiyu.space/api/v1/ingest' \ --header 'X-P-META-meta1: value1' \ --header 'X-P-TAG-tag1: value1' \ --header 'X-P-Stream: demo' \ --header 'Authorization: Basic YWRtaW46YWRtaW4=' \ --header 'Content-Type: application/json' \ --data-raw '[ { "id": "434a5f5e-2f5f-11ed-a261-0242ac120002", "datetime": "2023-01-05T07:20:50.52Z", "host": "153.10.110.81", "user-identifier": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) Firefox/64.0", "method": "PUT", "status": 500, "referrer": "http://www.google.com/" } ]' For more information, please refer to https://www.parseable.com/docs/server/introduction


