Package com.newrelic.org.json.simple

Examples of com.newrelic.org.json.simple.JSONArray


            reportAppError(json, status, path, msg.toString());
          }
        }
      }
       
        JSONArray customMetrics = (JSONArray) json.get("custom_metric");
      if (customMetrics != null) {
        for (Object key : customMetrics) {
          JSONObject metric = (JSONObject)key;
             
          String name = (String) metric.get("name");
View Full Code Here

TOP

Related Classes of com.newrelic.org.json.simple.JSONArray

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.