You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/search-connectors/es-connectors-sharepoint.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,8 +27,7 @@ As of Elastic 9.0, managed connectors on Elastic Cloud Hosted are no longer avai
27
27
This connector is available as a self-managed connector. This self-managed connector is compatible with Elastic versions **8.9.0+**. To use this connector, satisfy all [self-managed connector requirements](/reference/search-connectors/self-managed-connectors.md).
28
28
29
29
::::{note}
30
-
This connector is in **beta** and is subject to change. Beta features are subject to change and are not covered by the support SLA of generally available (GA) features. Elastic plans to promote this feature to GA in a future release.
31
-
30
+
This connector is in **beta** and is subject to change. Beta features are subject to change and are not covered by the support SLA of generally available (GA) features.
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/TranslateTimeSeriesAggregate.java
+39-22Lines changed: 39 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -51,25 +51,25 @@
51
51
* becomes
52
52
*
53
53
* TS k8s
54
-
* | STATS rate(request) BY _tsid
55
-
* | STATS max(`rate(request)`)
54
+
* | STATS rate_$1 = rate(request) BY _tsid
55
+
* | STATS max(rate_$1)
56
56
*
57
57
* TS k8s | STATS max(rate(request)) BY host
58
58
*
59
59
* becomes
60
60
*
61
61
* TS k8s
62
-
* | STATS rate(request), VALUES(host) BY _tsid
63
-
* | STATS max(`rate(request)`) BY host=`VALUES(host)`
62
+
* | STATS rate_$1=rate(request), VALUES(host) BY _tsid
63
+
* | STATS max(rate_$1) BY host=`VALUES(host)`
64
64
*
65
65
* TS k8s | STATS avg(rate(request)) BY host
66
66
*
67
67
* becomes
68
68
*
69
69
* TS k8s
70
-
* | STATS rate(request), VALUES(host) BY _tsid
71
-
* | STATS sum=sum(`rate(request)`), count(`rate(request)`) BY host=`VALUES(host)`
0 commit comments