MKehayov commented on code in PR #1641:
URL: https://github.com/apache/systemds/pull/1641#discussion_r906695552


##########
src/main/java/org/apache/sysds/runtime/controlprogram/federated/monitoring/models/NodeEntityModel.java:
##########
@@ -68,13 +83,43 @@ public void setStats(final List<BaseEntityModel> stats) {
                _stats = stats;
        }
 
+       public double getJitCompileTime() {
+               return _jitCompileTime;
+       }
+
+       public void setJitCompileTime(final double jitCompileTime) {
+               _jitCompileTime = jitCompileTime;
+       }
+
+       public String getRequestTypeCount() {
+               List<String> requestTypeCountStrArr = new ArrayList<>();
+
+               if (_requestTypeCount != null) {
+                       for(var entry : _requestTypeCount) {
+                               requestTypeCountStrArr.add(String.format("{" +

Review Comment:
   Done, moved logic into a separate file.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to