forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
771 B
21 lines
771 B
import { Modal, VerticalGroup } from '@grafana/ui';
|
|
import React from 'react';
|
|
|
|
export interface AlertHowToModalProps {
|
|
onDismiss: () => void;
|
|
}
|
|
|
|
export function AlertHowToModal({ onDismiss }: AlertHowToModalProps): JSX.Element {
|
|
return (
|
|
<Modal title="Adding an Alert" isOpen onDismiss={onDismiss} onClickBackdrop={onDismiss}>
|
|
<VerticalGroup spacing="sm">
|
|
<img src="public/img/alert_howto_new.png" alt="link to how to alert image" />
|
|
<p>
|
|
Alerts are added and configured in the Alert tab of any dashboard graph panel, letting you build and visualize
|
|
an alert using existing queries.
|
|
</p>
|
|
<p>Remember to save the dashboard to persist your alert rule changes.</p>
|
|
</VerticalGroup>
|
|
</Modal>
|
|
);
|
|
}
|
|
|