diff --git a/docs/src/user-guide/quick-start-cluster-setup/multi-node.md b/docs/src/user-guide/quick-start-cluster-setup/multi-node.md index d4fbd221f..5ae71bca2 100644 --- a/docs/src/user-guide/quick-start-cluster-setup/multi-node.md +++ b/docs/src/user-guide/quick-start-cluster-setup/multi-node.md @@ -134,17 +134,17 @@ cases, see the [SeaweedFS docs][seaweedfs-docs]. weed master -port 9333 weed filer -port 8888 -master "localhost:9333" ``` - + 3. Start one or more volume servers on one or more hosts. {style=lower-alpha} 1. Create a directory where you want SeaweedFS to store data. 2. Start the volume server: - + ```bash weed volume -mserver ":9333" -dir -max 0 ``` - + * `` is the hostname/IP of the master host. * `` is the directory where you want SeaweedFS to store data. 4. Start a FUSE mount on every host that you want to run a CLP worker: diff --git a/docs/src/user-guide/quick-start-search/ui-search.md b/docs/src/user-guide/quick-start-search/ui-search.md index 8bd3055e7..32af5bb4b 100644 --- a/docs/src/user-guide/quick-start-search/ui-search.md +++ b/docs/src/user-guide/quick-start-search/ui-search.md @@ -1,7 +1,7 @@ # Searching from the UI CLP includes a web interface available at [http://localhost:4000](http://localhost:4000) by default -(if you changed `webui.host` or `webui.port` in `etc/clp-config.yml`, use the new values). +(if you changed `webui.host` or `webui.port` in `etc/clp-config.yml`, use the new values). :::{image} clp-search-ui.png ::: diff --git a/docs/src/user-guide/reference-json-search-syntax.md b/docs/src/user-guide/reference-json-search-syntax.md index 72f123f56..4802ba524 100644 --- a/docs/src/user-guide/reference-json-search-syntax.md +++ b/docs/src/user-guide/reference-json-search-syntax.md @@ -74,7 +74,7 @@ syntax above only works for values that are strings. :::{caution} CLP doesn't currently support the `?` wildcard (which matches any single character) _except_ in -values containing multiple words. This limitation will be addressed in a future version of CLP. +values containing multiple words. This limitation will be addressed in a future version of CLP. ::: ### Wildcards in keys @@ -152,7 +152,7 @@ key1: value1 AND (key2: valueA OR key2: valueB) AND NOT key3: value3 There are three supported boolean operators: -* `AND` - the expressions on _both_ sides of the operator must be true. +* `AND` - the expressions on _both_ sides of the operator must be true. * `OR` - the expressions on _either_ side of the operator must be true. * `NOT` - the expression after the operator must _not_ be true. @@ -218,17 +218,17 @@ There are a few notable differences between CLP's search syntax and KQL: * When querying for multiple kv-pairs in an array, CLP does not guarantee that all kv-pairs are in the same object, whereas KQL does. * For example, in CLP, the query `a: {"b": 0, "c": 0}` will match log events like - + ```json {"a": [{"b": 0}, {"c": 0}]} ``` - + and ```json {"a": [{"b": 0, "c": 0}]} ``` - + Whereas with KQL, the query would only match the second log event. [kql]: https://www.elastic.co/guide/en/kibana/current/kuery-query.html