Package com.googlecode.jmxtrans.model.naming

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


        this.metricNameStrategy = new JexlNamingStrategy(jexlExpr);
      } catch (JexlException jexlExc) {
        throw new LifecycleException("failed to setup naming strategy", jexlExc);
      }
    } else {
      this.metricNameStrategy = new ClassAttributeNamingStrategy();
    }

    this.addHostnameTag = firstNonNull(
        addHostnameTag,
        Settings.getBooleanSetting(this.getSettings(), "addHostnameTag", this.getAddHostnameTagDefault()),
View Full Code Here

TOP

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

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.