Skip to content

Commit 225488e

Browse files
committed
Include FORK in telemetry
1 parent 23e7511 commit 225488e

File tree

1 file changed

+2
-1
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical

1 file changed

+2
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Fork.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import org.elasticsearch.common.io.stream.StreamOutput;
1111
import org.elasticsearch.xpack.esql.analysis.Analyzer;
1212
import org.elasticsearch.xpack.esql.capabilities.PostAnalysisPlanVerificationAware;
13+
import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
1314
import org.elasticsearch.xpack.esql.common.Failure;
1415
import org.elasticsearch.xpack.esql.common.Failures;
1516
import org.elasticsearch.xpack.esql.core.expression.Attribute;
@@ -32,7 +33,7 @@
3233
* A Fork is a n-ary {@code Plan} where each child is a sub plan, e.g.
3334
* {@code FORK [WHERE content:"fox" ] [WHERE content:"dog"] }
3435
*/
35-
public class Fork extends LogicalPlan implements PostAnalysisPlanVerificationAware {
36+
public class Fork extends LogicalPlan implements PostAnalysisPlanVerificationAware, TelemetryAware {
3637

3738
public static final String FORK_FIELD = "_fork";
3839
private final List<Attribute> output;

0 commit comments

Comments
 (0)