diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 0736a7e9..6eaaee66 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -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 diff --git a/ayanova/src/views/ops-metrics.vue b/ayanova/src/views/ops-metrics.vue index 5f2ef2ea..a03d34b3 100644 --- a/ayanova/src/views/ops-metrics.vue +++ b/ayanova/src/views/ops-metrics.vue @@ -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 } ]