mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
fix: time conversion s to ms
This commit is contained in:
@@ -50,7 +50,7 @@ readonly class InfluxdbService
|
|||||||
'starttransfer_time_us' => $info['starttransfer_time_us'],
|
'starttransfer_time_us' => $info['starttransfer_time_us'],
|
||||||
'size_download' => $info['size_download'],
|
'size_download' => $info['size_download'],
|
||||||
'ssl_verify_result' => $info['ssl_verify_result'],
|
'ssl_verify_result' => $info['ssl_verify_result'],
|
||||||
], floor($info['start_time'] * 3),
|
], (int) floor($info['start_time'] * 1e3),
|
||||||
WritePrecision::MS)
|
WritePrecision::MS)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user