mirror of https://github.com/statping/statping
parent
eda0c507c5
commit
d0bee58cc3
|
@ -3,6 +3,7 @@
|
|||
- Modified JWT token key to be sha256 of API Secret
|
||||
- Modified github actions to build multi-arch Docker images
|
||||
- Added "update" command to install latest version
|
||||
- Fixed dashboard uptime_data API request to request correct start/time timestamp
|
||||
|
||||
# 0.90.58 (07-09-2020)
|
||||
- Fixed ICMP latency/ping durations
|
||||
|
|
|
@ -147,7 +147,8 @@
|
|||
}
|
||||
},
|
||||
async getUptime() {
|
||||
this.uptime = await Api.service_uptime(this.service.id)
|
||||
const start = this.nowSubtract(3 * 86400)
|
||||
this.uptime = await Api.service_uptime(this.service.id, this.toUnix(start), this.toUnix(this.now()))
|
||||
},
|
||||
async loadInfo() {
|
||||
this.set1 = await this.getHits(24 * 7, "6h")
|
||||
|
|
Loading…
Reference in New Issue