mirror of https://github.com/rancher/dashboard.git
104 lines
2.1 KiB
Vue
104 lines
2.1 KiB
Vue
<script>
|
|
import ConsumptionGauge from '@/components/ConsumptionGauge';
|
|
import { METRIC, NODE } from '@/config/types';
|
|
import { formatSi, exponentNeeded, UNITS } from '@/utils/units';
|
|
|
|
export default {
|
|
name: 'HarvesterMemoryUsed',
|
|
components: { ConsumptionGauge },
|
|
|
|
props: {
|
|
value: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
|
|
row: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
|
|
resourceName: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
computed: {
|
|
metrics() {
|
|
return this.$store.getters['harvester/byId'](METRIC.NODE, this.row.id);
|
|
},
|
|
|
|
memoryTotal() {
|
|
let out = 0;
|
|
|
|
if (this.metrics) {
|
|
out = this.metrics.memoryCapacity;
|
|
}
|
|
|
|
return out;
|
|
},
|
|
|
|
memoryUnits() {
|
|
const exponent = exponentNeeded(this.memoryTotal, 1024);
|
|
|
|
return `${ UNITS[exponent] }iB`;
|
|
},
|
|
|
|
node() {
|
|
const inStore = this.$store.getters['currentProduct'].inStore;
|
|
const node = this.$store.getters[`${ inStore }/byId`](NODE, this.row.id);
|
|
|
|
return node;
|
|
},
|
|
|
|
used() {
|
|
if (this.metrics) {
|
|
return this.node.memoryReserved;
|
|
} else {
|
|
return 0;
|
|
}
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
memoryFormatter(value) {
|
|
const exponent = exponentNeeded(this.memoryTotal, 1024);
|
|
|
|
const formatOptions = {
|
|
addSuffix: false,
|
|
increment: 1024,
|
|
minExponent: exponent
|
|
};
|
|
|
|
return formatSi(value, formatOptions);
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<ConsumptionGauge
|
|
:capacity="memoryTotal"
|
|
:used="used"
|
|
:units="memoryUnits"
|
|
:number-formatter="memoryFormatter"
|
|
:resource-name="resourceName"
|
|
>
|
|
<template #title="{amountTemplateValues, formattedPercentage}">
|
|
<span>
|
|
{{ t('clusterIndexPage.hardwareResourceGauge.reserved') }}
|
|
</span>
|
|
<span>
|
|
{{ t('node.detail.glance.consumptionGauge.amount', amountTemplateValues) }}
|
|
<span class="ml-10 percentage">/ {{ formattedPercentage }}
|
|
</span>
|
|
</span>
|
|
</template>
|
|
</ConsumptionGauge>
|
|
</template>
|