The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
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.
 
 
 
 
 
 
grafana/public/app/features/alerting/AlertHowToModal.tsx

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>
);
}