io.keyko.monitoring.examples.celo.CeloConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web3-event-streamer Show documentation
Show all versions of web3-event-streamer Show documentation
Kafka stream processors that enrich data generated with web3-monitoring agent
package io.keyko.monitoring.examples.celo;
import com.typesafe.config.Config;
import io.keyko.monitoring.config.StreamerConfig;
public class CeloConfig extends StreamerConfig {
private static final String ACCOUNTS_AGGREGATION_TOPIC = "kafka.accounts-aggregation-topic";
private String accountsAggregationTopic;
public CeloConfig(Config config) {
super(config);
this.setAccountsAggregationTopic(config.getString(ACCOUNTS_AGGREGATION_TOPIC));
}
public String getAccountsAggregationTopic() {
return accountsAggregationTopic;
}
public void setAccountsAggregationTopic(String accountsAggregationTopic) {
this.accountsAggregationTopic = accountsAggregationTopic;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy