This commit is contained in:
2020-06-03 21:24:38 +00:00
parent e83b82957e
commit 2cf4303b23
2 changed files with 16 additions and 18 deletions

View File

@@ -15,9 +15,9 @@
<v-tabs v-model="tab" color="primary" grow @change="tabChanged">
<v-tabs-slider></v-tabs-slider>
<v-tab>cpu & memory</v-tab>
<v-tab>db</v-tab>
<v-tab>storage</v-tab>
<v-tab>??cpu memory</v-tab>
<v-tab>??Database</v-tab>
<v-tab>??file storage</v-tab>
<v-tabs-items v-model="tab">
<v-tab-item>
@@ -294,7 +294,7 @@ export default {
return {
datasets: [
{
label: "CPU %",
label: "??CPU %",
borderColor: CHART_PALETTE.teal,
fill: false,
radius: 0,
@@ -309,7 +309,7 @@ export default {
return {
datasets: [
{
label: "DB Size (MB)",
label: "??DB Size (MB)",
borderColor: CHART_PALETTE.blue,
fill: false,
radius: 0,
@@ -328,7 +328,7 @@ export default {
labels: window.$gz._.map(this.db.topTables, "name"),
datasets: [
{
label: "Top tables (KB)",
label: "??Top tables (KB)",
data: window.$gz._.map(this.db.topTables, "value"),
backgroundColor: getPalette(
this.db.topTables ? this.db.topTables.length : 3
@@ -375,7 +375,7 @@ export default {
return {
datasets: [
{
label: "Allocated (MB)",
label: "??Allocated (MB)",
borderColor: CHART_PALETTE.purple,
fill: false,
radius: 0,
@@ -384,7 +384,7 @@ export default {
data: this.memcpu.allocated
},
{
label: "Working set (MB)",
label: "??Working set (MB)",
borderColor: CHART_PALETTE.green,
//borderWidth:4,
// pointStyle: "rectRot",
@@ -396,7 +396,7 @@ export default {
data: this.memcpu.workingSet
},
{
label: "Private (MB)",
label: "??Private bytes (MB)",
borderColor: CHART_PALETTE.orange,
fill: false,
radius: 0,
@@ -411,7 +411,7 @@ export default {
return {
datasets: [
{
label: "Attachments (MB)",
label: "??Attachments (MB)",
borderColor: CHART_PALETTE.purple,
fill: false,
radius: 0,
@@ -420,7 +420,7 @@ export default {
data: this.storage.attachmentFileSize
},
{
label: "Backup (MB)",
label: "??Backup (MB)",
borderColor: CHART_PALETTE.orange,
fill: false,
radius: 0,
@@ -429,7 +429,7 @@ export default {
data: this.storage.utilityFileSize
},
{
label: "Available space (MB)",
label: "??Available space (MB)",
borderColor: CHART_PALETTE.green,
fill: false,
radius: 0,
@@ -444,7 +444,7 @@ export default {
return {
datasets: [
{
label: "Attachment files",
label: "??Attachment files",
borderColor: CHART_PALETTE.blue,
fill: false,
radius: 0,