forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into actions/webhook-remove-header
* master: (115 commits) [Logs UI] Correct trial period duration in anomaly splash screen (elastic#74249) [Discover] Inline noWhiteSpace function (elastic#74331) [DOCS] Add Observability topic (elastic#73041) skip flaky suite (elastic#74327) [Security Solution][Detections] Fixes Severity Override not matching for Elastic Endpoint Security rule (elastic#74317) [Security Solution][Exceptions] - Fixes exceptions builder nested deletion issue and adds unit tests (elastic#74250) Fixed Alert details does not update page title and breadcrumb (elastic#74214) [src/dev/build] build Kibana Platform bundles from source (elastic#73591) [Reporting] Shorten asset path to help CLI FS Watcher (elastic#74185) Fix TMS not loaded in legacy maps (elastic#73570) [Security Solution] styling for notes' panel (elastic#74274) [Security Solution][Tech Debt] cleans up ts-ignore issues and some smaller linter issues (elastic#74268) Make the actions plugin support generics (elastic#71439) [Security Solution] Keep original note creator (elastic#74203) [CI] Fix xpack kibana build dir in xpack visual regression script [CI] Fix baseline_capture job by adding parallel process number back [Monitoring] Ensure setup mode works on cloud but only for alerts (elastic#73127) [Maps] Custom color ramps should show correctly on the map for mvt layers (elastic#74169) [kbn/optimizer] remove unused modules (elastic#74195) [CI] Add pipeline task queue framework and merge workers into one (elastic#71268) ...
- Loading branch information
Showing
1,039 changed files
with
16,868 additions
and
8,022 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# NOTE: This Dockerfile is ONLY used to run certain tasks in CI. It is not used to run Kibana or as a distributable. | ||
# If you're looking for the Kibana Docker image distributable, please see: src/dev/build/tasks/os_packages/docker_generator/templates/dockerfile.template.ts | ||
|
||
ARG NODE_VERSION=10.21.0 | ||
|
||
FROM node:${NODE_VERSION} AS base | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install xvfb gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 \ | ||
libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 \ | ||
libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 \ | ||
libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 \ | ||
libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget openjdk-8-jre && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ | ||
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ | ||
&& apt-get update \ | ||
&& apt-get install -y rsync jq bsdtar google-chrome-stable \ | ||
--no-install-recommends \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN LATEST_VAULT_RELEASE=$(curl -s https://api.github.com/repos/hashicorp/vault/tags | jq --raw-output .[0].name[1:]) \ | ||
&& curl -L https://releases.hashicorp.com/vault/${LATEST_VAULT_RELEASE}/vault_${LATEST_VAULT_RELEASE}_linux_amd64.zip -o vault.zip \ | ||
&& unzip vault.zip \ | ||
&& rm vault.zip \ | ||
&& chmod +x vault \ | ||
&& mv vault /usr/local/bin/vault | ||
|
||
RUN groupadd -r kibana && useradd -r -g kibana kibana && mkdir /home/kibana && chown kibana:kibana /home/kibana | ||
|
||
COPY ./bash_standard_lib.sh /usr/local/bin/bash_standard_lib.sh | ||
RUN chmod +x /usr/local/bin/bash_standard_lib.sh | ||
|
||
COPY ./runbld /usr/local/bin/runbld | ||
RUN chmod +x /usr/local/bin/runbld | ||
|
||
USER kibana |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,61 @@ | ||
[role="xpack"] | ||
[[machine-learning-integration]] | ||
=== integration | ||
=== Machine learning integration | ||
|
||
++++ | ||
<titleabbrev>Integrate with machine learning</titleabbrev> | ||
++++ | ||
|
||
The Machine Learning integration initiates a new job predefined to calculate anomaly scores on APM transaction durations. | ||
Jobs can be created per transaction type, and are based on the service's average response time. | ||
The Machine learning integration initiates a new job predefined to calculate anomaly scores on APM transaction durations. | ||
With this integration, you can quickly pinpoint anomalous transactions and see the health of | ||
any upstream and downstream services. | ||
|
||
After a machine learning job is created, results are shown in two places: | ||
Machine learning jobs are created per environment, and are based on a service's average response time. | ||
Because jobs are created at the environment level, | ||
you can add new services to your existing environments without the need for additional machine learning jobs. | ||
|
||
The transaction duration graph will show the expected bounds and add an annotation when the anomaly score is 75 or above. | ||
After a machine learning job is created, results are shown in two places: | ||
|
||
* The transaction duration chart will show the expected bounds and add an annotation when the anomaly score is 75 or above. | ||
+ | ||
[role="screenshot"] | ||
image::apm/images/apm-ml-integration.png[Example view of anomaly scores on response times in the APM app] | ||
|
||
Service maps will display a color-coded anomaly indicator based on the detected anomaly score. | ||
|
||
* Service maps will display a color-coded anomaly indicator based on the detected anomaly score. | ||
+ | ||
[role="screenshot"] | ||
image::apm/images/apm-service-map-anomaly.png[Example view of anomaly scores on service maps in the APM app] | ||
|
||
[float] | ||
[[create-ml-integration]] | ||
=== Create a new machine learning job | ||
=== Enable anomaly detection | ||
|
||
To enable machine learning anomaly detection: | ||
|
||
. From the Services overview, Traces overview, or Service Map tab, | ||
select **Anomaly detection**. | ||
|
||
. Click **Create ML Job**. | ||
|
||
To enable machine learning anomaly detection, first choose a service to monitor. | ||
Then, select **Integrations** > **Enable ML anomaly detection** and click **Create job**. | ||
. Machine learning jobs are created at the environment level. | ||
Select all of the service environments that you want to enable anomaly detection in. | ||
Anomalies will surface for all services and transaction types within the selected environments. | ||
|
||
. Click **Create Jobs**. | ||
|
||
That's it! After a few minutes, the job will begin calculating results; | ||
it might take additional time for results to appear on your graph. | ||
Jobs can be managed in *Machine Learning jobs management*. | ||
it might take additional time for results to appear on your service maps. | ||
Existing jobs can be managed in *Machine Learning jobs management*. | ||
|
||
APM specific anomaly detection wizards are also available for certain Agents. | ||
See the machine learning {ml-docs}/ootb-ml-jobs-apm.html[APM anomaly detection configurations] for more information. | ||
|
||
[float] | ||
[[warning-ml-integration]] | ||
=== Anomaly detection warning | ||
|
||
To make machine learning as easy as possible to set up, | ||
the APM app will warn you when filtered to an environment without a machine learning job. | ||
|
||
[role="screenshot"] | ||
image::apm/images/apm-anomaly-alert.png[Example view of anomaly alert in the APM app] |
18 changes: 18 additions & 0 deletions
18
...lopment/core/server/kibana-plugin-core-server.kibanarequestevents.completed_.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-server](./kibana-plugin-core-server.md) > [KibanaRequestEvents](./kibana-plugin-core-server.kibanarequestevents.md) > [completed$](./kibana-plugin-core-server.kibanarequestevents.completed_.md) | ||
|
||
## KibanaRequestEvents.completed$ property | ||
|
||
Observable that emits once if and when the request has been completely handled. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
completed$: Observable<void>; | ||
``` | ||
|
||
## Remarks | ||
|
||
The request may be considered completed if: - A response has been sent to the client; or - The request was aborted. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,5 @@ Used internally for telemetry | |
<b>Signature:</b> | ||
|
||
```typescript | ||
usage: SearchUsage; | ||
usage?: SearchUsage; | ||
``` |
Oops, something went wrong.