mirror of
https://github.com/grafana/grafana.git
synced 2025-09-21 02:52:27 +08:00
94 lines
3.3 KiB
TypeScript
94 lines
3.3 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { LinkButton, useStyles2 } from '@grafana/ui';
|
|
import { contextSrv } from 'app/core/services/context_srv';
|
|
import { AlertmanagerAlert, AlertState } from 'app/plugins/datasource/alertmanager/types';
|
|
import { AccessControlAction } from 'app/types';
|
|
|
|
import { getInstancesPermissions } from '../../utils/access-control';
|
|
import { isGrafanaRulesSource } from '../../utils/datasource';
|
|
import { makeAMLink, makeLabelBasedSilenceLink } from '../../utils/misc';
|
|
import { AnnotationDetailsField } from '../AnnotationDetailsField';
|
|
import { Authorize } from '../Authorize';
|
|
|
|
interface AmNotificationsAlertDetailsProps {
|
|
alertManagerSourceName: string;
|
|
alert: AlertmanagerAlert;
|
|
}
|
|
|
|
export const AlertDetails = ({ alert, alertManagerSourceName }: AmNotificationsAlertDetailsProps) => {
|
|
const styles = useStyles2(getStyles);
|
|
const instancePermissions = getInstancesPermissions(alertManagerSourceName);
|
|
|
|
// For Grafana Managed alerts the Generator URL redirects to the alert rule edit page, so update permission is required
|
|
// For external alert manager the Generator URL redirects to an external service which we don't control
|
|
const isGrafanaSource = isGrafanaRulesSource(alertManagerSourceName);
|
|
const isSeeSourceButtonEnabled = isGrafanaSource
|
|
? contextSrv.hasPermission(AccessControlAction.AlertingRuleRead)
|
|
: true;
|
|
|
|
return (
|
|
<>
|
|
<div className={styles.actionsRow}>
|
|
<Authorize actions={[instancePermissions.update, instancePermissions.create]} fallback={contextSrv.isEditor}>
|
|
{alert.status.state === AlertState.Suppressed && (
|
|
<LinkButton
|
|
href={`${makeAMLink(
|
|
'/alerting/silences',
|
|
alertManagerSourceName
|
|
)}&silenceIds=${alert.status.silencedBy.join(',')}`}
|
|
className={styles.button}
|
|
icon={'bell'}
|
|
size={'sm'}
|
|
>
|
|
Manage silences
|
|
</LinkButton>
|
|
)}
|
|
{alert.status.state === AlertState.Active && (
|
|
<LinkButton
|
|
href={makeLabelBasedSilenceLink(alertManagerSourceName, alert.labels)}
|
|
className={styles.button}
|
|
icon={'bell-slash'}
|
|
size={'sm'}
|
|
>
|
|
Silence
|
|
</LinkButton>
|
|
)}
|
|
</Authorize>
|
|
{isSeeSourceButtonEnabled && alert.generatorURL && (
|
|
<LinkButton className={styles.button} href={alert.generatorURL} icon={'chart-line'} size={'sm'}>
|
|
See source
|
|
</LinkButton>
|
|
)}
|
|
</div>
|
|
{Object.entries(alert.annotations).map(([annotationKey, annotationValue]) => (
|
|
<AnnotationDetailsField key={annotationKey} annotationKey={annotationKey} value={annotationValue} />
|
|
))}
|
|
<div className={styles.receivers}>
|
|
Receivers:{' '}
|
|
{alert.receivers
|
|
.map(({ name }) => name)
|
|
.filter((name) => !!name)
|
|
.join(', ')}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
button: css`
|
|
& + & {
|
|
margin-left: ${theme.spacing(1)};
|
|
}
|
|
`,
|
|
actionsRow: css`
|
|
padding: ${theme.spacing(2, 0)} !important;
|
|
border-bottom: 1px solid ${theme.colors.border.medium};
|
|
`,
|
|
receivers: css`
|
|
padding: ${theme.spacing(1, 0)};
|
|
`,
|
|
});
|