2021-01-03 14:38:32 +01:00
|
|
|
<template>
|
|
|
|
<div class="zlxnikvl">
|
|
|
|
<XPie class="pie" :value="usage"/>
|
|
|
|
<div>
|
|
|
|
<p><fa :icon="faMemory"/>RAM</p>
|
|
|
|
<p>Total: {{ bytes(total, 1) }}</p>
|
|
|
|
<p>Used: {{ bytes(used, 1) }}</p>
|
|
|
|
<p>Free: {{ bytes(free, 1) }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faMemory } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import XPie from './pie.vue';
|
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XPie
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
connection: {
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
meta: {
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
usage: 0,
|
|
|
|
total: 0,
|
|
|
|
used: 0,
|
|
|
|
free: 0,
|
|
|
|
faMemory,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.connection.on('stats', this.onStats);
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
this.connection.off('stats', this.onStats);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onStats(stats) {
|
2021-02-26 17:29:29 +01:00
|
|
|
this.usage = stats.mem.active / this.meta.mem.total;
|
2021-01-03 14:38:32 +01:00
|
|
|
this.total = this.meta.mem.total;
|
2021-02-26 17:29:29 +01:00
|
|
|
this.used = stats.mem.active;
|
|
|
|
this.free = this.meta.mem.total - stats.mem.active;
|
2021-01-03 14:38:32 +01:00
|
|
|
},
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.zlxnikvl {
|
|
|
|
display: flex;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> .pie {
|
|
|
|
height: 82px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
|
|
> [data-icon] {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|