Quickstart
Run locally
Download and run the Parseable binary on your laptop:
curl -fsSL https://logg.ing/install | bashFor Windows users
powershell -c "irm https://logg.ing/install-windows | iex"Once you have Parseable running, send an event with the command below. 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"
}
]'Open the console at http://localhost:8000 and sign in with admin / admin. For other install options and a full walkthrough, see the Quickstart.
Parseable Cloud
To get started with our fully managed cloud offering, sign up for Parseable Cloud for a free 14-day trial, without any credit card required. Parseable Cloud includes all the features of Parseable, with the added benefits of a fully managed service, automatic updates, and dedicated support.
Sign up
Sign up on https://app.parseable.com/ to create your account.
Ingest data
You can connect to your data sources in a few clicks and start ingesting your data. Parseable supports a wide range of data sources - refer the "Ingesting data" section in the documentation for more details.
Create your first dashboard
Once your data is ingested, you can start creating dashboards and queries to analyze your data.
Set your first alert
You can set up alerts to get notified when certain conditions are met in your data. For example, you can set up an alert to get notified when the number of errors in your application exceeds a certain threshold.
Production installation
To deploy Parseable in a production environment, refer to the production installation guide.
Was this page helpful?