Package com.newrelic.metrics.publish

Examples of com.newrelic.metrics.publish.Runner


*/
public class Main {
   
    public static void main(String[] args) {
        try {
            Runner runner = new Runner();
            runner.add(new MySQLAgentFactory());
            runner.setupAndRun(); // Never returns
        } catch (ConfigurationException e) {
            System.err.println("ERROR: " + e.getMessage());
            System.exit(1);
        }
    }
View Full Code Here

TOP

Related Classes of com.newrelic.metrics.publish.Runner

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.