import { css } from '@emotion/css'; import { GrafanaTheme2 } from '@grafana/data'; import { useStyles2 } from '@grafana/ui'; export default function CheatSheet() { const styles = useStyles2(getStyles); return ( <>

Jaeger Cheat Sheet

This cheat sheet provides a quick overview of the query types that are available. For more details about the Jaeger data source, check out{' '} the documentation .


); } const getStyles = (theme: GrafanaTheme2) => ({ anchorTag: css({ color: theme.colors.text.link, }), unorderedList: css({ listStyleType: 'none', }), });