Skip to content

Commit 4ab056e

Browse files
[DOCS] DISSECT does not support reference keys (#102002) (#102004)
1 parent 7a3ae72 commit 4ab056e

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

docs/reference/esql/esql-limitations.asciidoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,18 @@ now() - 2023-10-26
136136

137137
include::esql-enrich-data.asciidoc[tag=limitations]
138138

139+
[discrete]
140+
[[esql-limitations-dissect]]
141+
=== Dissect limitations
142+
143+
include::esql-process-data-with-dissect-grok.asciidoc[tag=dissect-limitations]
144+
145+
[discrete]
146+
[[esql-limitations-grok]]
147+
=== Grok limitations
148+
149+
include::esql-process-data-with-dissect-grok.asciidoc[tag=grok-limitations]
150+
139151
[discrete]
140152
[[esql-limitations-mv]]
141153
=== Multivalue limitations

docs/reference/esql/esql-process-data-with-dissect-grok.asciidoc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ include::../ingest/processors/dissect.asciidoc[tag=dissect-key-modifiers]
120120
| `+` | Append | left | `%{+keyname} %{+keyname}` | Appends two or more fields together | <<esql-append-modifier,link>>
121121
| `+` with `/n` | Append with order | left and right | `%{+keyname/2} %{+keyname/1}` | Appends two or more fields together in the order specified | <<esql-append-order-modifier,link>>
122122
| `?` | Named skip key | left | `%{?ignoreme}` | Skips the matched value in the output. Same behavior as `%{}`| <<esql-named-skip-key,link>>
123-
| `*` and `&` | Reference keys | left | `%{*r1} %{&r1}` | Sets the output key as value of `*` and output value of `&` | <<esql-reference-keys,link>>
124123
|======
125124

126125
[[esql-dissect-modifier-skip-right-padding]]
@@ -139,9 +138,13 @@ include::../ingest/processors/dissect.asciidoc[tag=append-order-modifier]
139138
====== Named skip key (`?`)
140139
include::../ingest/processors/dissect.asciidoc[tag=named-skip-key]
141140

142-
[[esql-reference-keys]]
143-
====== Reference keys (`*` and `&`)
144-
include::../ingest/processors/dissect.asciidoc[tag=reference-keys]
141+
[[esql-dissect-limitations]]
142+
===== Limitations
143+
144+
// tag::dissect-limitations[]
145+
The `DISSECT` command does not support
146+
<<dissect-modifier-reference-keys,reference keys>>.
147+
// end::dissect-limitations[]
145148

146149
[[esql-process-data-with-grok]]
147150
==== Process data with `GROK`
@@ -253,6 +256,8 @@ as the `GROK` command.
253256
[[esql-grok-limitations]]
254257
===== Limitations
255258

259+
// tag::grok-limitations[]
256260
The `GROK` command does not support configuring <<custom-patterns,custom
257261
patterns>>, or <<trace-match,multiple patterns>>. The `GROK` command is not
258262
subject to <<grok-watchdog,Grok watchdog settings>>.
263+
// end::grok-limitations[]

0 commit comments

Comments
 (0)