use of com.linkedin.kafka.cruisecontrol.monitor.sampling.prometheus.PrometheusMetricSampler in project cruise-control by linkedin.
the class PrometheusMetricSamplerTest method setUp.
/**
* Set up mocks
*/
@Before
public void setUp() {
_prometheusAdapter = mock(PrometheusAdapter.class);
_prometheusMetricSampler = new PrometheusMetricSampler();
_prometheusQueryMap = new DefaultPrometheusQuerySupplier().get();
}
Aggregations