mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-05 16:59:36 +00:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
|
|
|
|
export default class NodeResourcesMetricBoxInfo extends React.Component {
|
|
humanizedMetricInfo() {
|
|
const {
|
|
humanizedTotalCapacity, humanizedAbsoluteConsumption,
|
|
humanizedRelativeConsumption, showCapacity, format
|
|
} = this.props.metricSummary.toJS();
|
|
const showExtendedInfo = showCapacity && format !== 'percent';
|
|
|
|
return (
|
|
<span>
|
|
<strong>
|
|
{showExtendedInfo ? humanizedRelativeConsumption : humanizedAbsoluteConsumption}
|
|
</strong> used
|
|
{showExtendedInfo &&
|
|
<i>
|
|
{' - '}({humanizedAbsoluteConsumption} / <strong>{humanizedTotalCapacity}</strong>)
|
|
</i>
|
|
}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { width, x, y } = this.props;
|
|
return (
|
|
<foreignObject x={x} y={y} width={width} height="45px">
|
|
<div className="node-resources-metric-box-info">
|
|
<span className="wrapper label truncate">{this.props.label}</span>
|
|
<span className="wrapper consumption truncate">{this.humanizedMetricInfo()}</span>
|
|
</div>
|
|
</foreignObject>
|
|
);
|
|
}
|
|
}
|