orbit.server.mesh.local.LocalMeterRegistry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orbit-server Show documentation
Show all versions of orbit-server Show documentation
Orbit is a system to make building highly scalable realtime services easier.
/*
Copyright (C) 2015 - 2020 Electronic Arts Inc. All rights reserved.
This file is part of the Orbit Project .
See license in LICENSE.
*/
package orbit.server.mesh.local
import io.micrometer.core.instrument.MeterRegistry
import io.micrometer.core.instrument.simple.SimpleMeterRegistry
import mu.KotlinLogging
import orbit.util.di.ExternallyConfigured
class LocalMeterRegistry : SimpleMeterRegistry() {
private val logger = KotlinLogging.logger {}
object LocalMeterRegistrySingleton : ExternallyConfigured {
override val instanceType = LocalMeterRegistry::class.java
}
init {
logger.info("Starting simple meter registry")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy