-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Infra UI] Add alerts to asset details flyout (#161677)
Closes #160371 ## Summary This PR adds alerts section to the overview tab inside the asset details flyout component. Notes: A lot of changes are extracting common components from the alerts tab to a common folder. The flyout version is not showing the chart so it's not exactly the same component but a big part of the logic is reused there. The tooltip content can be found in a [Figma comment ](https://www.figma.com/file/XBVpHX6pOBaTPoGHWhEQJH?node-id=843:435665&mode=design#492130894) <img width="1616" alt="alerts_section" src="https://github.com/elastic/kibana/assets/14139027/399dd1ea-e1cb-4e7f-9ed5-917ced7cc490"> ## Alerts summary widget changes: After introducing the `hideChart` prop [here](#161263) in this PR I change the spinner type and size in case of no chart we want to have a smaller section with a smaller spinner: ![image](https://github.com/elastic/kibana/assets/14139027/43a3c611-0404-4c21-a503-22f1a79dc1de) ![image](https://github.com/elastic/kibana/assets/14139027/a870fa9b-5367-4303-9b7d-4da9ff2eae2b) ## Storybook I added some changes to make the alerts widget show in the storybook [[Workaround for storybook](d97a2b1)] <img width="1905" alt="image" src="https://github.com/elastic/kibana/assets/14139027/539c9443-f977-4301-8d2b-d24f1d01b44e"> ## Testing - Go to Hosts view and open the single host flyout - alerts section should be visible - Alerts title icon should open a tooltip with links to alerts and alerts documentation - Alerts links: - The Create rule link will open a flyout (on top, not closing the existing flyout) to create an inventory rule, when closed/saved rule the single host flyout should remain open - The Show All link should navigate to alerts and apply time range / host.name filter selected in the hosts view https://github.com/elastic/kibana/assets/14139027/b362042a-b9de-460c-86ae-282154b586ff --------- Co-authored-by: kibanamachine <[email protected]>
- Loading branch information
1 parent
b222f7a
commit 5a7f395
Showing
26 changed files
with
612 additions
and
156 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
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,57 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { i18n } from '@kbn/i18n'; | ||
import { ALERT_STATUS, ALERT_STATUS_ACTIVE, ALERT_STATUS_RECOVERED } from '@kbn/rule-data-utils'; | ||
import type { AlertStatusFilter } from './types'; | ||
|
||
export const ALERT_STATUS_ALL = 'all'; | ||
|
||
export const ALL_ALERTS: AlertStatusFilter = { | ||
status: ALERT_STATUS_ALL, | ||
label: i18n.translate('xpack.infra.hostsViewPage.tabs.alerts.alertStatusFilter.showAll', { | ||
defaultMessage: 'Show all', | ||
}), | ||
}; | ||
|
||
export const ACTIVE_ALERTS: AlertStatusFilter = { | ||
status: ALERT_STATUS_ACTIVE, | ||
query: { | ||
term: { | ||
[ALERT_STATUS]: { | ||
value: ALERT_STATUS_ACTIVE, | ||
}, | ||
}, | ||
}, | ||
label: i18n.translate('xpack.infra.hostsViewPage.tabs.alerts.alertStatusFilter.active', { | ||
defaultMessage: 'Active', | ||
}), | ||
}; | ||
|
||
export const RECOVERED_ALERTS: AlertStatusFilter = { | ||
status: ALERT_STATUS_RECOVERED, | ||
query: { | ||
term: { | ||
[ALERT_STATUS]: { | ||
value: ALERT_STATUS_RECOVERED, | ||
}, | ||
}, | ||
}, | ||
label: i18n.translate('xpack.infra.hostsViewPage.tabs.alerts.alertStatusFilter.recovered', { | ||
defaultMessage: 'Recovered', | ||
}), | ||
}; | ||
|
||
export const ALERT_STATUS_QUERY = { | ||
[ACTIVE_ALERTS.status]: ACTIVE_ALERTS.query, | ||
[RECOVERED_ALERTS.status]: RECOVERED_ALERTS.query, | ||
}; | ||
|
||
export const ALERTS_DOC_HREF = | ||
'https://www.elastic.co/guide/en/observability/current/create-alerts.html'; | ||
|
||
export const ALERTS_PATH = '/app/observability/alerts'; |
41 changes: 41 additions & 0 deletions
41
x-pack/plugins/infra/public/common/alerts/create_alerts_es_query.ts
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,41 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
import { getTime } from '@kbn/data-plugin/common'; | ||
import { ALERT_TIME_RANGE } from '@kbn/rule-data-utils'; | ||
import { buildEsQuery, Filter, type TimeRange } from '@kbn/es-query'; | ||
import type { AlertStatus } from '@kbn/observability-plugin/common/typings'; | ||
import { ALERT_STATUS_QUERY } from './constants'; | ||
import { buildCombinedHostsFilter } from '../../utils/filters/build'; | ||
import type { AlertsEsQuery } from './types'; | ||
|
||
export const createAlertsEsQuery = ({ | ||
dateRange, | ||
hostNodeNames, | ||
status, | ||
}: { | ||
dateRange: TimeRange; | ||
hostNodeNames: string[]; | ||
status?: AlertStatus; | ||
}): AlertsEsQuery => { | ||
const alertStatusFilter = createAlertStatusFilter(status); | ||
|
||
const dateFilter = createDateFilter(dateRange); | ||
const hostsFilter = buildCombinedHostsFilter({ | ||
field: 'host.name', | ||
values: hostNodeNames, | ||
}); | ||
|
||
const filters = [alertStatusFilter, dateFilter, hostsFilter].filter(Boolean) as Filter[]; | ||
|
||
return buildEsQuery(undefined, [], filters); | ||
}; | ||
|
||
const createDateFilter = (date: TimeRange) => | ||
getTime(undefined, date, { fieldName: ALERT_TIME_RANGE }); | ||
|
||
const createAlertStatusFilter = (status: AlertStatus = 'all'): Filter | null => | ||
ALERT_STATUS_QUERY[status] ? { query: ALERT_STATUS_QUERY[status], meta: {} } : null; |
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 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import type { BoolQuery, Filter } from '@kbn/es-query'; | ||
import type { AlertStatus } from '@kbn/observability-plugin/common/typings'; | ||
export interface AlertStatusFilter { | ||
status: AlertStatus; | ||
query?: Filter['query']; | ||
label: string; | ||
} | ||
|
||
export interface AlertsEsQuery { | ||
bool: BoolQuery; | ||
} |
41 changes: 41 additions & 0 deletions
41
x-pack/plugins/infra/public/components/asset_details/__stories__/context/fixtures/alerts.ts
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,41 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
const summaryResponse = { | ||
activeAlertCount: 3, | ||
recoveredAlertCount: 3, | ||
activeAlerts: [ | ||
{ | ||
key_as_string: '1689172920000', | ||
key: 1689172920000, | ||
doc_count: 3, | ||
}, | ||
{ | ||
key_as_string: '1689172980000', | ||
key: 1689172980000, | ||
doc_count: 3, | ||
}, | ||
], | ||
recoveredAlerts: [ | ||
{ | ||
key_as_string: '2023-07-12T14:42:00.000Z', | ||
key: 1689172920000, | ||
doc_count: 3, | ||
}, | ||
{ | ||
key_as_string: '2023-07-12T14:43:00.000Z', | ||
key: 1689172980000, | ||
doc_count: 3, | ||
}, | ||
], | ||
}; | ||
|
||
export const alertsSummaryHttpResponse = { | ||
default: () => Promise.resolve({ ...summaryResponse }), | ||
}; | ||
|
||
export type AlertsSummaryHttpMocks = keyof typeof alertsSummaryHttpResponse; |
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
52 changes: 52 additions & 0 deletions
52
x-pack/plugins/infra/public/components/asset_details/components/alerts_tooltip_content.tsx
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,52 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import React from 'react'; | ||
import { EuiText, EuiLink } from '@elastic/eui'; | ||
import { FormattedMessage } from '@kbn/i18n-react'; | ||
import { ALERTS_DOC_HREF } from '../../../common/alerts/constants'; | ||
import { LinkToAlertsHomePage } from '../links/link_to_alerts_page'; | ||
|
||
export const AlertsTooltipContent = React.memo(() => { | ||
const onClick = (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => { | ||
e.stopPropagation(); | ||
}; | ||
|
||
return ( | ||
<EuiText size="xs" onClick={onClick}> | ||
<p> | ||
<FormattedMessage | ||
id="xpack.infra.assetDetails.alerts.tooltip.alertsLabel" | ||
defaultMessage="Showing alerts for this host. You can create and manage alerts in {alerts}" | ||
values={{ | ||
alerts: <LinkToAlertsHomePage />, | ||
}} | ||
/> | ||
</p> | ||
<p> | ||
<FormattedMessage | ||
id="xpack.infra.assetDetails.alerts.tooltip.documentationLabel" | ||
defaultMessage="See {documentation} for more information" | ||
values={{ | ||
documentation: ( | ||
<EuiLink | ||
data-test-subj="assetDetailsTooltipDocumentationLink" | ||
href={ALERTS_DOC_HREF} | ||
target="_blank" | ||
> | ||
<FormattedMessage | ||
id="xpack.infra.assetDetails.alerts.tooltip.documentationLink" | ||
defaultMessage="documentation" | ||
/> | ||
</EuiLink> | ||
), | ||
}} | ||
/> | ||
</p> | ||
</EuiText> | ||
); | ||
}); |
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
70 changes: 70 additions & 0 deletions
70
x-pack/plugins/infra/public/components/asset_details/links/link_to_alerts_page.tsx
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,70 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
import React from 'react'; | ||
import { encode } from '@kbn/rison'; | ||
import { RedirectAppLinks } from '@kbn/shared-ux-link-redirect-app'; | ||
import { FormattedMessage } from '@kbn/i18n-react'; | ||
import { EuiButtonEmpty, EuiLink } from '@elastic/eui'; | ||
import type { TimeRange } from '@kbn/es-query'; | ||
import { ALERTS_PATH } from '../../../common/alerts/constants'; | ||
import { useKibanaContextForPlugin } from '../../../hooks/use_kibana'; | ||
|
||
export interface LinkToAlertsPageProps { | ||
nodeName: string; | ||
queryField: string; | ||
dateRange: TimeRange; | ||
} | ||
|
||
export const LinkToAlertsPage = ({ nodeName, queryField, dateRange }: LinkToAlertsPageProps) => { | ||
const { services } = useKibanaContextForPlugin(); | ||
const { http } = services; | ||
|
||
const linkToAlertsPage = http.basePath.prepend( | ||
`${ALERTS_PATH}?_a=${encode({ | ||
kuery: `${queryField}:"${nodeName}"`, | ||
rangeFrom: dateRange.from, | ||
rangeTo: dateRange.to, | ||
status: 'all', | ||
})}` | ||
); | ||
|
||
return ( | ||
<RedirectAppLinks coreStart={services}> | ||
<EuiButtonEmpty | ||
data-test-subj="assetDetails-flyout-alerts-link" | ||
size="xs" | ||
iconSide="right" | ||
iconType="sortRight" | ||
flush="both" | ||
href={linkToAlertsPage} | ||
> | ||
<FormattedMessage | ||
id="xpack.infra.assetDetails.flyout.AlertsPageLinkLabel" | ||
defaultMessage="Show all" | ||
/> | ||
</EuiButtonEmpty> | ||
</RedirectAppLinks> | ||
); | ||
}; | ||
|
||
export const LinkToAlertsHomePage = () => { | ||
const { services } = useKibanaContextForPlugin(); | ||
const { http } = services; | ||
|
||
const linkToAlertsPage = http.basePath.prepend(ALERTS_PATH); | ||
|
||
return ( | ||
<RedirectAppLinks coreStart={services}> | ||
<EuiLink data-test-subj="assetDetailsTooltipDocumentationLink" href={linkToAlertsPage}> | ||
<FormattedMessage | ||
id="xpack.infra.assetDetails.table.tooltip.alertsLink" | ||
defaultMessage="alerts." | ||
/> | ||
</EuiLink> | ||
</RedirectAppLinks> | ||
); | ||
}; |
Oops, something went wrong.