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/unified/components/AnnotationDetailsField.tsx

54 lines
1.5 KiB

import React, { FC } from 'react';
import { Well } from './Well';
import { GrafanaTheme } from '@grafana/data';
import { css } from '@emotion/css';
import { Tooltip, useStyles } from '@grafana/ui';
import { DetailsField } from './DetailsField';
import { Annotation, annotationLabels } from '../utils/constants';
const wellableAnnotationKeys = ['message', 'description'];
interface Props {
annotationKey: string;
value: string;
}
export const AnnotationDetailsField: FC<Props> = ({ annotationKey, value }) => {
const label = annotationLabels[annotationKey as Annotation] ? (
<Tooltip content={annotationKey} placement="top" theme="info">
<span>{annotationLabels[annotationKey as Annotation]}</span>
</Tooltip>
) : (
annotationKey
);
return (
<DetailsField label={label} horizontal={true}>
<AnnotationValue annotationKey={annotationKey} value={value} />
</DetailsField>
);
};
const AnnotationValue: FC<Props> = ({ annotationKey, value }) => {
const styles = useStyles(getStyles);
if (wellableAnnotationKeys.includes(annotationKey)) {
return <Well>{value}</Well>;
} else if (value && value.startsWith('http')) {
return (
<a href={value} target="__blank" className={styles.link}>
{value}
</a>
);
}
return <>{value}</>;
};
export const getStyles = (theme: GrafanaTheme) => ({
well: css`
word-break: break-all;
`,
link: css`
word-break: break-all;
color: ${theme.colors.textBlue};
`,
});