clean uptime percentage display
This commit is contained in:
parent
28c0e16a0c
commit
df8f93f0c2
|
@ -313,13 +313,16 @@ router.get("/api/badge/:id/uptime/:duration?", cache("5 minutes"), async (reques
|
||||||
requestedMonitorId
|
requestedMonitorId
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// limit the displayed uptime percentage to four ( two, when displayed as percent ) decimal digits
|
||||||
|
const cleanUptime = parseFloat(uptime.toPrecision(4));
|
||||||
|
|
||||||
// use a given, custom color or calculate one based on the uptime value
|
// use a given, custom color or calculate one based on the uptime value
|
||||||
badgeValues.color = color ?? percentageToColor(uptime);
|
badgeValues.color = color ?? percentageToColor(uptime);
|
||||||
// use a given, custom labelColor or use the default badge label color ( defined by badge-maker)
|
// use a given, custom labelColor or use the default badge label color ( defined by badge-maker)
|
||||||
badgeValues.labelColor = labelColor ?? "";
|
badgeValues.labelColor = labelColor ?? "";
|
||||||
// build a lable string. If a custom label is given, override the default one ( requestedDuration )
|
// build a lable string. If a custom label is given, override the default one ( requestedDuration )
|
||||||
badgeValues.label = filterAndJoin([labelPrefix, label ?? requestedDuration, labelSuffix]);
|
badgeValues.label = filterAndJoin([labelPrefix, label ?? requestedDuration, labelSuffix]);
|
||||||
badgeValues.message = filterAndJoin([prefix, `${uptime * 100}`, suffix]);
|
badgeValues.message = filterAndJoin([prefix, `${cleanUptime * 100}`, suffix]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// build the SVG based on given values
|
// build the SVG based on given values
|
||||||
|
|
Loading…
Reference in New Issue