import org.apache.sirona.store.status.InMemoryCollectorNodeStatusDataStore;
import org.apache.sirona.store.DelegateDataStoreFactory;
public class CollectorDataStoreFactory extends DelegateDataStoreFactory {
public CollectorDataStoreFactory() {
super(new InMemoryCollectorCounterStore(), new DelegatedCollectorGaugeDataStore(), new InMemoryCollectorNodeStatusDataStore());
}