io.openlineage.client.metrics.MeterRegistryFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlineage-java Show documentation
Show all versions of openlineage-java Show documentation
Java library for OpenLineage
/*
/* Copyright 2018-2024 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/
package io.openlineage.client.metrics;
import io.micrometer.core.instrument.MeterRegistry;
import java.util.Map;
/**
* MeterRegistryFactory is an interface that defines methods to build different types of meter
* registries from OpenLineage config.
*/
public interface MeterRegistryFactory {
T registry(Map config);
String type();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy