Skip to content

Commit 07e30cd

Browse files
Merge branch 'master' into #72935
2 parents 8cb9de6 + c6c300e commit 07e30cd

File tree

921 files changed

+8639
-4733
lines changed

Some content is hidden

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

921 files changed

+8639
-4733
lines changed

.ci/pipeline-library/src/test/prChanges.groovy

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,17 @@ class PrChangesTest extends KibanaBasePipelineTest {
9797

9898
assertFalse(prChanges.areChangesSkippable())
9999
}
100+
101+
@Test
102+
void 'areChangesSkippable() with plugin readme changes'() {
103+
props([
104+
githubPrs: [
105+
getChanges: { [
106+
[filename: 'src/plugins/foo/README.asciidoc'],
107+
] },
108+
],
109+
])
110+
111+
assertFalse(prChanges.areChangesSkippable())
112+
}
100113
}

.eslintrc.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,6 @@ module.exports = {
132132
'react-hooks/rules-of-hooks': 'off',
133133
},
134134
},
135-
{
136-
files: ['x-pack/plugins/lens/**/*.{js,mjs,ts,tsx}'],
137-
rules: {
138-
'react-hooks/exhaustive-deps': 'off',
139-
},
140-
},
141135
{
142136
files: ['x-pack/plugins/ml/**/*.{js,mjs,ts,tsx}'],
143137
rules: {

docs/development/plugins/kibana_utils/public/state_sync/kibana-plugin-plugins-kibana_utils-public-state_sync.createkbnurlstatestorage.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ Creates [IKbnUrlStateStorage](./kibana-plugin-plugins-kibana_utils-public-state_
99
<b>Signature:</b>
1010

1111
```typescript
12-
createKbnUrlStateStorage: ({ useHash, history }?: {
12+
createKbnUrlStateStorage: ({ useHash, history, onGetError, onSetError, }?: {
1313
useHash: boolean;
1414
history?: History<any> | undefined;
15+
onGetError?: ((error: Error) => void) | undefined;
16+
onSetError?: ((error: Error) => void) | undefined;
1517
}) => IKbnUrlStateStorage
1618
```

docs/development/plugins/kibana_utils/public/state_sync/kibana-plugin-plugins-kibana_utils-public-state_sync.isyncstateref.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<b>Signature:</b>
99

1010
```typescript
11-
export interface ISyncStateRef<stateStorage extends IStateStorage = IStateStorage>
11+
export interface ISyncStateRef<StateStorage extends IStateStorage = IStateStorage>
1212
```
1313

1414
## Properties

docs/drilldowns/explore-underlying-data.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ applies the filters and time range created by the events that triggered the acti
3333
[role="screenshot"]
3434
image::images/explore_data_in_chart.png[Explore underlying data from chart]
3535

36-
You can disable this action by adding the following line to your `kibana.yml` config.
36+
To enable this action add the following line to your `kibana.yml` config.
3737

3838
["source","yml"]
3939
-----------
40-
xpack.discoverEnhanced.actions.exploreDataInChart.enabled: false
40+
xpack.discoverEnhanced.actions.exploreDataInChart.enabled: true
4141
-----------

docs/glossary.asciidoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,13 @@ syslog, Apache, and other webserver logs. See
214214
[[k_glos]]
215215
== K
216216

217+
[[glossary-kibana-privileges]] {kib} privileges ::
218+
// tag::kibana-privileges-def[]
219+
Enable administrators to grant users read-only, read-write, or no access to
220+
individual features within <<glossary-space,spaces>> in {kib}. See
221+
{kibana-ref}/kibana-privileges.html[{kib} privileges].
222+
// end::kibana-privileges-def[]
223+
217224
[[glossary-kql]] {kib} Query Language (KQL) ::
218225
// tag::kql-def[]
219226
The default language for querying in {kib}. KQL provides
111 KB
Loading

docs/user/monitoring/index.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ include::xpack-monitoring.asciidoc[]
22
include::beats-details.asciidoc[leveloffset=+1]
33
include::cluster-alerts.asciidoc[leveloffset=+1]
44
include::elasticsearch-details.asciidoc[leveloffset=+1]
5+
include::kibana-alerts.asciidoc[leveloffset=+1]
56
include::kibana-details.asciidoc[leveloffset=+1]
67
include::logstash-details.asciidoc[leveloffset=+1]
78
include::monitoring-troubleshooting.asciidoc[leveloffset=+1]
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[role="xpack"]
2+
[[kibana-alerts]]
3+
= {kib} Alerts
4+
5+
The {stack} {monitor-features} provide
6+
<<alerting-getting-started,{kib} alerts>> out-of-the box to notify you of
7+
potential issues in the {stack}. These alerts are preconfigured based on the
8+
best practices recommended by Elastic. However, you can tailor them to meet your
9+
specific needs.
10+
11+
When you open *{stack-monitor-app}*, the preconfigured {kib} alerts are
12+
created automatically. If you collect monitoring data from multiple clusters,
13+
these alerts can search, detect, and notify on various conditions across the
14+
clusters. The alerts are visible alongside your existing {watcher} cluster
15+
alerts. You can view details about the alerts that are active and view health
16+
and performance data for {es}, {ls}, and Beats in real time, as well as
17+
analyze past performance. You can also modify active alerts.
18+
19+
[role="screenshot"]
20+
image::user/monitoring/images/monitoring-kibana-alerts.png["Kibana alerts in the Stack Monitoring app"]
21+
22+
To review and modify all the available alerts, use
23+
<<managing-alerts-and-actions,*{alerts-ui}*>> in *{stack-manage-app}*.
24+
25+
[discrete]
26+
[[kibana-alerts-cpu-threshold]]
27+
== CPU threshold
28+
29+
This alert is triggered when a node runs a consistently high CPU load. By
30+
default, the trigger condition is set at 85% or more averaged over the last 5
31+
minutes. The alert is grouped across all the nodes of the cluster by running
32+
checks on a schedule time of 1 minute with a re-notify internal of 1 day.
33+
34+
NOTE: Some action types are subscription features, while others are free.
35+
For a comparison of the Elastic subscription levels, see the alerting section of
36+
the {subscriptions}[Subscriptions page].

examples/alerting_example/public/components/create_alert.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import { ALERTING_EXAMPLE_APP_ID } from '../../common/constants';
3030

3131
export const CreateAlert = ({
3232
http,
33+
// eslint-disable-next-line @typescript-eslint/naming-convention
3334
triggers_actions_ui,
3435
charts,
3536
uiSettings,

0 commit comments

Comments
 (0)