Skip to content

Commit 5b6dc5e

Browse files
authored
Merge branch 'main' into remote_clusters_self_ssl
2 parents 008bf60 + 86d61b1 commit 5b6dc5e

File tree

16 files changed

+292
-31
lines changed

16 files changed

+292
-31
lines changed

deploy-manage/cloud-organization/billing/manage-subscription.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ You can [change your subscription level](/deploy-manage/cloud-organization/billi
7272
`Field-level or document-level security`
7373
: Remove any user role configurations based on field or document access [through the API](/deploy-manage/users-roles/cluster-or-deployment-auth/controlling-access-at-document-field-level.md) or the {{kib}} [Roles](/deploy-manage/users-roles/cluster-or-deployment-auth/defining-roles.md) page.
7474

75+
`ES|QL cross-cluster search`
76+
: Discontinue all [ES|QL CCS queries](elasticsearch://reference/query-languages/esql/esql-cross-clusters.md) or upgrade license tier to Enterprise.
77+
7578
::::{note}
7679
After you have made your changes to the deployment, it can take up to one hour to clear the notification banner.
7780
::::

deploy-manage/deploy/cloud-on-k8s/elastic-stack-configuration-policies.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ products:
1111
# {{stack}} configuration policies [k8s-stack-config-policy]
1212

1313
::::{warning}
14-
We have identified an issue with {{es}} 8.15.1 and 8.15.2 that prevents security role mappings configured via Stack configuration policies to work correctly. Avoid these versions and upgrade to 8.16.0 to remedy this issue if you are affected.
14+
We have identified an issue with {{es}} 8.15.1 and 8.15.2 that prevents security role mappings configured via Stack configuration policies to work correctly. Avoid these versions and upgrade to 8.16+ to remedy this issue if you are affected.
1515
::::
1616

1717

1818
::::{note}
1919
This requires a valid Enterprise license or Enterprise trial license. Check [the license documentation](../../license/manage-your-license-in-eck.md) for more details about managing licenses.
2020
::::
2121

22+
::::{note}
23+
Component templates created in configuration policies cannot currently be referenced from index templates created through the {{es}} API or {{kib}} UI.
24+
::::
2225

2326
Starting from ECK `2.6.1` and {{es}} `8.6.1`, {{stack}} configuration policies allow you to configure the following settings for {{es}}:
2427

deploy-manage/deploy/cloud-on-k8s/propagate-labels-annotations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ products:
66
- id: cloud-kubernetes
77
---
88

9-
# Propagate Labels and Annotations [k8s-propagate-labels-annotations]
9+
# Propagate labels and annotations [k8s-propagate-labels-annotations]
1010

1111
Starting with version `3.1.0`, {{eck}} supports propagating labels and annotations from the parent resource to the child resources it creates. This can be used on all custom resources managed by ECK, such as {{eck_resources_list}}.
1212

1313
The example below demonstrates how to use this feature on a {{es}} cluster, however, as mentioned above, this can be also applied to any custom resource managed by {{eck}}.
1414

15-
```yaml
15+
```yaml subs=true
1616
apiVersion: elasticsearch.k8s.elastic.co/v1
1717
kind: Elasticsearch
1818
metadata:
@@ -29,7 +29,7 @@ metadata:
2929
my-label2: "my-label2-value"
3030
name: elasticsearch-sample
3131
spec:
32-
version: 9.1.0
32+
version: {{version.stack}}
3333
nodeSets:
3434
- name: default
3535
config:
@@ -60,7 +60,7 @@ service/elasticsearch-sample-es-transport ClusterIP None <no
6060

6161
It is possible to use `*` as a wildcard to propagate all labels and annotations from the parent resource to the child resources. For example:
6262

63-
```yaml
63+
```yaml subs=true
6464
apiVersion: elasticsearch.k8s.elastic.co/v1
6565
kind: Elasticsearch
6666
metadata:
@@ -70,7 +70,7 @@ metadata:
7070
eck.k8s.alpha.elastic.co/propagate-labels: "*"
7171
name: elasticsearch-sample
7272
spec:
73-
version: 9.1.0
73+
version: {{version.stack}}
7474
nodeSets:
7575
- name: default
7676
config:

deploy-manage/monitor/autoops/cc-connect-self-managed-to-autoops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ If you already have an {{ecloud}} account:
8080
:sync: new
8181

8282
If you don’t have an existing {{ecloud}} account:
83-
1. Sign up for an account.
84-
2. Follow the prompts on your screen to create an organization.
83+
1. Go to the [Cloud Connected Services sign up](https://cloud.elastic.co/registration?onboarding_service_type=ccm) page.
84+
2. Follow the prompts on your screen to sign up for {{ecloud}} and create an organization.
8585
3. Go through the installation wizard as detailed in the following sections.
8686
::::
8787

explore-analyze/elastic-inference/eis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ Performance may vary during the Technical Preview.
6464
Batches are limited to a maximum of 16 documents.
6565
This is particularly relevant when using the [_bulk API](https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-bulk) for data ingestion.
6666

67-
#### Rate Limits
67+
#### Rate limits
6868

69-
Rate limit for search and ingest is currently at 500 requests per minute.
69+
Rate limit for search and ingest is currently at 500 requests per minute. This allows you to ingest approximately 8000 documents per minute at 16 documents per request.
7070

7171
## Pricing
7272

Binary file not shown.
115 KB
Loading
-30.5 KB
Loading

explore-analyze/query-filter/languages/esql-kibana.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,18 @@ FROM kibana_sample_data_logs | LIMIT 10
8383

8484
### Make your query readable [_make_your_query_readable]
8585

86-
For readability, you can put each processing command on a new line. The following query is identical to the previous one:
86+
For readability, you can put each processing command on a new line and add indentation. The following query is identical to the previous one:
8787

8888
```esql
8989
FROM kibana_sample_data_logs
90-
| LIMIT 10
90+
| LIMIT 10
9191
```
9292

93-
You can do that using the **Add line breaks on pipes** button from the query editor’s footer.
93+
You can do that automatically using the {icon}`pipeBreaks` **Prettify query** button from the query editor’s footer.
9494

9595
:::{image} /explore-analyze/images/esql-line-breakdown.gif
96-
:alt: Automatic line breaks for ES|QL queries
97-
:width: 50%
96+
:alt: Automatic line breaks and indentation for ES|QL queries
97+
:width: 75%
9898
:::
9999

100100
You can adjust the editor’s height by dragging its bottom border to your liking.
@@ -107,12 +107,21 @@ A query may result in warnings, for example when querying an unsupported field t
107107

108108
### Query history [esql-kibana-query-history]
109109

110-
You can reuse your recent {{esql}} queries in the query bar. In the query bar, click **Show recent queries**.
110+
You can reuse your recent {{esql}} queries in the query bar. In the query bar, select **Show recent queries**.
111111

112-
You can then scroll through your recent queries:
112+
You can then:
113+
- scroll through your most recent queries
114+
- {applies_to}`stack: ga 9.2` search for specific queries of your history
113115

114-
:::{image} /explore-analyze/images/elasticsearch-reference-esql-discover-query-history.png
116+
:::{image} /explore-analyze/images/esql-history.gif
115117
:alt: esql discover query history
118+
:width: 75%
119+
:::
120+
121+
:::{note}
122+
The maximum number of queries in the history depends on the version you're using:
123+
- {applies_to}`serverless: ga` {applies_to}`stack: ga 9.2` The query history can keep up to 50 KB of queries, which represents about 200 large queries, or about 300 short queries.
124+
- {applies_to}`stack: ga 9.0` The query history keeps your 20 most recent queries.
116125
:::
117126

118127
### Query help

explore-analyze/visualize/esorql.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ You can then **Save** and add it to an existing or a new dashboard using the sav
3939

4040
![Previewing an ESQL visualization](https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt69dcceb4f1e12bc1/66c752d6aff77d384dc44209/edit-esql-visualization.gif "")
4141

42-
:::{tip}
42+
:::{note}
4343
{applies_to}`stack: ga 9.1` {applies_to}`serverless: ga`
4444

45-
When you edit the query and run it again, the visualization configuration persists as long as it is compatible with the query changes.
45+
When you edit the query and run it again, the visualization configuration persists as long as it is compatible with the query changes. Refer to [](#chart-config-persist) for more details.
4646
:::
4747

4848
4. You can bind controls to your ES|QL visualizations in dashboards by creating [ES|QL controls](../dashboards/add-controls.md#add-esql-control).
4949
5. Select **Apply and close** to save the visualization to the dashboard.
5050

51-
## Customize the appearance of your {{esql}} visualization
51+
### Customize the appearance of your {{esql}} visualization
5252

5353
When editing an {{esql}} visualization, you can customize the appearance of the chart. To do that:
5454

@@ -62,8 +62,20 @@ When editing an {{esql}} visualization, you can customize the appearance of the
6262

6363
3. Return to the previous menu, then **Apply and close** the configuration to save your changes.
6464

65-
## Create an alert from your {{esql}} visualization
65+
### Chart configuration persistence over {{esql}} query update [chart-config-persist]
66+
```{applies_to}
67+
stack: ga 9.1
68+
serverless: ga
69+
```
6670

71+
When you edit the {{esql}} query and run it again, the visualization configuration persists as you defined it as long as it is compatible with the query changes.
72+
73+
The chart configuration resets or follows automatic suggestions when:
74+
- {applies_to}`stack: ga 9.2` You manually select a different chart type incompatible with the one previously selected.
75+
- {applies_to}`stack: ga 9.2` You create a new chart and haven't edited the visualization's options yet.
76+
- The query changes significantly and no longer returns compatible columns.
77+
78+
## Create an alert from your {{esql}} visualization
6779
```{applies_to}
6880
stack: ga 9.1
6981
serverless:

0 commit comments

Comments
 (0)