mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Formatting short tables for readability (#6762)
* Formatting short tables for readability Signed-off-by: Drumil Patel <drumilpatel720@gmail.com> * Solving linting issues in DataTable.tsx Signed-off-by: Drumil Patel <drumilpatel720@gmail.com> * Increasing maxFormattable Size to 1000 and changing value of toFormatStyle Signed-off-by: Drumil Patel <drumilpatel720@gmail.com> * Solve tests failure for multiple alerts on size gretaer than 10000 Signed-off-by: Drumil Patel <drumilpatel720@gmail.com> * Solve linting errors Signed-off-by: Drumil Patel <drumilpatel720@gmail.com> * Add tests for alert of not formatting Signed-off-by: Drumil Patel <drumilpatel720@gmail.com>
This commit is contained in:
parent
0a8acb654e
commit
b00023344e
|
@ -103,8 +103,42 @@ describe('DataTable', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('renders a warning', () => {
|
it('renders a warning', () => {
|
||||||
const alert = dataTable.find(Alert);
|
const alerts = dataTable.find(Alert);
|
||||||
expect(alert.render().text()).toEqual('Warning: Fetched 10001 metrics, only displaying first 10000.');
|
expect(
|
||||||
|
alerts
|
||||||
|
.first()
|
||||||
|
.render()
|
||||||
|
.text()
|
||||||
|
).toEqual('Warning: Fetched 10001 metrics, only displaying first 10000.');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('when resultType is vector and size is more than maximum limit of formatting', () => {
|
||||||
|
const dataTableProps: QueryResult = {
|
||||||
|
data: {
|
||||||
|
resultType: 'vector',
|
||||||
|
result: Array.from(Array(1001).keys()).map(i => {
|
||||||
|
return {
|
||||||
|
metric: {
|
||||||
|
__name__: `metric_name_${i}`,
|
||||||
|
label1: 'value_1',
|
||||||
|
labeln: 'value_n',
|
||||||
|
},
|
||||||
|
value: [1572098246.599, `${i}`],
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
const dataTable = shallow(<DataTable {...dataTableProps} />);
|
||||||
|
|
||||||
|
it('renders a warning', () => {
|
||||||
|
const alerts = dataTable.find(Alert);
|
||||||
|
expect(
|
||||||
|
alerts
|
||||||
|
.first()
|
||||||
|
.render()
|
||||||
|
.text()
|
||||||
|
).toEqual('Notice: Showing more than 1000 series, turning off label formatting for performance reasons.');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -56,8 +56,10 @@ const DataTable: FC<QueryResult> = ({ data }) => {
|
||||||
return <Alert color="secondary">Empty query result</Alert>;
|
return <Alert color="secondary">Empty query result</Alert>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const maxFormattableSize = 1000;
|
||||||
let rows: ReactNode[] = [];
|
let rows: ReactNode[] = [];
|
||||||
let limited = false;
|
let limited = false;
|
||||||
|
const doFormat = data.result.length <= maxFormattableSize;
|
||||||
switch (data.resultType) {
|
switch (data.resultType) {
|
||||||
case 'vector':
|
case 'vector':
|
||||||
rows = (limitSeries(data.result) as InstantSample[]).map(
|
rows = (limitSeries(data.result) as InstantSample[]).map(
|
||||||
|
@ -65,7 +67,7 @@ const DataTable: FC<QueryResult> = ({ data }) => {
|
||||||
return (
|
return (
|
||||||
<tr key={index}>
|
<tr key={index}>
|
||||||
<td>
|
<td>
|
||||||
<SeriesName labels={s.metric} format={false} />
|
<SeriesName labels={s.metric} format={doFormat} />
|
||||||
</td>
|
</td>
|
||||||
<td>{s.value[1]}</td>
|
<td>{s.value[1]}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -84,7 +86,7 @@ const DataTable: FC<QueryResult> = ({ data }) => {
|
||||||
return (
|
return (
|
||||||
<tr style={{ whiteSpace: 'pre' }} key={index}>
|
<tr style={{ whiteSpace: 'pre' }} key={index}>
|
||||||
<td>
|
<td>
|
||||||
<SeriesName labels={s.metric} format={false} />
|
<SeriesName labels={s.metric} format={doFormat} />
|
||||||
</td>
|
</td>
|
||||||
<td>{valueText}</td>
|
<td>{valueText}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -119,6 +121,12 @@ const DataTable: FC<QueryResult> = ({ data }) => {
|
||||||
<strong>Warning:</strong> Fetched {data.result.length} metrics, only displaying first {rows.length}.
|
<strong>Warning:</strong> Fetched {data.result.length} metrics, only displaying first {rows.length}.
|
||||||
</Alert>
|
</Alert>
|
||||||
)}
|
)}
|
||||||
|
{!doFormat && (
|
||||||
|
<Alert color="secondary">
|
||||||
|
<strong>Notice:</strong> Showing more than {maxFormattableSize} series, turning off label formatting for
|
||||||
|
performance reasons.
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
<Table hover size="sm" className="data-table">
|
<Table hover size="sm" className="data-table">
|
||||||
<tbody>{rows}</tbody>
|
<tbody>{rows}</tbody>
|
||||||
</Table>
|
</Table>
|
||||||
|
|
Loading…
Reference in a new issue