/* ========================================================================================= * Copyright © 2013-2016 the kamon project * * Licensed 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 * * http://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 kamon import _root_.akka.actor import _root_.akka.actor._ import com.typesafe.config.{Config, ConfigFactory, ConfigParseOptions, ConfigResolveOptions} import kamon.metric._ import kamon.trace.TracerModuleImpl import kamon.util.logger.LazyLogger import _root_.scala.util.control.NonFatal import _root_.scala.util.{Failure, Success, Try} object Kamon { private val log = LazyLogger("Kamon") trait Extension extends actor.Extension val config = resolveConfiguration val metrics = MetricsModuleImpl(config) val tracer = TracerModuleImpl(metrics, config) private lazy val _system = { val internalConfig = config.getConfig("kamon.internal-config") val patchedConfig = config .withoutPath("akka") .withoutPath("spray") .withFallback(internalConfig) log.info("Initializing Kamon...") tryLoadAutoweaveModule() ActorSystem("kamon", patchedConfig) } private lazy val _start = { metrics.start(_system) tracer.start(_system) _system.registerExtension(ModuleLoader) } def start(): Unit = _start def shutdown(): Unit = { _system.shutdown() } private def tryLoadAutoweaveModule(): Unit = { Try { val autoweave = Class.forName("kamon.autoweave.Autoweave") autoweave.getDeclaredMethod("attach").invoke(autoweave.newInstance()) } match { case Success(_) ⇒ val color = (msg: String) ⇒ s"""\u001B[32m${msg}\u001B[0m""" log.info(color("Kamon-autoweave has been successfully loaded.")) log.info(color("The AspectJ loadtime weaving agent is now attached to the JVM (you don't need to use -javaagent).")) log.info(color("This offers extra flexibility but obviously any classes loaded before attachment will not be woven.")) case Failure(NonFatal(reason)) ⇒ log.debug(s"Kamon-autoweave failed to load. Reason: ${reason.getMessage}.") } } private def resolveConfiguration: Config = { val defaultConfig = ConfigFactory.load(this.getClass.getClassLoader, ConfigParseOptions.defaults(), ConfigResolveOptions.defaults().setAllowUnresolved(true)) defaultConfig.getString("kamon.config-provider") match { case "default" ⇒ defaultConfig.resolve() case fqcn ⇒ val dynamic = new ReflectiveDynamicAccess(getClass.getClassLoader) dynamic.createInstanceFor[ConfigProvider](fqcn, Nil).get.config } } } trait ConfigProvider { def config: Config }