
com.oath.micro.server.event.metrics.MetricEventsPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-event-metrics Show documentation
Show all versions of micro-event-metrics Show documentation
Opinionated rest microservices
The newest version!
package com.oath.micro.server.event.metrics;
import com.oath.micro.server.Plugin;
import cyclops.reactive.collections.mutable.SetX;
import java.util.Set;
/**
*
* Collections of Spring configuration classes (Classes annotated with @Configuration)
* that configure various useful pieces of functionality - such as property file loading,
* datasources, scheduling etc
*
* @author johnmcclean
*
*/
public class MetricEventsPlugin implements Plugin{
@Override
public Set springClasses() {
return SetX.of(
Configuration.class,
MetricsCatcher.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy