Examples of PerfRecord


Examples of com.jitlogic.zorka.common.tracedata.PerfRecord

    log.debug(ZorkaLogger.ZAG_DEBUG, "### perfRecordToData");

    ArrayList<ActiveCheckResult> list = new ArrayList<ActiveCheckResult>();

    ActiveCheckResult result;
    PerfRecord perfRecord = (PerfRecord) rec;

    long clock = perfRecord.getClock();

    for (PerfSample sample : perfRecord.getSamples()) {
      result = new ActiveCheckResult();

      result.setHost(hostname);
      result.setKey(sample.getMetric().getName());
      result.setValue(String.valueOf(sample.getValue()));
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.