Package com.googlecode.jmxtrans.model.naming

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

Related Classes of com.googlecode.jmxtrans.model.naming.JexlNamingStrategy

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.