Skip to content

Commit 21aac5e

Browse files
committed
Fix monitoring links
1 parent f42c633 commit 21aac5e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

x-pack/plugins/monitoring/public/alerts/disk_usage_alert/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function createDiskUsageAlertType(): AlertTypeModel {
1919
description: ALERT_DETAILS[ALERT_DISK_USAGE].description,
2020
iconClass: 'bell',
2121
documentationUrl(docLinks) {
22-
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/kibana-alerts.html`;
22+
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/kibana-alerts.html#kibana-alerts-disk-usage-threshold`;
2323
},
2424
alertParamsExpression: (props: Props) => (
2525
<Expression {...props} paramDetails={ALERT_DETAILS[ALERT_DISK_USAGE].paramDetails} />

x-pack/plugins/monitoring/public/alerts/legacy_alert/legacy_alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function createLegacyAlertTypes(): AlertTypeModel[] {
1919
description: LEGACY_ALERT_DETAILS[legacyAlert].description,
2020
iconClass: 'bell',
2121
documentationUrl(docLinks) {
22-
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/kibana-alerts.html`;
22+
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/cluster-alerts.html`;
2323
},
2424
alertParamsExpression: () => (
2525
<Fragment>

x-pack/plugins/monitoring/public/alerts/memory_usage_alert/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function createMemoryUsageAlertType(): AlertTypeModel {
1919
description: ALERT_DETAILS[ALERT_MEMORY_USAGE].description,
2020
iconClass: 'bell',
2121
documentationUrl(docLinks) {
22-
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/kibana-alerts.html`;
22+
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/kibana-alerts.html#kibana-alerts-jvm-memory-threshold`;
2323
},
2424
alertParamsExpression: (props: Props) => (
2525
<Expression {...props} paramDetails={ALERT_DETAILS[ALERT_MEMORY_USAGE].paramDetails} />

x-pack/plugins/monitoring/public/alerts/missing_monitoring_data_alert/missing_monitoring_data_alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function createMissingMonitoringDataAlertType(): AlertTypeModel {
1717
description: ALERT_DETAILS[ALERT_MISSING_MONITORING_DATA].description,
1818
iconClass: 'bell',
1919
documentationUrl(docLinks) {
20-
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/kibana-alerts.html`;
20+
return `${docLinks.ELASTIC_WEBSITE_URL}guide/en/kibana/${docLinks.DOC_LINK_VERSION}/kibana-alerts.html#kibana-alerts-missing-monitoring-data`;
2121
},
2222
alertParamsExpression: (props: any) => (
2323
<Expression

0 commit comments

Comments
 (0)