blob: 9d628d277527cb2068e1c0955cf6598469a699cc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.accumulo.core.spi.metrics;
import static org.junit.jupiter.api.Assertions.assertInstanceOf;
import java.util.Map;
import org.apache.accumulo.core.spi.common.ServiceEnvironment;
import org.junit.jupiter.api.Test;
import io.micrometer.core.instrument.logging.LoggingMeterRegistry;
class LoggingMeterRegistryFactoryTest {
@Test
public void createTest() {
LoggingMeterRegistryFactory factory = new LoggingMeterRegistryFactory();
var reg = factory.create(new LoggingMetricsParams());
assertInstanceOf(LoggingMeterRegistry.class, reg);
}
private static class LoggingMetricsParams implements MeterRegistryFactory.InitParameters {
@Override
public Map<String,String> getOptions() {
// note: general.custom.metrics.opts. is expected to be stripped before passing the options.
return Map.of("prop1", "abc", "logging.step", "1s");
}
@Override
public ServiceEnvironment getServiceEnv() {
return null;
}
}
}