grafana_bak/public/app/features/trails/RelatedLogs/NoRelatedLogsFoundScene.tsx
2025-04-01 10:38:02 +09:00

45 lines
1.5 KiB
TypeScript

import { css } from '@emotion/css';
import { GrafanaTheme2 } from '@grafana/data';
import { SceneObjectBase, type SceneObjectState } from '@grafana/scenes';
import { Stack, Text, TextLink, useStyles2 } from '@grafana/ui';
import { Trans } from 'app/core/internationalization';
export class NoRelatedLogsScene extends SceneObjectBase<SceneObjectState> {
static readonly Component = () => {
const styles = useStyles2(getStyles);
return (
<Stack direction="column" gap={1}>
<Text color="warning">
<Trans i18nKey="explore-metrics.related-logs.warnExperimentalFeature">
Related logs is an experimental feature.
</Trans>
</Text>
<Text>
<Trans i18nKey="explore-metrics.related-logs.relatedLogsUnavailable">
No related logs found. To see related logs, you can either:
<ul className={styles.list}>
<li>adjust the label filter to find logs with the same labels as the currently-selected metric</li>
<li>
select a metric created by a{' '}
<TextLink external href="https://grafana.com/docs/loki/latest/alert/#recording-rules">
<Trans i18nKey="explore-metrics.related-logs.LrrDocsLink">Loki Recording Rule</Trans>
</TextLink>
</li>
</ul>
</Trans>
</Text>
</Stack>
);
};
}
function getStyles(theme: GrafanaTheme2) {
return {
list: css({
paddingLeft: theme.spacing(2),
}),
};
}