use of org.apache.skywalking.oap.meter.analyzer.MetricConvert in project incubator-skywalking by apache.
the class MeterProcessService method start.
public void start(List<MeterConfig> configs) {
final MeterSystem meterSystem = manager.find(CoreModule.NAME).provider().getService(MeterSystem.class);
this.metricConverts = configs.stream().map(c -> new MetricConvert(c, meterSystem)).collect(Collectors.toList());
}
use of org.apache.skywalking.oap.meter.analyzer.MetricConvert in project skywalking by apache.
the class MeterProcessService method start.
public void start(List<MeterConfig> configs) {
final MeterSystem meterSystem = manager.find(CoreModule.NAME).provider().getService(MeterSystem.class);
this.metricConverts = configs.stream().map(c -> new MetricConvert(c, meterSystem)).collect(Collectors.toList());
}
Aggregations