Examples of JexlNamingStrategy


Examples of com.googlecode.jmxtrans.model.naming.JexlNamingStrategy

    if (jexlExpr == null) {
      jexlExpr = Settings.getStringSetting(this.getSettings(), "metricNamingExpression", null);
    }
    if (jexlExpr != null) {
      try {
        this.metricNameStrategy = new JexlNamingStrategy(jexlExpr);
      } catch (JexlException jexlExc) {
        throw new LifecycleException("failed to setup naming strategy", jexlExc);
      }
    } else {
      this.metricNameStrategy = new ClassAttributeNamingStrategy();
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.