mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Add info about logs histogram (#34886)
This commit is contained in:
parent
b47e7d12e6
commit
6adcfa9e50
@ -273,6 +273,9 @@ export class UnthemedLogs extends PureComponent<Props, State> {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
<div className={styles.infoText}>
|
||||||
|
This datasource does not support full-range histograms. The graph is based on the logs seen in the response.
|
||||||
|
</div>
|
||||||
<ExploreGraphPanel
|
<ExploreGraphPanel
|
||||||
series={logsSeries || []}
|
series={logsSeries || []}
|
||||||
width={width}
|
width={width}
|
||||||
@ -425,5 +428,9 @@ const getStyles = stylesFactory((theme: GrafanaTheme) => {
|
|||||||
logRows: css`
|
logRows: css`
|
||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
`,
|
`,
|
||||||
|
infoText: css`
|
||||||
|
font-size: ${theme.typography.size.sm};
|
||||||
|
color: ${theme.colors.textWeak};
|
||||||
|
`,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user