File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1717import java .io .IOException ;
1818import java .util .List ;
1919
20+ /**
21+ * An extension of {@link Aggregate} to perform time-series aggregation per time-series, such as rate or _over_time.
22+ * The grouping must be `_tsid` and `tbucket` or just `_tsid`.
23+ */
2024public class TimeSeriesAggregate extends Aggregate {
2125 public static final NamedWriteableRegistry .Entry ENTRY = new NamedWriteableRegistry .Entry (
2226 LogicalPlan .class ,
Original file line number Diff line number Diff line change 1616import org .elasticsearch .xpack .esql .core .expression .NamedExpression ;
1717import org .elasticsearch .xpack .esql .core .tree .NodeInfo ;
1818import org .elasticsearch .xpack .esql .core .tree .Source ;
19+ import org .elasticsearch .xpack .esql .plan .logical .Aggregate ;
1920
2021import java .io .IOException ;
2122import java .util .List ;
2223
24+ /**
25+ * An extension of {@link Aggregate} to perform time-series aggregation per time-series, such as rate or _over_time.
26+ * The grouping must be `_tsid` and `tbucket` or just `_tsid`.
27+ */
2328public class TimeSeriesAggregateExec extends AggregateExec {
2429 public static final NamedWriteableRegistry .Entry ENTRY = new NamedWriteableRegistry .Entry (
2530 PhysicalPlan .class ,
You can’t perform that action at this time.
0 commit comments