Commit 01ec8d0b by Mitsuhiro Tanda

fix cloudwatch time error

parent d09e8a12
...@@ -596,7 +596,7 @@ function (angular, _) { ...@@ -596,7 +596,7 @@ function (angular, _) {
} }
function convertToCloudWatchTime(date) { function convertToCloudWatchTime(date) {
return date.valueOf() / 1000; return Math.round(date.valueOf() / 1000);
} }
function convertDimensionFormat(dimensions) { function convertDimensionFormat(dimensions) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment