Merge branch 'ms-resolution'

This commit is contained in:
Alexander Zobnin
2017-03-28 19:49:20 +03:00
8 changed files with 11 additions and 8 deletions

View File

@@ -304,7 +304,7 @@ var ZabbixAPIDatasource = function () {
value = extractText(point.value, target.textFilter, target.useCaptureGroups);
}
return [value, point.clock * 1000];
return [value, point.clock * 1000 + Math.round(point.ns / 1000000)];
});
});
} else {

View File

@@ -80,7 +80,7 @@ function handleSLAResponse(itservice, slaProperty, slaObject) {
function convertHistoryPoint(point) {
// Value must be a number for properly work
return [Number(point.value), point.clock * 1000];
return [Number(point.value), point.clock * 1000 + Math.round(point.ns / 1000000)];
}
function convertTrendPoint(valueType, point) {