Package org.apache.sirona.store.tracking

Examples of org.apache.sirona.store.tracking.InMemoryPathTrackingDataStore$Pointer


    public PullDataStoreFactory()
    {
        super( new InMemoryCounterDataStore(), //
               new InMemoryGaugeDataStore(), //
               new EmptyStatuses(), //
               new InMemoryPathTrackingDataStore() );
    }
View Full Code Here


    private final Cube cube;
    private final boolean clearAfterCollect;

    public PullRepository() {
        super(new InMemoryCounterDataStore(), new GaugeDataStoreAdapter(), new EmptyStatuses(), new InMemoryPathTrackingDataStore());
        cube = IoCs.findOrCreateInstance(CubeBuilder.class).build();
        clearAfterCollect = Configuration.is(Configuration.CONFIG_PROPERTY_PREFIX + "pull.counter.clearOnCollect", false);
    }
View Full Code Here

    public DefaultDataStoreFactory() {
        super(
            IoCs.processInstance(new InMemoryCounterDataStore()),
            IoCs.processInstance(new InMemoryGaugeDataStore()),
            IoCs.processInstance(new PeriodicNodeStatusDataStore()),
            IoCs.processInstance( new InMemoryPathTrackingDataStore() ));
    }
View Full Code Here

        super(
            IoCs.processInstance(new GraphiteCounterDataStore()),
            IoCs.processInstance(new GraphiteGaugeDataStore()),
            new EmptyStatuses(),
            // FIXME real implementation in Graphite. olamy: not sure it's really supported
            new InMemoryPathTrackingDataStore());
    }
View Full Code Here

TOP

Related Classes of org.apache.sirona.store.tracking.InMemoryPathTrackingDataStore$Pointer

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.