Commit 33a26290 authored by Marcin Sedlak-Jakubowski's avatar Marcin Sedlak-Jakubowski Committed by Marcia Ramos

Create a table in Pod logs full-text search doc

parent e7f9dff2
...@@ -65,13 +65,13 @@ you can search the content of your logs via a search bar. ...@@ -65,13 +65,13 @@ you can search the content of your logs via a search bar.
The search is passed on to Elasticsearch using the [simple_query_string](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-simple-query-string-query.html) The search is passed on to Elasticsearch using the [simple_query_string](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-simple-query-string-query.html)
Elasticsearch function, which supports the following operators: Elasticsearch function, which supports the following operators:
``` | Operator | Description |
+ signifies AND operation |----------------------------|------------------------------------------------------------|
| signifies OR operation | `\|` | An OR operation. |
- negates a single token | `-` | Negates a single token. |
" wraps a number of tokens to signify a phrase for searching | `+` | An AND operation. |
* at the end of a term signifies a prefix query | `"` | Wraps a number of tokens to signify a phrase for searching. |
( and ) signify precedence | `*` (at the end of a term) | A prefix query. |
~N after a word signifies edit distance (fuzziness) | `(` and `)` | Precedence. |
~N after a phrase signifies slop amount | `~N` (after a word) | Edit distance (fuzziness). |
``` | `~N` (after a phrase) | Slop amount. |
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment