This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added top consumer card for storage dashboard
- Loading branch information
Showing
10 changed files
with
237 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.kubevirt-storage-consumers-body { | ||
opacity: 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
src/components/StorageOverview/TopConsumers/TopConsumers.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
|
||
import { LineChart, Row, Col } from 'patternfly-react'; | ||
|
||
import { InlineLoading } from '../../Loading'; | ||
import { formatToShortTime } from '../../../utils'; | ||
|
||
import { | ||
DashboardCard, | ||
DashboardCardBody, | ||
DashboardCardHeader, | ||
DashboardCardTitle, | ||
} from '../../Dashboard/DashboardCard'; | ||
import { StorageOverviewContext } from '../StorageOverviewContext/StorageOverviewContext'; | ||
import { getTopConsumerVectorStats } from '../../../selectors/prometheus/storage'; | ||
|
||
const TopConsumersBody = ({ topConsumerStats }) => { | ||
let results = 'No data available'; | ||
|
||
if (topConsumerStats.length) { | ||
const columnsConf = getTopConsumerVectorStats(topConsumerStats); | ||
const { columns, unit } = columnsConf; | ||
const formatTime = x => formatToShortTime(x); | ||
|
||
results = ( | ||
<Row> | ||
<Col lg={12} md={12} sm={12} xs={12}> | ||
<LineChart | ||
className="kubevirt-storage-consumers-body" | ||
id="line-chart" | ||
data={{ | ||
x: 'x', | ||
columns, | ||
type: 'line', | ||
}} | ||
axis={{ | ||
y: { | ||
label: { | ||
text: `Used Capacity(${unit})`, | ||
position: 'outer-top', | ||
}, | ||
min: 0, | ||
padding: { | ||
bottom: 3, | ||
}, | ||
}, | ||
x: { | ||
tick: { | ||
format: formatTime, | ||
fit: true, | ||
values: [...columns[0].slice(1)], | ||
}, | ||
}, | ||
}} | ||
/> | ||
</Col> | ||
</Row> | ||
); | ||
} | ||
|
||
return <div>{results}</div>; | ||
}; | ||
|
||
export const TopConsumers = ({ topConsumerStats, topConsumerLoaded, LoadingComponent }) => ( | ||
<DashboardCard> | ||
<DashboardCardHeader> | ||
<DashboardCardTitle>Top Projects by Used Capacity</DashboardCardTitle> | ||
</DashboardCardHeader> | ||
<DashboardCardBody isLoading={!topConsumerLoaded} LoadingComponent={LoadingComponent}> | ||
<TopConsumersBody topConsumerStats={topConsumerStats} /> | ||
</DashboardCardBody> | ||
</DashboardCard> | ||
); | ||
|
||
TopConsumersBody.propTypes = { | ||
topConsumerStats: PropTypes.array.isRequired, | ||
}; | ||
|
||
TopConsumers.defaultProps = { | ||
topConsumerStats: [], | ||
topConsumerLoaded: false, | ||
LoadingComponent: InlineLoading, | ||
}; | ||
|
||
TopConsumers.propTypes = { | ||
topConsumerStats: PropTypes.array, | ||
topConsumerLoaded: PropTypes.bool, | ||
LoadingComponent: PropTypes.oneOfType([PropTypes.node, PropTypes.func]), | ||
}; | ||
|
||
const TopConsumersConnected = () => ( | ||
<StorageOverviewContext.Consumer>{props => <TopConsumers {...props} />}</StorageOverviewContext.Consumer> | ||
); | ||
|
||
export default TopConsumersConnected; |
33 changes: 33 additions & 0 deletions
33
src/components/StorageOverview/TopConsumers/fixtures/TopConsumers.fixture.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { TopConsumers } from '../TopConsumers'; | ||
import { InlineLoading } from '../../../Loading'; | ||
|
||
export const TopConsumerStats = { | ||
topConsumerStats: [ | ||
{ | ||
metric: { | ||
namespace: 'openshift-namespace', | ||
}, | ||
values: [ | ||
[1554797100, '46161920'], | ||
[1554797400, '46161920'], | ||
[1554797700, '46161920'], | ||
[1554798000, '46161920'], | ||
[1554798300, '46161920'], | ||
[1554798600, '46161920'], | ||
], | ||
}, | ||
], | ||
topConsumerLoaded: true, | ||
LoadingComponent: InlineLoading, | ||
}; | ||
|
||
export default [ | ||
{ | ||
component: TopConsumers, | ||
props: { ...TopConsumerStats }, | ||
}, | ||
{ | ||
component: TopConsumers, | ||
name: 'Loading top consumers', | ||
}, | ||
]; |
14 changes: 14 additions & 0 deletions
14
src/components/StorageOverview/TopConsumers/tests/TopConsumers.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
import { render } from 'enzyme'; | ||
|
||
import { TopConsumers } from '../TopConsumers'; | ||
import { TopConsumerStats } from '../fixtures/TopConsumers.fixture'; | ||
|
||
const testTopConsumersOverview = () => <TopConsumers {...TopConsumerStats} />; | ||
|
||
describe('<TopConsumers />', () => { | ||
it('renders correctly', () => { | ||
const component = render(testTopConsumersOverview()); | ||
expect(component).toMatchSnapshot(); | ||
}); | ||
}); |
34 changes: 34 additions & 0 deletions
34
src/components/StorageOverview/TopConsumers/tests/__snapshots__/TopConsumers.test.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`<TopConsumers /> renders correctly 1`] = ` | ||
<div | ||
class="card-pf kubevirt-dashboard__card" | ||
> | ||
<div | ||
class="card-pf-heading kubevirt-dashboard__card-heading" | ||
> | ||
<h2 | ||
class="card-pf-title" | ||
> | ||
Top Projects by Used Capacity | ||
</h2> | ||
</div> | ||
<div | ||
class="card-pf-body" | ||
> | ||
<div> | ||
<div | ||
class="row" | ||
> | ||
<div | ||
class="col-lg-12 col-md-12 col-sm-12 col-xs-12" | ||
> | ||
<div | ||
class=" kubevirt-storage-consumers-body" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { flatMap, max } from 'lodash'; | ||
|
||
import { parseNumber, formatBytes } from '../../utils'; | ||
|
||
export const getTopConsumerVectorStats = result => { | ||
let maxVal = 0; | ||
let flattenedResult = []; | ||
|
||
// returns all the namespace.values in an array | ||
flattenedResult = flatMap(result, namespace => namespace.values); | ||
// returns only the bytes from the namespace.values in an array | ||
flattenedResult = flatMap(flattenedResult, value => parseNumber(value[1])); | ||
|
||
maxVal = max(flattenedResult); | ||
|
||
const maxCapacityConverted = { ...formatBytes(maxVal) }; | ||
|
||
const yAxisData = result.map(r => [ | ||
r.metric.namespace, | ||
...r.values.map(array => formatBytes(array[1], maxCapacityConverted.unit, 2).value), | ||
]); | ||
|
||
let largestLengthArray = 0; | ||
let largestLengthArrayIndex = 0; | ||
|
||
// timestamps count and values are not same for all the namespaces. Hence, finding the largest length array and taking its timestamps value as x-axis point | ||
result.forEach((namespace, index) => { | ||
const len = namespace.values.length; | ||
if (len > largestLengthArray) { | ||
largestLengthArray = len; | ||
largestLengthArrayIndex = index; | ||
} | ||
}); | ||
const xAxisData = ['x', ...result[largestLengthArrayIndex].values.map(array => new Date(array[0] * 1000))]; | ||
|
||
const stats = { | ||
columns: [xAxisData, ...yAxisData], | ||
unit: maxCapacityConverted.unit, | ||
}; | ||
|
||
return stats; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters