Skip to content

Commit 1a569d7

Browse files
authored
Merge branch 'main' into changelog-redirect
2 parents 6b49c54 + b75d5c5 commit 1a569d7

File tree

78 files changed

+589
-1083
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+589
-1083
lines changed

explore-analyze/alerts/kibana/rule-type-es-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ When you create an {{es}} query rule, your choice of query type affects the info
3737

3838
If you use [KQL](../../query-filter/languages/kql.md) or [Lucene](../../query-filter/languages/lucene-query-syntax.md), you must specify a data view then define a text-based query. For example, `http.request.referrer: "https://example.com"`.
3939

40-
If you use [ES|QL](../../query-filter/languages/esorql.md), you must provide a source command followed by an optional series of processing commands, separated by pipe characters (|). [8.16.0] For example:
40+
If you use [ES|QL](../../query-filter/languages/esql.md), you must provide a source command followed by an optional series of processing commands, separated by pipe characters (|). [8.16.0] For example:
4141

4242
```sh
4343
FROM kibana_sample_data_logs

explore-analyze/discover/try-esql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Elasticsearch Query Language, {{esql}}, makes it easier to explore your data
1010
In this tutorial we’ll use the {{kib}} sample web logs in Discover and Lens to explore the data and create visualizations.
1111

1212
::::{tip}
13-
For the complete {{esql}} documentation, including tutorials, examples and the full syntax reference, refer to the [{{es}} documentation](../query-filter/languages/esorql.md). For a more detailed overview of {{esql}} in {{kib}}, refer to [Use {{esql}} in Kibana](../query-filter/languages/esql-kibana.md).
13+
For the complete {{esql}} documentation, including tutorials, examples and the full syntax reference, refer to the [{{es}} documentation](../query-filter/languages/esql.md). For a more detailed overview of {{esql}} in {{kib}}, refer to [Use {{esql}} in Kibana](../query-filter/languages/esql-kibana.md).
1414

1515
::::
1616

explore-analyze/geospatial-analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Data is often messy and incomplete. [Ingest pipelines](../manage-data/ingest/tra
3434

3535
## ES|QL [esql-query]
3636

37-
[ES|QL](query-filter/languages/esorql.md) has support for [Geospatial Search](https://www.elastic.co/guide/en/elasticsearch/reference/current/esql-functions-operators.html#esql-spatial-functions) functions, enabling efficient index searching for documents that intersect with, are within, are contained by, or are disjoint from a query geometry. In addition, the `ST_DISTANCE` function calculates the distance between two points.
37+
[ES|QL](query-filter/languages/esql.md) has support for [Geospatial Search](https://www.elastic.co/guide/en/elasticsearch/reference/current/esql-functions-operators.html#esql-spatial-functions) functions, enabling efficient index searching for documents that intersect with, are within, are contained by, or are disjoint from a query geometry. In addition, the `ST_DISTANCE` function calculates the distance between two points.
3838

3939
* [`ST_INTERSECTS`](https://www.elastic.co/guide/en/elasticsearch/reference/current/esql-functions-operators.html#esql-st_intersects)
4040
* [`ST_DISJOINT`](https://www.elastic.co/guide/en/elasticsearch/reference/current/esql-functions-operators.html#esql-st_disjoint)
Lines changed: 42 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,53 @@
11
---
2+
navigation_title: Machine learning
23
mapped_urls:
34
- https://www.elastic.co/guide/en/machine-learning/current/index.html
45
- https://www.elastic.co/guide/en/machine-learning/current/machine-learning-intro.html
56
- https://www.elastic.co/guide/en/serverless/current/machine-learning.html
67
---
78

8-
# Machine learning
9+
# What is Elastic Machine Learning? [machine-learning-intro]
910

10-
% What needs to be done: Align serverless/stateful
11+
{{ml-cap}} features analyze your data and generate models for its patterns of behavior. The type of analysis that you choose depends on the questions or problems you want to address and the type of data you have available.
1112

12-
% Scope notes: include references to trained model autoscaling where appropriate
13+
## Unsupervised {{ml}} [machine-learning-unsupervised]
1314

14-
% Use migrated content from existing pages that map to this page:
15+
There are two types of analysis that can deduce the patterns and relationships within your data without training or intervention: *{{anomaly-detect}}* and *{{oldetection}}*.
1516

16-
% - [ ] ./raw-migrated-files/stack-docs/machine-learning/index.md
17-
% - [ ] ./raw-migrated-files/stack-docs/machine-learning/machine-learning-intro.md
18-
% - [ ] ./raw-migrated-files/docs-content/serverless/machine-learning.md
17+
[{{anomaly-detect-cap}}](machine-learning/anomaly-detection.md) requires time series data. It constructs a probability model and can run continuously to identify unusual events as they occur. The model evolves over time; you can use its insights to forecast future behavior.
18+
19+
[{{oldetection-cap}}](machine-learning/data-frame-analytics/ml-dfa-finding-outliers.md) does not require time series data. It is a type of {{dfanalytics}} that identifies unusual points in a data set by analyzing how close each data point is to others and the density of the cluster of points around it. It does not run continuously; it generates a copy of your data set where each data point is annotated with an {{olscore}}. The score indicates the extent to which a data point is an outlier compared to other data points.
20+
21+
## Supervised {{ml}} [machine-learning-supervised]
22+
23+
There are two types of {{dfanalytics}} that require training data sets: *{{classification}}* and *{{regression}}*.
24+
25+
In both cases, the result is a copy of your data set where each data point is annotated with predictions and a trained model, which you can deploy to make predictions for new data. For more information, refer to [Introduction to supervised learning](machine-learning/data-frame-analytics/ml-dfa-overview.md#ml-supervised-workflow).
26+
27+
[{{classification-cap}}](machine-learning/data-frame-analytics/ml-dfa-classification.md) learns relationships between your data points in order to predict discrete categorical values, such as whether a DNS request originates from a malicious or benign domain.
28+
29+
[{{regression-cap}}](machine-learning/data-frame-analytics/ml-dfa-regression.md) learns relationships between your data points in order to predict continuous numerical values, such as the response time for a web request.
30+
31+
## Feature availability by project type [machine-learning-serverless-availability]
32+
33+
The {{ml-features}} that are available vary by project type:
34+
35+
* {{es-serverless}} projects have trained models.
36+
* {{observability}} projects have {{anomaly-jobs}}.
37+
* {{elastic-sec}} projects have {{anomaly-jobs}}, {{dfanalytics-jobs}}, and trained models.
38+
39+
## Synchronize saved objects [machine-learning-synchronize-saved-objects]
40+
41+
Before you can view your {{ml}} {dfeeds}, jobs, and trained models in {{kib}}, they must have saved objects. For example, if you used APIs to create your jobs, wait for automatic synchronization or go to the **{{ml-app}}** page and click **Synchronize saved objects**.
42+
43+
## Export and import jobs [machine-learning-export-and-import-jobs]
44+
45+
You can export and import your {{ml}} job and {{dfeed}} configuration details on the **{{ml-app}}** page. For example, you can export jobs from your test environment and import them in your production environment.
46+
47+
The exported file contains configuration details; it does not contain the {{ml}} models. For {{anomaly-detect}}, you must import and run the job to build a model that is accurate for the new environment. For {{dfanalytics}}, trained models are portable; you can import the job then transfer the model to the new cluster. Refer to [Exporting and importing {{dfanalytics}} trained models](machine-learning/data-frame-analytics/ml-trained-models.md#export-import).
48+
49+
There are some additional actions that you must take before you can successfully import and run your jobs:
50+
51+
* The {{data-sources}} that are used by {{anomaly-detect}} {dfeeds} and {{dfanalytics}} source indices must exist; otherwise, the import fails.
52+
* If your {{anomaly-jobs}} use custom rules with filter lists, the filter lists must exist; otherwise, the import fails.
53+
* If your {{anomaly-jobs}} were associated with calendars, you must create the calendar in the new environment and add your imported jobs to the calendar.

explore-analyze/machine-learning/anomaly-detection.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ mapped_urls:
44
- https://www.elastic.co/guide/en/kibana/current/xpack-ml-anomalies.html
55
---
66

7-
# Anomaly detection
7+
# Anomaly detection [ml-ad-overview]
88

9-
% What needs to be done: Align serverless/stateful
9+
You can use {{stack}} {{ml-features}} to analyze time series data and identify anomalous patterns in your data set.
1010

11-
% Scope notes: Colleen McGinnis removed "https://www.elastic.co/guide/en/serverless/current/observability-machine-learning.html" and "All children" because this page is also used below in "AIOps Labs" with "All children" selected. We can't copy all children to two places.
12-
13-
% Use migrated content from existing pages that map to this page:
14-
15-
% - [ ] ./raw-migrated-files/stack-docs/machine-learning/ml-ad-overview.md
16-
% - [ ] ./raw-migrated-files/kibana/kibana/xpack-ml-anomalies.md
11+
* [Finding anomalies](../../../explore-analyze/machine-learning/anomaly-detection/ml-ad-finding-anomalies.md)
12+
* [Tutorial: Getting started with {{anomaly-detect}}](../../../explore-analyze/machine-learning/anomaly-detection/ml-getting-started.md)
13+
* [*Advanced concepts*](../../../explore-analyze/machine-learning/anomaly-detection/ml-ad-concepts.md)
14+
* [*API quick reference*](../../../explore-analyze/machine-learning/anomaly-detection/ml-api-quickref.md)
15+
* [How-tos](../../../explore-analyze/machine-learning/anomaly-detection/anomaly-how-tos.md)
16+
* [*Resources*](../../../explore-analyze/machine-learning/anomaly-detection/ml-ad-resources.md)

0 commit comments

Comments
 (0)