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/explore/ErrorContainer.tsx

29 lines
957 B

import React, { FunctionComponent } from 'react';
import { DataQueryError } from '@grafana/data';
import { Alert, useTheme2 } from '@grafana/ui';
import { FadeIn } from 'app/core/components/Animations/FadeIn';
import { css } from '@emotion/css';
export interface ErrorContainerProps {
queryError?: DataQueryError;
}
export const ErrorContainer: FunctionComponent<ErrorContainerProps> = (props) => {
const { queryError } = props;
const theme = useTheme2();
const showError = queryError ? true : false;
const duration = showError ? 100 : 10;
const title = queryError ? 'Query error' : 'Unknown error';
const message = queryError?.message || queryError?.data?.message || null;
const alertWithTopMargin = css`
margin-top: ${theme.spacing(2)};
`;
return (
<FadeIn in={showError} duration={duration}>
<Alert severity="error" title={title} className={alertWithTopMargin}>
{message}
</Alert>
</FadeIn>
);
};