mirror of https://github.com/rancher/dashboard.git
75 lines
1.3 KiB
Vue
75 lines
1.3 KiB
Vue
<script>
|
|
import ConsumptionGauge from '@/components/ConsumptionGauge';
|
|
import { METRIC } 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
|
|
},
|
|
},
|
|
|
|
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;
|
|
},
|
|
|
|
memoryUsage() {
|
|
let out = 0;
|
|
|
|
if (this.metrics) {
|
|
out = this.metrics.memoryUsage;
|
|
}
|
|
|
|
return out;
|
|
},
|
|
|
|
memoryUnits() {
|
|
const exponent = exponentNeeded(this.memoryTotal, 1024);
|
|
|
|
return `${ UNITS[exponent] }iB`;
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
memoryFormatter(value, exponent) {
|
|
const formatOptions = {
|
|
addSuffix: false,
|
|
increment: 1024,
|
|
minExponent: exponent
|
|
};
|
|
|
|
return formatSi(value, formatOptions);
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<ConsumptionGauge :capacity="memoryTotal" :used="memoryUsage" :units="memoryUnits" :number-formatter="memoryFormatter" />
|
|
</template>
|