Skip to content

Commit

Permalink
avg response time (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored Mar 7, 2022
1 parent 72bff5d commit 36f6812
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/app/graphs/label-trend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const labelTrendChartOptions = (data) => {
},
series: [
{
name: "99%",
name: "Response Time [P99]",
yAxis: 0,
color: "#008DA6",
lineWidth: 0,
Expand All @@ -98,7 +98,7 @@ export const labelTrendChartOptions = (data) => {
marker: { enabled: false },
},
{
name: "95%",
name: "Response Time [P95]",
yAxis: 0,
color: "#36B37E",
lineWidth: 0,
Expand All @@ -109,7 +109,7 @@ export const labelTrendChartOptions = (data) => {
marker: { enabled: false },
},
{
name: "90%",
name: "Response Time [P90]",
yAxis: 0,
data: data["n0"],
color: "#FFC400",
Expand All @@ -119,6 +119,17 @@ export const labelTrendChartOptions = (data) => {
},
marker: { enabled: false },
},
{
name: "Response Time [avg]",
yAxis: 0,
visible: false,
data: data.avgResponseTime,
lineWidth: 0,
tooltip: {
valueSuffix: " ms"
},
marker: { enabled: false },
},
{
name: "Connection [avg]",
yAxis: 0,
Expand Down

0 comments on commit 36f6812

Please sign in to comment.