File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 2828import org .elasticsearch .xpack .esql .plan .logical .Rename ;
2929import org .elasticsearch .xpack .esql .plan .logical .Row ;
3030import 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 ;
3133import org .elasticsearch .xpack .esql .plan .logical .join .LookupJoin ;
3234import org .elasticsearch .xpack .esql .plan .logical .local .EsqlProject ;
3335import 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
You can’t perform that action at this time.
0 commit comments