Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/changelog/127731.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 127731
summary: ESQL - Enable telemetry for COMPLETION command
area: Search
type: feature
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.inference.TaskType;
import org.elasticsearch.xpack.esql.capabilities.PostAnalysisVerificationAware;
import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
import org.elasticsearch.xpack.esql.common.Failures;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.AttributeSet;
Expand All @@ -37,6 +38,7 @@ public class Completion extends InferencePlan<Completion>
implements
GeneratingPlan<Completion>,
SortAgnostic,
TelemetryAware,
PostAnalysisVerificationAware {

public static final String DEFAULT_OUTPUT_FIELD_NAME = "completion";
Expand Down
Loading