This commit is contained in:
2020-05-28 22:24:54 +00:00
parent 403b71359c
commit c9b9f65a37
2 changed files with 24 additions and 2 deletions

View File

@@ -29,8 +29,6 @@ todo: OPS view metrics
Memory to longer time frame?
reconsider all time frames
todo: re-fetch on breakpoint change
RESEARCH:
https://www.tpeczek.com/2017/06/feeding-server-timing-api-from-aspnet.html

View File

@@ -111,6 +111,9 @@ export default {
label: "CPU %",
borderColor: CHART_COLOR.teal,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.obj.metricMM.cpu
}
]
@@ -123,18 +126,27 @@ export default {
label: "GC Gen0",
borderColor: CHART_COLOR.blue,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.obj.metricMM.gen0
},
{
label: "GC Gen1",
borderColor: CHART_COLOR.red,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.obj.metricMM.gen1
},
{
label: "GC Gen2",
borderColor: CHART_COLOR.green,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.obj.metricMM.gen2
}
]
@@ -147,11 +159,20 @@ export default {
label: "Allocated (MB)",
borderColor: CHART_COLOR.purple,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.obj.metricMM.allocated
},
{
label: "Working set (MB)",
borderColor: CHART_COLOR.green,
//borderWidth:4,
// pointStyle: "rectRot",
radius: 0,
hoverRadius: 10,
hitRadius: 4,
// borderDash: [20, 3, 3, 3, 3, 3, 3, 3],
fill: false,
data: this.obj.metricMM.workingSet
},
@@ -159,6 +180,9 @@ export default {
label: "Private (MB)",
borderColor: CHART_COLOR.orange,
fill: false,
radius: 0,
hoverRadius: 10,
hitRadius: 4,
data: this.obj.metricMM.privateBytes
}
]