Package org.apache.uima.ducc.transport.event.jd

Examples of org.apache.uima.ducc.transport.event.jd.PerformanceMetricsSummaryMap.entrySet()


    String stars = "********************";
    duccOut.info(location, jobid, stars);
    String sep = " / ";
    duccOut.info(location, jobid, "PerformanceMetricsSummaryMapSize:"+map.size());
    duccOut.info(location, jobid, "uniqueName"+sep+"name"+sep+"numProcessed"+sep+"analysisTime"+sep+"Avg"+sep+"Min"+sep+"Max");
    Set<Entry<String, PerformanceMetricsSummaryItem>> tset = map.entrySet();
    for (Entry<String, PerformanceMetricsSummaryItem> entry : tset) {
      String uniqueName = entry.getKey();
      PerformanceMetricsSummaryItem value = entry.getValue();
      String name = value.getName();
      long analysisTime = value.getAnalysisTime();
View Full Code Here


        PerformanceMetricsSummaryMap pms = psf.readSummary();
        if ( pms == null ) return;

        int cascount = pms.casCount();
        int size = pms.size();
        Set<Entry<String, PerformanceMetricsSummaryItem>> set = pms.entrySet();
        ArrayList<PerformanceMetricsSummaryItem> items = new ArrayList<PerformanceMetricsSummaryItem>();
        int maxl = 0;
        for ( Entry<String, PerformanceMetricsSummaryItem> e : set ) {
            PerformanceMetricsSummaryItem pmi = e.getValue();
            String k = pmi.getUniqueName();
View Full Code Here

          sb.append("</th>");
          sb.append("</tr>");
          ArrayList <UimaStatistic> uimaStats = new ArrayList<UimaStatistic>();
            uimaStats.clear();
            //long analysisTime = 0;
            for (Entry<String, PerformanceMetricsSummaryItem> entry : performanceMetricsSummaryMap.entrySet()) {
              PerformanceMetricsSummaryItem item = entry.getValue();
              String shortname = item.getDisplayName();
              long anTime = item.getAnalysisTime();
              long anMinTime = item.getAnalysisTimeMin();
              long anMaxTime = item.getAnalysisTimeMax();
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.