Github user ashandk commented on a diff in the pull request:

    https://github.com/apache/stratos/pull/436#discussion_r37277812
  
    --- Diff: 
components/org.apache.stratos.manager.console/console/controllers/healthStatistics/healthStatistics_getrequest.jag
 ---
    @@ -0,0 +1,120 @@
    +<%
    +/*
    + *
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License.  You may obtain a copy of the License at
    + *
    + *   http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied.  See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + *
    + */
    +var log = new Log("apachestratos.configure_request"),
    +        util = require('/controllers/rest/rest_calls.jag'),
    +        formtype = request.getParameter('formtype'),
    +        ChartType = request.getParameter('chartType'),
    +        Duration = request.getParameter('duration'),
    +        IdValue = request.getParameter('idValue');
    +       
    +var formSubmit;
    +var DurationVal;
    +
    +//creatingTimeObjects
    +var startTime = new Date();
    +var endTime = new Date();
    +
    +
    +//add login validator for pages
    +include('/controllers/login/validator.jag');
    +
    +if( "30Min" != Duration){
    +
    +switch (Duration) {
    + 
    +    case "1Hour":
    +        DurationVal = 1;
    +        break;
    +    case "1Day":
    +        DurationVal = 24;
    +        break;
    +    case "1Week":
    +        DurationVal = 168;
    +        break;
    +    case "1Month":
    +        DurationVal = 672;
    +        break;
    +}
    +
    +
    +//substratcting hour from current time
    +startTime.setHours(endTime.getHours() - DurationVal);
    +
    +}else{
    +
    +
    +//substratcting hour from current time
    +startTime.setMinutes(endTime.getMinutes() - 30);
    +
    +}
    +
    +
    +//switch to trigger the rest call when needs
    +try {
    +    switch (formtype) {
    +       
    +        case "MemoryConsumption":
    +
    +            if("Cluster" == ChartType){
    +
    +                formSubmit = 
util.RESTCalls.getClusterMemoryAverageDetails(IdValue, 
startTime.getTime(),endTime.getTime());
    +                break;
    +            }
    +            else{
    +                formSubmit = 
util.RESTCalls.getMemberMemoryAvrageDetails(IdValue, 
startTime.getTime(),endTime.getTime());      
    +                break;
    +            }
    +            
    +        case "LoadAverage":
    +
    +            if("Cluster" == ChartType){
    +                formSubmit = 
util.RESTCalls.getClusterLoadAverageDetails(IdValue, 
startTime.getTime(),endTime.getTime());      
    +                break;
    +            }
    +            else{
    +                formSubmit = 
util.RESTCalls.getMemberLoadAverageDetails(IdValue, 
startTime.getTime(),endTime.getTime());      
    +                break;
    +            }
    +            
    +        case "InFlight":
    +            formSubmit = util.RESTCalls.getFlightRequestDetails(IdValue, 
startTime.getTime(),endTime.getTime());      
    +            break;  
    +                       
    +        default:
    +            session.put("deploy-status", { "message": "Sorry Endpoint 
Error", "status": "error" });
    +    }
    +
    +//vaidating the response and return
    +    if (formSubmit == undefined)
    +    {     
    +    print({"status": 'error', "message": "No Data found!"});
    +
    +    }else{
    --- End diff --
    
    Removed the blank lines and reformatted the code.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to