Package com.dianping.cat.status.model.entity

Examples of com.dianping.cat.status.model.entity.Extension


        }
      }

      for (Entry<String, Extension> entry : info.getExtensions().entrySet()) {
        String id = entry.getKey();
        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) {
View Full Code Here

TOP

Related Classes of com.dianping.cat.status.model.entity.Extension

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.