Examples of PullRepository


Examples of org.apache.sirona.agent.webapp.pull.repository.PullRepository

        assertTrue(validations.contains("fake"));
        assertTrue(validations.contains("refake"));
    }

    private static PullRepository createRepo() {
        final PullRepository repo = new PullRepository();
        for (int i = 0; i < 3; i++) {
            repo.getCounter(new Counter.Key(Role.PERFORMANCES, "counter#" + i)).add(i);
        }
        repo.addGauge(new Gauge() {
            public int value = 0;

            @Override
            public Role role() {
                return new Role("gaugerole", Unit.UNARY);
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.