Examples of insertKpiValue()


Examples of it.eng.spagobi.kpi.config.dao.IKpiDAO.insertKpiValue()

        }
        logger.debug("New value calculated");
        // Insert new Value into the DB
        IKpiDAO dao=DAOFactory.getKpiDAO();
        dao.setUserProfile(profile);
        dao.insertKpiValue(value);
        logger.debug("New value inserted in the DB");   
        // Checks if the value is alarming (out of a certain range)
        // If the value is alarming a new line will be inserted in the sbi_alarm_event table and scheduled to be sent
        DAOFactory.getAlarmDAO().isAlarmingValue(value);    
      } catch (EMFInternalError e) {
View Full Code Here

Examples of it.eng.spagobi.kpi.config.dao.IKpiDAO.insertKpiValue()

            if(doSave){
              // Insert new Value into the DB
              IKpiDAO dao= DAOFactory.getKpiDAO();
              dao.setUserProfile(profile);
              Integer kpiValueId = dao.insertKpiValue(kpiValTemp);
              kVal.setKpiValueId(kpiValueId);
              logger.info("New value inserted in the DB. Resource="+kpiValTemp.getR().getName()+" KpiInstanceId="+kpiValTemp.getKpiInstanceId());
            }
            // Checks if the value is alarming (out of a certain range)
            // If the value is alarming a new line will be inserted in the
View Full Code Here

Examples of it.eng.spagobi.kpi.config.dao.IKpiErrorDAO.insertKpiValue()

            if(doSave){
              // Insert new Value into the DB
              IKpiDAO dao= DAOFactory.getKpiDAO();
              dao.setUserProfile(profile);
              Integer kpiValueId = dao.insertKpiValue(kpiValTemp);
              kVal.setKpiValueId(kpiValueId);
              logger.info("New value inserted in the DB. Resource="+kpiValTemp.getR().getName()+" KpiInstanceId="+kpiValTemp.getKpiInstanceId());
            }
            // Checks if the value is alarming (out of a certain range)
            // If the value is alarming a new line will be inserted in the
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.