Skip to content

Commit da71b5a

Browse files
committed
javadoc
1 parent f35c130 commit da71b5a

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
import java.io.IOException;
1818
import 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+
*/
2024
public class TimeSeriesAggregate extends Aggregate {
2125
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
2226
LogicalPlan.class,

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/TimeSeriesAggregateExec.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@
1616
import org.elasticsearch.xpack.esql.core.expression.NamedExpression;
1717
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
1818
import org.elasticsearch.xpack.esql.core.tree.Source;
19+
import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
1920

2021
import java.io.IOException;
2122
import 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+
*/
2328
public class TimeSeriesAggregateExec extends AggregateExec {
2429
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
2530
PhysicalPlan.class,

0 commit comments

Comments
 (0)