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: docs/use-cases/observability/clickstack/migration/elastic/search.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ For simple log and trace exploration, HyperDX provides a [Lucene-style syntax](/
23
23
24
24
<Imageimg={hyperdx_search}alt="Search"size="lg"/>
25
25
26
-
HyperDX's search interface supports this familiar syntax but translates it behind the scenes into efficient SQL `WHERE` clauses, making the experience familiar for Kibana users while still allowing users to leverage the power of SQL when needed. This allows users to exploit the full range of [string search functions](/sql-reference/functions/string-search-functions), [similarity functions](/sql-reference/functions/string-functions#stringjaccardindex) and [date time functions](/sql-reference/functions/date-time-functions) in ClickHouse.
26
+
HyperDX's search interface supports this familiar syntax but translates it behind the scenes into efficient SQL `WHERE` clauses, making the experience familiar for Kibana users while still allowing users to leverage the power of SQL when needed. This allows users to exploit the full range of [string search functions](/sql-reference/functions/string-search-functions), [similarity functions](/sql-reference/functions/string-functions#stringJaccardIndex) and [date time functions](/sql-reference/functions/date-time-functions) in ClickHouse.
27
27
28
28
<Imageimg={hyperdx_sql}alt="SQL"size="lg"/>
29
29
@@ -49,7 +49,7 @@ Both HyperDX and Elasticsearch provide flexible query languages to enable intuit
49
49
| Inclusive/exclusive |`duration:{100 TO 200}` (exclusive) | Same | Curly brackets denote exclusive bounds. `*` in ranges are not supported. e.g. `duration:[100 TO *]`|
50
50
| Exists check | N/A |`_exists_:user` or `field:*`|`_exists_` is not supported. Use `LogAttributes.log.file.path: *` for `Map` columns e.g. `LogAttributes`. For root columns, these have to exist and will have a default value if not included in the event. To search for default values or missing columns use the same syntax as Elasticsearch ` ServiceName:*` or `ServiceName != ''`. |
51
51
| Regex |`match` function |`name:/joh?n(ath[oa]n)/`| Not currently supported in Lucene syntax. Users can use SQL and the [`match`](/sql-reference/functions/string-search-functions#match) function or other [string search functions](/sql-reference/functions/string-search-functions).|
52
-
| Fuzzy match |`editDistance('quikc', field) = 1`|`quikc~`| Not currently supported in Lucene syntax. Distance functions can be used in SQL e.g. `editDistance('rror', SeverityText) = 1` or [other similarity functions](/sql-reference/functions/string-functions#jarosimilarity). |
52
+
| Fuzzy match |`editDistance('quikc', field) = 1`|`quikc~`| Not currently supported in Lucene syntax. Distance functions can be used in SQL e.g. `editDistance('rror', SeverityText) = 1` or [other similarity functions](/sql-reference/functions/string-functions#jaroSimilarity). |
53
53
| Proximity search | Not supported |`"fox quick"~5`| Not currently supported in Lucene syntax. |
54
54
| Boosting |`quick^2 fox`|`quick^2 fox`| Not supported in HyperDX at present. |
55
55
| Field wildcard |`service.*:error`|`service.*:error`| Not supported in HyperDX at present. |
0 commit comments