Skip to content

Commit

Permalink
update the description of host
Browse files Browse the repository at this point in the history
  • Loading branch information
knonomura committed Nov 13, 2019
1 parent b402631 commit 4df1495
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions guideline.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ griddb: {"col1":"2018-09-20T12:08:20.000Z","col2":"gs_admin","col3":null}

param|value
--------|------
host|database host(require)
port|database port(default: 8080)
host|URL to GridDB WebAPI(require)
cluster|cluster name(require)
database|database name(require). Use only "public"
container|container name(require)
Expand All @@ -89,8 +88,7 @@ Below is detail examples when using fluent-plugin-griddb in some scenarios.
```
<match griddb>
@type griddb
host localhost
port 8080
host http://localhost:8080/
cluster defaultCluster
database public
container container_1
Expand Down Expand Up @@ -147,8 +145,7 @@ Below configuration allow send 1 insert data request after receive 3 records
```
<match griddb_**>
@type griddb
host localhost
port 8080
host http://localhost:8080/
cluster defaultCluster
database public
container container_1
Expand Down Expand Up @@ -204,8 +201,7 @@ Below configuration allow send 1 insert data request each 10 seconds
```
<match griddb_**>
@type griddb
host localhost
port 8080
host http://localhost:8080/
cluster defaultCluster
database public
container container_1
Expand Down Expand Up @@ -260,8 +256,7 @@ Below configuration allow send insert request to multiple containers base on eve
```
<match griddb_**>
@type griddb
host localhost
port 8080
host http://localhost:8080/
cluster defaultCluster
database public
container ${tag}
Expand Down Expand Up @@ -339,8 +334,7 @@ The configuration for griddb plugin is the same:
```
<match griddb_**>
@type griddb
host localhost
port 8080
host http://localhost:8080/
cluster defaultCluster
database public
container container_1
Expand Down Expand Up @@ -387,8 +381,7 @@ Before data is sent to GridDB, we need to flatten JSON data with "filter_record_
# input data is : griddb_pc_status : {"col1":"2019-04-05T14:28:22.918Z","col2":"9.813"}
<match griddb_**>
@type griddb
host localhost
port 8080
host http://localhost:8080/
cluster defaultCluster
database public
container container_1
Expand Down

0 comments on commit 4df1495

Please sign in to comment.