Skip to content

Commit f390fa1

Browse files
committed
fixed typos
1 parent 2f668e6 commit f390fa1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[![Docker Container Pulls](https://img.shields.io/docker/pulls/cjimti/rxtx.svg)](https://hub.docker.com/r/cjimti/rxtx/)
1212

1313
# rxtx
14-
**rxtx** is a queue based data collector > data transmitter. Useful for online/offline data collection, back pressure buffering or general queuing. **rxtx** uses [bbolt](https://github.com/coreos/bbolt) maintained by CoreOs, a single file database for soring messages before they are able to be sent.
14+
**rxtx** is a queue based data collector > data transmitter. Useful for online/offline data collection, back pressure buffering or general queuing. **rxtx** uses [bbolt](https://github.com/coreos/bbolt) maintained by CoreOs, a single file database for storing messages before they can be sent.
1515

1616
## Test on MacOs
1717

@@ -46,19 +46,19 @@ go run ./rxtx.go -h
4646

4747
Usage of rxtx:
4848
-batch int
49-
Batch size. (default 5000)
49+
Batch size. (default 5000)
5050
-ingest string
51-
Ingest server. (default "http://localhost:8081/in")
51+
Ingest server. (default "http://localhost:8081/in")
5252
-interval int
53-
Seconds between intervals. (default 30)
53+
Seconds between intervals. (default 30)
5454
-maxq int
55-
Max number of message in queue. (default 2000000)
55+
Max number of message in queue. (default 2000000)
5656
-name string
57-
Service name. (default "rxtx")
57+
Service name. (default "rxtx")
5858
-path string
59-
Directory to store database. (default "./")
59+
Directory to store database. (default "./")
6060
-port string
61-
Server port. (default "8080")
61+
Server port. (default "8080")
6262

6363
```
6464

@@ -69,7 +69,7 @@ go run ./rxtx.go
6969

7070
#### Add message to queue
7171

72-
The **rxtx** services accepts http **POST** data to an API endpoint in the following form /rx/**PRODUCER**/**KEY**/**LABEL/...**/. One label is required, however as many labels as nessary may be added, separated by a forward slash.
72+
The **rxtx** services accepts HTTP **POST** data to an API endpoint in the following form /rx/**PRODUCER**/**KEY**/**LABEL/...**/. One label is required, however as many labels as necessary may be added, separated by a forward slash.
7373

7474
```bash
7575
curl -w "\n" -d "{\"generic\": \"$RANDOM\"}" -X POST http://localhost:8080/rx/me/generic_data/generic/test/data

0 commit comments

Comments
 (0)