Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
e8b835e
Fix outdated alerting authorization documentation link
mahesh-diwan Jan 9, 2026
09f5e2b
Merge branch 'main' into fix-outdated-alerting-docs-link
mahesh-diwan Jan 9, 2026
bb62f80
Update src/platform/packages/shared/kbn-doc-links/src/get_doc_links.ts
florent-leborgne Jan 9, 2026
6094724
Merge branch 'main' into fix-outdated-alerting-docs-link
bmorelli25 Jan 9, 2026
d97a463
Merge branch 'main' into fix-outdated-alerting-docs-link
mahesh-diwan Jan 10, 2026
0909413
Merge branch 'main' into fix-outdated-alerting-docs-link
lcawl Jan 12, 2026
65ac3bf
Merge branch 'main' into fix-outdated-alerting-docs-link
lcawl Jan 13, 2026
e884f6c
Merge branch 'main' into fix-outdated-alerting-docs-link
lcawl Jan 13, 2026
e971c43
Merge branch 'main' into fix-outdated-alerting-docs-link
florent-leborgne Jan 13, 2026
a404585
remove no longer used variable definition
florent-leborgne Jan 13, 2026
ad638a7
Merge branch 'main' into fix-outdated-alerting-docs-link
lcawl Jan 13, 2026
08516e7
Merge branch 'main' into fix-outdated-alerting-docs-link
florent-leborgne Jan 14, 2026
b8281d0
update test to match updated URL
florent-leborgne Jan 14, 2026
cd23a9a
Merge branch 'main' into fix-outdated-alerting-docs-link
florent-leborgne Jan 14, 2026
d0096b9
Merge branch 'main' into fix-outdated-alerting-docs-link
florent-leborgne Jan 14, 2026
bd43cdc
Merge branch 'main' into fix-outdated-alerting-docs-link
florent-leborgne Jan 15, 2026
d58b041
Fix test to match updated URL
florent-leborgne Jan 15, 2026
fb6d73e
Merge branch 'main' into fix-outdated-alerting-docs-link
florent-leborgne Jan 15, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export const getDocLinks = ({ kibanaBranch, buildFlavor }: GetDocLinkOptions): D
const ELASTICSEARCH_DOCS = `${ELASTIC_WEBSITE_URL}guide/en/elasticsearch/reference/${DOC_LINK_VERSION}/`;
const ELASTICSEARCH_APIS = `${API_DOCS}doc/elasticsearch/`;
const ELASTICSEARCH_SERVERLESS_APIS = `${API_DOCS}doc/elasticsearch-serverless/`;
const KIBANA_DOCS = `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/`;
const KIBANA_APIS = `${API_DOCS}doc/kibana/`;
const KIBANA_SERVERLESS_APIS = `${API_DOCS}doc/serverless/`;
const SECURITY_SOLUTION_DOCS = `${ELASTIC_WEBSITE_URL}guide/en/security/${DOC_LINK_VERSION}/`;
Expand Down Expand Up @@ -642,7 +641,7 @@ export const getDocLinks = ({ kibanaBranch, buildFlavor }: GetDocLinkOptions): D
apmRulesTransactionDuration: `${ELASTIC_DOCS}solutions/observability/incident-management/create-latency-threshold-rule`,
apmRulesTransactionError: `${ELASTIC_DOCS}solutions/observability/incident-management/create-failed-transaction-rate-threshold-rule`,
apmRulesAnomaly: `${ELASTIC_DOCS}solutions/observability/incident-management/create-an-apm-anomaly-rule`,
authorization: `${KIBANA_DOCS}alerting-setup.html#alerting-authorization`,
authorization: `${ELASTIC_DOCS}explore-analyze/alerts-cases/alerts/alerting-setup#alerting-authorization`,
emailAction: `${ELASTIC_DOCS}reference/kibana/connectors-kibana/email-action-type`,
emailActionConfig: `${ELASTIC_DOCS}reference/kibana/connectors-kibana/email-action-type`,
emailExchangeClientSecretConfig: `${ELASTIC_DOCS}reference/kibana/connectors-kibana/email-action-type#exchange-client-secret`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,7 @@ export default ({ getService }: FtrProviderContext) => {

// TODO: https://github.com/elastic/kibana/pull/121644 clean up, make type-safe
expect(body?.execution_summary?.last_execution.message).to.contain(
`This rule's API key is unable to access all indices that match the ["${index[0]}"] pattern. To learn how to update and manage API keys, refer to https://www.elastic.co/guide/en/kibana/`
);
expect(body?.execution_summary?.last_execution.message).to.contain(
'/alerting-setup.html#alerting-authorization.'
`This rule's API key is unable to access all indices that match the ["${index[0]}"] pattern. To learn how to update and manage API keys, refer to https://www.elastic.co/docs/explore-analyze/alerts-cases/alerts/alerting-setup#alerting-authorization`
);

await deleteUserAndRole(getService, ROLES.detections_admin);
Expand Down Expand Up @@ -170,10 +167,7 @@ export default ({ getService }: FtrProviderContext) => {

// TODO: https://github.com/elastic/kibana/pull/121644 clean up, make type-safe
expect(body?.execution_summary?.last_execution.message).to.contain(
`This rule's API key is unable to access all indices that match the ["${index[0]}"] pattern. To learn how to update and manage API keys, refer to https://www.elastic.co/guide/en/kibana/`
);
expect(body?.execution_summary?.last_execution.message).to.contain(
'/alerting-setup.html#alerting-authorization.'
`This rule's API key is unable to access all indices that match the ["${index[0]}"] pattern. To learn how to update and manage API keys, refer to https://www.elastic.co/docs/explore-analyze/alerts-cases/alerts/alerting-setup#alerting-authorization`
);

await deleteUserAndRole(getService, ROLES.detections_admin);
Expand Down