Skip to content

Commit aefcb32

Browse files
authored
Move logo and image to docs repo and readme update (#15)
1 parent 3011834 commit aefcb32

File tree

3 files changed

+31
-13
lines changed

3 files changed

+31
-13
lines changed

README.md

Lines changed: 31 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://www.parseable.io" target="_blank"><img src="assets/logo.svg" alt="Parseable" width="600" height="150" /></a>
2+
<a href="https://www.parseable.io" target="_blank"><img src="https://raw.githubusercontent.com/parseablehq/docs/main/static/img/logo.svg" alt="Parseable" width="600" height="150" /></a>
33
</p>
44

55
<p align="center">
@@ -22,14 +22,34 @@ Parseable is an open source, cloud native, log storage and management platform.
2222
Parseable helps you ingest high volumes of log data from various sources (Fluentbit, Logstash etc or directly from applications). Parseable stores log data into highly compressed Parquet file format. With object storage as primary storage for Parseable, you get seamless scale and flexibility for ever growing log data.
2323

2424
<p align="center">
25-
<img src="assets/overview.png" alt="Parseable Overview" width="800" height="650" />
25+
<img src="https://github.com/parseablehq/docs/raw/main/static/img/overview.png" alt="Parseable Overview" width="800" height="650" />
2626
</p>
2727

2828
<h1></h1>
2929

3030
## Live Demo
3131

32-
Checkout Parseable without installation.
32+
Try out Parseable server with our demo instance.
33+
34+
1. Post log data to default log stream `frontend`
35+
36+
```sh
37+
curl --location --request POST 'https://demo.parseable.io/api/v1/logstream/frontend' \
38+
--header 'X-P-META-label1: value1' \
39+
--header 'X-P-META-label2: value2' \
40+
--header 'Authorization: Basic cGFyc2VhYmxlOnBhcnNlYWJsZQ==' \
41+
--header 'Content-Type: application/json' \
42+
--data-raw '[
43+
{
44+
"log": "{\"id\": 4, \"host\":\"153.10.110.81\", \"user-identifier\":\"-\", \"datetime\":\"24/Jun/2022:14:12:15 +0000\", \"method\": \"GET\", \"request\": \"/virtual/drive\", \"protocol\":\"HTTP/2.0\", \"status\":500, \"bytes\":21969, \"referer\": \"http://www.seniordisintermediate.net/mesh/users\"}",
45+
"meta_Host": "10.116.0.3",
46+
"meta_Source": "10.244.0.147",
47+
"meta_ContainerName": "log-generator"
48+
}
49+
]'
50+
```
51+
52+
2. Then access the Parseable dashboard to verify the log data is present
3353

3454
<table>
3555
<tr>
@@ -46,21 +66,20 @@ Checkout Parseable without installation.
4666
</tr>
4767
</table>
4868

49-
You can also use this demo endpoint to send log data. For Parseable API documentation, refer to [Parseable API workspace on Postman](https://www.postman.com/parseable/workspace/parseable/overview).
50-
51-
Note: Please do not store any sensitive data on this server as the data is openly available. We'll delete the data on this server periodically.
69+
For complete Parseable API documentation, refer to [Parseable API workspace on Postman](https://www.postman.com/parseable/workspace/parseable/overview).
5270

71+
**Note**: Please do not store any sensitive data on this server as the data is openly available. We'll delete the data on this server periodically.
5372
## Why Parseable
5473

55-
* Index free design.
56-
* Highly compressed log data in Parquet - columnar, open data format. Search logs via Parseable UI or bring your own analytics platform.
74+
* Indexing free design.
75+
* Highly compressed log data, stored in [Parquet](https://parquet.apache.org) - columnar, open data format. Query logs via Parseable or bring your own analytics platform.
5776
* Stateless design allowing seamless scale and flexibility.
58-
* Own your log storage data on your object storage buckets.
59-
* SDK less, simple REST API calls to upload logs.
77+
* Own your log data on your object storage buckets.
78+
* SDK less, simple REST API calls for log ingestion.
6079

6180
## Features
6281

82+
* Kubernetes native design, allowing to get started with pod logs in minutes.
6383
* Filter log data on tags.
6484
* Query for specific keywords and fields.
65-
* Intuitive dashboard to parse and query through log data.
66-
* Get started on Kubernetes with helm chart.
85+
* Intuitive dashboard to parse and query the log data.

assets/logo.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/overview.png

-95.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)