diff --git a/README.md b/README.md index 02e301731..ac488357b 100644 --- a/README.md +++ b/README.md @@ -1,127 +1,76 @@
-
-
+
+
Parseable is an open source log storage and observability platform, built for Kubernetes.
+
Quick Start |
Documentation |
+ Community |
Live Demo
-
+Parseable started because of this _missing_ case. We intend to enrich the ecosystem with a developer friendly, cloud native, event & log observability platform.
+## How it works
-## Features
+Parseable exposes REST API to ingest and query log data. Under the hood, it uses Apache Arrow and Parquet to handle and compress high volume log data. All data is stored in S3 (or compatible systems). Parseable also has a bundled web console to visualize and query log data.
-- [x] Highly compressed log data storage with [Parquet](https://parquet.apache.org).
-- [x] Use standard SQL for querying log data.
-- [x] Auto inferred schema for log streams.
-- [x] Dashboard to query the log data.
-- [x] Compatible with existing logging agents.
-- [x] Scale with scaling up the node.
-- [ ] Configurable alerting.
-- [ ] Distributed, multi-node cluster.
-- [ ] Log data visualization via Parseable UI.
-- [ ] Access control for users and groups.
-- [ ] Log data retention and export.
-- [ ] Kafka plugin to ingest log data.
-- [ ] Grafana plugin to visualize log data.
-- [ ] Anomaly detection within log data.
+Parseable can be deployed in cloud and container based environments in minutes and can scale as the requirements grow.
-## Getting Started
+#### Key differentiators
-### Docker
-Parseable docker image is available on [Docker hub](https://hub.docker.com/r/parseable/parseable). Please change the environment variables as relevant.
+- Written in Rust. Low CPU & memory footprint, with low latency, high throughput.
+- Open data format (Parquet). Complete ownership of data. Wide range of possibilities for data analysis.
+- Single binary / container based deployment (including UI). Deploy in minutes if not seconds.
+- Indexing free design. Lower CPU and storage overhead. Similar levels of performance as indexing based systems.
-```sh
-cat << EOF > parseable-env
-P_S3_URL=https://minio.parseable.io:9000
-P_S3_ACCESS_KEY=minioadmin
-P_S3_SECRET_KEY=minioadmin
-P_S3_REGION=us-east-1
-P_S3_BUCKET=parseable
-P_LOCAL_STORAGE=/data
-P_USERNAME=parseable
-P_PASSWORD=parseable
-EOF
+## Installing
+
+Docker is the quickest way to experience Parseable on your machine. Run the below command to deploy Parseable in demo mode.
+```sh
mkdir -p /tmp/data
docker run \
-p 8000:8000 \
- --env-file parseable-env \
-v /tmp/data:/data \
parseable/parseable:latest \
- parseable server
+ parseable server --demo
```
-### Kubernetes
-Parseable helm chart is available at [Parseable charts repository](https://charts.parseable.io/).
+Once this runs successfully, you'll see dashboard at [http://localhost:8000](http://localhost:8000). You can login to the dashboard with `parseable`, `parseable` as the credentials. Please make sure not to post any important data while in demo mode.
-```sh
-helm repo add parseable https://charts.parseable.io/
-helm repo update
-kubectl create namespace parseable
-helm install parseable parseable/parseable --namespace parseable --set parseable.demo=true
-```
+For non-demo and other installation options (Kubernetes, bare-metal), please refer to the [documentation](https://www.parseable.io/docs/category/installation).
-### Binary
-Parseable binary is available on [Github releases](https://github.com/parseablehq/parseable/releases). Please download the latest release for your platform, also make sure to change the environment variables as relevant.
+#### Live demo
-```sh
-export P_S3_URL="https://minio.parseable.io:9000"
-export P_S3_ACCESS_KEY="minioadmin"
-export P_S3_SECRET_KEY="minioadmin"
-export P_S3_REGION="us-east-1"
-export P_S3_BUCKET="parseable"
-export P_LOCAL_STORAGE="./data"
-export P_USERNAME="parseable"
-export P_PASSWORD="parseable"
-chmod +x parseable
-./parseable
-```
+Instead of installing locally, you can also try out Parseable on our [Demo instance](https://demo.parseable.io). Credentials to login to the dashboard are `parseable` / `parseable`.
-
+## Usage
-Parseable dashboard is available at [http://localhost:8000](http://localhost:8000). Credentials to login to the dashboard are the values you set in the environment variables.
+If you've already deployed Parseable using the above Docker command, use below commands to create stream and post event(s) to the stream. Make sure to replace `