mirror of
https://github.com/grafana/grafana.git
synced 2025-09-20 05:53:07 +08:00
16 lines
502 B
TypeScript
16 lines
502 B
TypeScript
import React from 'react';
|
|
|
|
import { config } from '@grafana/runtime';
|
|
import { Alert } from '@grafana/ui';
|
|
|
|
const EvaluationIntervalLimitExceeded = () => (
|
|
<Alert severity="warning" title="Global evalutation interval limit exceeded">
|
|
A minimum evaluation interval of <strong>{config.unifiedAlerting.minInterval}</strong> has been configured in
|
|
Grafana.
|
|
<br />
|
|
Please contact the administrator to configure a lower interval.
|
|
</Alert>
|
|
);
|
|
|
|
export { EvaluationIntervalLimitExceeded };
|