Skip to content

Commit f97680a

Browse files
committed
Add RERANK and COMPLETION to telemetry features.
1 parent 2d4fc26 commit f97680a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
import org.elasticsearch.xpack.esql.plan.logical.Rename;
2929
import org.elasticsearch.xpack.esql.plan.logical.Row;
3030
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
31+
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
32+
import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
3133
import org.elasticsearch.xpack.esql.plan.logical.join.LookupJoin;
3234
import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject;
3335
import org.elasticsearch.xpack.esql.plan.logical.show.ShowInfo;
@@ -56,7 +58,9 @@ public enum FeatureMetric {
5658
LOOKUP_JOIN(LookupJoin.class::isInstance),
5759
LOOKUP(Lookup.class::isInstance),
5860
CHANGE_POINT(ChangePoint.class::isInstance),
59-
INLINESTATS(InlineStats.class::isInstance);
61+
INLINESTATS(InlineStats.class::isInstance),
62+
COMPLETION(Completion.class::isInstance),
63+
RERANK(Rerank.class::isInstance);
6064

6165
/**
6266
* List here plans we want to exclude from telemetry

0 commit comments

Comments
 (0)