This commit is contained in:
@@ -29,8 +29,6 @@ todo: OPS view metrics
|
|||||||
Memory to longer time frame?
|
Memory to longer time frame?
|
||||||
reconsider all time frames
|
reconsider all time frames
|
||||||
|
|
||||||
todo: re-fetch on breakpoint change
|
|
||||||
|
|
||||||
|
|
||||||
RESEARCH:
|
RESEARCH:
|
||||||
https://www.tpeczek.com/2017/06/feeding-server-timing-api-from-aspnet.html
|
https://www.tpeczek.com/2017/06/feeding-server-timing-api-from-aspnet.html
|
||||||
|
|||||||
@@ -111,6 +111,9 @@ export default {
|
|||||||
label: "CPU %",
|
label: "CPU %",
|
||||||
borderColor: CHART_COLOR.teal,
|
borderColor: CHART_COLOR.teal,
|
||||||
fill: false,
|
fill: false,
|
||||||
|
radius: 0,
|
||||||
|
hoverRadius: 10,
|
||||||
|
hitRadius: 4,
|
||||||
data: this.obj.metricMM.cpu
|
data: this.obj.metricMM.cpu
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -123,18 +126,27 @@ export default {
|
|||||||
label: "GC Gen0",
|
label: "GC Gen0",
|
||||||
borderColor: CHART_COLOR.blue,
|
borderColor: CHART_COLOR.blue,
|
||||||
fill: false,
|
fill: false,
|
||||||
|
radius: 0,
|
||||||
|
hoverRadius: 10,
|
||||||
|
hitRadius: 4,
|
||||||
data: this.obj.metricMM.gen0
|
data: this.obj.metricMM.gen0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "GC Gen1",
|
label: "GC Gen1",
|
||||||
borderColor: CHART_COLOR.red,
|
borderColor: CHART_COLOR.red,
|
||||||
fill: false,
|
fill: false,
|
||||||
|
radius: 0,
|
||||||
|
hoverRadius: 10,
|
||||||
|
hitRadius: 4,
|
||||||
data: this.obj.metricMM.gen1
|
data: this.obj.metricMM.gen1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "GC Gen2",
|
label: "GC Gen2",
|
||||||
borderColor: CHART_COLOR.green,
|
borderColor: CHART_COLOR.green,
|
||||||
fill: false,
|
fill: false,
|
||||||
|
radius: 0,
|
||||||
|
hoverRadius: 10,
|
||||||
|
hitRadius: 4,
|
||||||
data: this.obj.metricMM.gen2
|
data: this.obj.metricMM.gen2
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -147,11 +159,20 @@ export default {
|
|||||||
label: "Allocated (MB)",
|
label: "Allocated (MB)",
|
||||||
borderColor: CHART_COLOR.purple,
|
borderColor: CHART_COLOR.purple,
|
||||||
fill: false,
|
fill: false,
|
||||||
|
radius: 0,
|
||||||
|
hoverRadius: 10,
|
||||||
|
hitRadius: 4,
|
||||||
data: this.obj.metricMM.allocated
|
data: this.obj.metricMM.allocated
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Working set (MB)",
|
label: "Working set (MB)",
|
||||||
borderColor: CHART_COLOR.green,
|
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,
|
fill: false,
|
||||||
data: this.obj.metricMM.workingSet
|
data: this.obj.metricMM.workingSet
|
||||||
},
|
},
|
||||||
@@ -159,6 +180,9 @@ export default {
|
|||||||
label: "Private (MB)",
|
label: "Private (MB)",
|
||||||
borderColor: CHART_COLOR.orange,
|
borderColor: CHART_COLOR.orange,
|
||||||
fill: false,
|
fill: false,
|
||||||
|
radius: 0,
|
||||||
|
hoverRadius: 10,
|
||||||
|
hitRadius: 4,
|
||||||
data: this.obj.metricMM.privateBytes
|
data: this.obj.metricMM.privateBytes
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user