Refactor Policy-Gui to use Instant from Date 25/118025/2
authorrameshiyer27 <ramesh.murugan.iyer@est.tech>
Wed, 17 Feb 2021 18:17:01 +0000 (18:17 +0000)
committerJim Hahn <jrh3@att.com>
Fri, 19 Feb 2021 20:15:48 +0000 (20:15 +0000)
Issue-ID: POLICY-3069
Signed-off-by: zrrmmua <ramesh.murugan.iyer@est.tech>
Change-Id: Ie91e60667707df110c53b65fdac8918acb07f6e1

gui-pdp-monitoring/src/main/java/org/onap/policy/gui/pdp/monitoring/rest/PdpMonitoringRestResource.java

index 921c68c..bb11c26 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- *  Copyright (C) 2020 Nordix Foundation.
+ *  Copyright (C) 2020-2021 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -177,11 +177,11 @@ public class PdpMonitoringRestResource {
                     engineStatusObject.setPolicyExecutions(engineStats.getEventCount());
                     engineStatusObject.setLastPolicyDuration(gson.toJson(
                             getValuesFromCache(id, engineStats.getEngineId() + "_last_policy_duration",
-                                    pdpStatistics.getTimeStamp().getTime(), engineStats.getLastExecutionTime()),
+                                    pdpStatistics.getTimeStamp().getEpochSecond(), engineStats.getLastExecutionTime()),
                             List.class));
                     engineStatusObject.setAveragePolicyDuration(
                             gson.toJson(getValuesFromCache(id, engineStats.getEngineId() + "_average_policy_duration",
-                                    pdpStatistics.getTimeStamp().getTime(),
+                                    pdpStatistics.getTimeStamp().getEpochSecond(),
                                     (long) engineStats.getAverageExecutionTime()), List.class));
                     engineStatusList.add(engineStatusObject);
                 } catch (final RuntimeException e) {