aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_api
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-07-03 13:15:37 +0000
committerFuwn <[email protected]>2021-07-03 13:15:37 +0000
commit6153a3e5ae3eff1c73ba47c310717d879b4ca1c5 (patch)
treee09da20c4b0ed1d2f218d6dfac21496f787ba4c1 /crates/whirl_api
parenttest(whirl_common): add criterion benchmarks (diff)
downloadwhirl-6153a3e5ae3eff1c73ba47c310717d879b4ca1c5.tar.xz
whirl-6153a3e5ae3eff1c73ba47c310717d879b4ca1c5.zip
refactor(whirl_common): rename `seconds_to_hrtime` to `unixts_to_hrtime`
Diffstat (limited to 'crates/whirl_api')
-rw-r--r--crates/whirl_api/src/routes/stats/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/whirl_api/src/routes/stats/mod.rs b/crates/whirl_api/src/routes/stats/mod.rs
index d5efc91..5ec5eee 100644
--- a/crates/whirl_api/src/routes/stats/mod.rs
+++ b/crates/whirl_api/src/routes/stats/mod.rs
@@ -23,7 +23,7 @@ pub fn statistics() -> HttpResponse {
system: StatisticsSystem {
os_type: sys.name().unwrap(),
release: sys.kernel_version().unwrap(),
- uptime: whirl_common::system::seconds_to_hrtime(usize::try_from(sys.uptime()).unwrap()),
+ uptime: whirl_common::system::unixts_to_hrtime(usize::try_from(sys.uptime()).unwrap()),
},
process: StatisticsProcess {
// (process.cpu_usage() * 100.0).round() / 100.0