/usr/share/grafana/public/app/plugins/datasource/cloudwatch/components/Errors
import { TextLink } from '@grafana/ui'; export interface Props { region: string; } export const ThrottlingErrorMessage = ({ region }: Props) => ( <p> Please visit the <TextLink external href={`https://${region}.console.aws.amazon.com/servicequotas/home?region=${region}#!/services/monitoring/quotas/L-5E141212`} > AWS Service Quotas console </TextLink> to request a quota increase or see our <TextLink external href="https://grafana.com/docs/grafana/latest/datasources/cloudwatch/#manage-service-quotas"> documentation </TextLink> to learn more. </p> );
.
Edit
..
Edit
ThrottlingErrorMessage.tsx
Edit