You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+42-42Lines changed: 42 additions & 42 deletions
Original file line number
Diff line number
Diff line change
@@ -46,13 +46,25 @@ It ingests log data via HTTP POST calls and exposes a query API to search and an
46
46
## Getting Started
47
47
48
48
### Docker
49
-
Parseable docker image is available on [Docker hub](https://hub.docker.com/r/parseable/parseable).
49
+
Parseable docker image is available on [Docker hub](https://hub.docker.com/r/parseable/parseable). Please remember to change the environment variables as relevant.
Parseable binary is available on [Github releases](https://github.com/parseablehq/parseable/releases). Please download the latest release for your platform.
81
+
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.
70
82
71
83
```sh
84
+
export P_S3_URL="https://minio.parseable.io:9000"
85
+
export P_S3_ACCESS_KEY="minioadmin"
86
+
export P_S3_SECRET_KEY="minioadmin"
87
+
export P_S3_REGION="us-east-1"
88
+
export P_S3_BUCKET="parseable"
89
+
export P_LOCAL_STORAGE="./data"
90
+
export P_USERNAME="parseable"
91
+
export P_PASSWORD="parseable"
72
92
chmod +x parseable
73
93
./parseable
74
94
```
75
95
76
96
<h1></h1>
77
97
78
-
Parseable dashboard is available at [http://localhost:8000](http://localhost:8000). Default username and password is `parseable`.
79
-
80
-
By default Parseable uses a public bucket to store the data. Please change the object storage credentials to your own bucket, before using Parseable.
98
+
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.
81
99
82
100
:memo: Parseable is in alpha stage and will evolve over time. There may be breaking changes between releases. Please give us your feedback in [Slack](https://launchpass.com/parseable), or [Issues](https://github.com/parseablehq/parseable/issues/new).
83
101
84
-
### Configuration
85
-
86
-
Parseable can be configured using environment variables listed below, with sample values.
102
+
## Using Parseable
103
+
`<stream-name>` is the name of the stream you want to create. `<basic-auth-header>` is the basic auth header value generated from username & password of the user you created in the environment variables. You can generate the basic auth header value using the following command.
87
104
88
105
```sh
89
-
export P_S3_URL="https://minio.parseable.io:9000"
90
-
export P_S3_ACCESS_KEY="minioadmin"
91
-
export P_S3_SECRET_KEY="minioadmin"
92
-
export P_S3_REGION="us-east-1"
93
-
export P_S3_BUCKET="parseable"
94
-
export P_LOCAL_STORAGE="./data"
95
-
export P_USERNAME="parseable"
96
-
export P_PASSWORD="parseable"
106
+
echo -n '<user-name>:<password>'| base64
97
107
```
98
108
99
-
##Live Demo
109
+
### Create a stream
100
110
101
-
Try out Parseable server with our demo instance. Send log data to default log stream `frontend`
111
+
```sh
112
+
curl --location --request PUT 'http://localhost:8000/api/v1/logstream/<stream-name>' \
For complete Parseable API documentation, refer to [Parseable API workspace on Postman](https://www.postman.com/parseable/workspace/parseable/overview).
140
-
141
-
:exclamation: Please do not store any sensitive data on this server as the data is openly accessible. We'll delete the data on this server periodically.
137
+
For complete Parseable API documentation, refer to [Parseable API Ref Docs](https://www.parseable.io/docs/api-reference).
138
+
139
+
## Live Demo
140
+
141
+
You can also try out Parseable on our [https://demo.parseable.io](https://demo.parseable.io). Credentials to login to the dashboard are `parseable` / `parseable`.
0 commit comments