use of org.apache.skywalking.apm.collector.storage.h2.base.define.H2StorageInstaller in project incubator-skywalking by apache.
the class StorageModuleH2Provider method start.
@Override
public void start(Properties config) throws ServiceNotProvidedException {
try {
h2Client.initialize();
H2StorageInstaller installer = new H2StorageInstaller();
installer.install(h2Client);
} catch (H2ClientException | StorageException e) {
logger.error(e.getMessage(), e);
}
}
Aggregations