Package com.dianping.cat.consumer.heartbeat.model.entity

Examples of com.dianping.cat.consumer.heartbeat.model.entity.Detail


        Extension ext = entry.getValue();

        com.dianping.cat.consumer.heartbeat.model.entity.Extension extension = period.findOrCreateExtension(id);
        for (Entry<String, String> kv : ext.getDynamicAttributes().entrySet()) {
          double value = Double.valueOf(kv.getValue());
          extension.getDetails().put(kv.getKey(), new Detail(kv.getKey()).setValue(value));
        }
      }
    } catch (Exception e) {
      Cat.logError(e);
    }
View Full Code Here

TOP

Related Classes of com.dianping.cat.consumer.heartbeat.model.entity.Detail

Copyright © 2018 www.massapicom. 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.