Skip to content

ParseableDB is a disk less, cloud native database for observability and security. Parseable is the Observability platform built with ParseableDB

License

Notifications You must be signed in to change notification settings

parseablehq/parseable

Folders and files

NameName
Last commit message
Last commit date
Feb 12, 2025
Jan 19, 2025
Jan 23, 2025
Feb 4, 2025
Mar 8, 2025
Jan 10, 2023
Sep 19, 2022
Oct 26, 2023
Feb 12, 2025
Mar 30, 2023
Feb 1, 2024
Aug 4, 2022
Feb 28, 2025
Feb 28, 2025
Feb 4, 2025
Feb 12, 2025
Feb 4, 2025
Feb 6, 2025
Aug 10, 2022
May 29, 2022
Feb 5, 2025
Nov 26, 2024
Feb 19, 2024
Feb 15, 2024
Feb 4, 2025
Feb 12, 2025
Feb 12, 2025
Feb 4, 2025
Feb 12, 2025
Feb 12, 2025
Aug 7, 2024
Jan 19, 2025
Feb 4, 2025

Repository files navigation

Parseable logo

Parseable is a disk less, cloud native database for logs, observability, security, and compliance. Parseable is built with focus on simplicity & resource efficiency. Parseable is useful for use cases where complete data ownership, data security and privacy are paramount.

To experience Parseable UI, checkout demo.parseable.com ↗︎.

Quickstart ⚡

Run Parseable

Docker Image

Get started with Parseable Docker with a single command:

docker run -p 8000:8000 \
  containers.parseable.com/parseable/parseable:latest \
  parseable local-store

Executable Binary

Download and run the Parseable binary on your laptop:

  • Linux or MacOS
curl -fsSL https://logg.ing/install | bash
  • Windows
powershell -c "irm https://logg.ing/install-windows | iex"

Ingestion and query

Once you have Parseable running, ingest data with the below command. This will send logs to the demo stream. You can see the logs in the dashboard.

curl --location --request POST 'http://localhost:8000/api/v1/ingest' \
--header 'X-P-Stream: demo' \
--header 'Authorization: Basic YWRtaW46YWRtaW4=' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "id": "434a5f5e-2f5f-11ed-a261-0242ac120002",
        "datetime": "24/Jun/2022:14:12:15 +0000",
        "host": "153.10.110.81"
    }
]'

Access the Parseable UI at http://localhost:8000 ↗︎. You can login to the dashboard default credentials admin, admin.

Getting started 💡

For quickstart, refer the quickstart section ↗︎.

This section elaborates available options to run Parseable in production or development environments.

Features 🚀

How do people use Parseable 💡

  • Log Analytics - Not all logs are created equal. For example application logs are seldom useful after a few days pass, but if same application also logs all the user interactions, that data is very valuable for product managers, and can be stored for a longer period. Several businesses store such high value logs and slice / dice them as needed.

  • Audit & Compliance - Organizations that need to store logs in a secure, compliant manner. Parseable's direct to S3 bucket storage mode ensures that logs are stored in a secure, cost effective manner, and can be accessed only by authorized users, while all the data is queryable in real-time.

  • Observability & Monitoring - A very large chunk of observability data is logs. Organizations that need to monitor their systems, applications, and infrastructure in real-time use Parseable as the primary log storage system so they get timely alerts, and can analyze logs in real-time.

Motivation 🎯

Traditionally, logging has been seen as a text search problem. Log volumes were not high, and data ingestion or storage were not really issues. This led us to today, where all the logging platforms are primarily text search engines.

But with log data growing exponentially, today's log data challenges involve whole lot more – Data ingestion, storage, and observation, all at scale. We are building Parseable to address these challenges.

Verify images ✍️

Parseable builds are attested for build provenance and integrity using the attest-build-provenance action. The attestations can be verified by having the latest version of GitHub CLI installed in your system. Then, execute the following command:

gh attestation verify PATH/TO/YOUR/PARSEABLE/ARTIFACT-BINARY -R parseablehq/parseable

Contributing 🏆

Contribution guide ↗︎