aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/Kamon.scala
blob: ecbc796e1752de94905c3098b298d06fd758e1d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/* =========================================================================================
 * Copyright © 2013-2017 the kamon project <http://kamon.io/>
 *
 * 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 com.typesafe.config.{Config, ConfigFactory}
import io.opentracing.propagation.Format
import io.opentracing.{ActiveSpan, Span, SpanContext}
import kamon.metric._
import kamon.trace.Tracer
import kamon.util.{Filters, MeasurementUnit, Registration}

import scala.concurrent.Future
import java.time.Duration
import java.util.concurrent.{Executors, ScheduledExecutorService, ScheduledThreadPoolExecutor}

import io.opentracing.ActiveSpan.Continuation
import org.slf4j.LoggerFactory

import scala.util.Try


object Kamon extends MetricLookup with ReporterRegistry with io.opentracing.Tracer {
  private val logger = LoggerFactory.getLogger("kamon.Kamon")
  @volatile private var _config = ConfigFactory.load()
  @volatile private var _environment = Environment.fromConfig(_config)
  @volatile private var _filters = Filters.fromConfig(_config)

  private val _scheduler = Executors.newScheduledThreadPool(schedulerPoolSize(_config), numberedThreadFactory("kamon-scheduler"))
  private val _metrics = new MetricRegistry(_config, _scheduler)
  private val _reporters = new ReporterRegistryImpl(_metrics, _config)
  private val _tracer = new Tracer(Kamon, _reporters, _config)
  private var _onReconfigureHooks = Seq.empty[OnReconfigureHook]

  def environment: Environment =
    _environment

  def config(): Config =
    _config

  def reconfigure(config: Config): Unit = synchronized {
    _config = config
    _environment = Environment.fromConfig(config)
    _filters = Filters.fromConfig(config)
    _metrics.reconfigure(config)
    _reporters.reconfigure(config)

    _onReconfigureHooks.foreach(hook => {
      Try(hook.onReconfigure(config)).failed.foreach(error =>
        logger.error("Exception occurred while trying to run a OnReconfigureHook", error)
      )
    })

    _scheduler match {
      case stpe: ScheduledThreadPoolExecutor => stpe.setCorePoolSize(schedulerPoolSize(config))
      case other => logger.error("Unexpected scheduler [{}] found when reconfiguring Kamon.", other)
    }
  }


  override def histogram(name: String, unit: MeasurementUnit, dynamicRange: Option[DynamicRange]): HistogramMetric =
    _metrics.histogram(name, unit, dynamicRange)

  override def counter(name: String, unit: MeasurementUnit): CounterMetric =
    _metrics.counter(name, unit)

  override def gauge(name: String, unit: MeasurementUnit): GaugeMetric =
    _metrics.gauge(name, unit)

  override def minMaxCounter(name: String, unit: MeasurementUnit, sampleInterval: Option[Duration],
      dynamicRange: Option[DynamicRange]): MinMaxCounterMetric =
    _metrics.minMaxCounter(name, unit, dynamicRange, sampleInterval)

  override def timer(name: String, dynamicRange: Option[DynamicRange]): TimerMetric =
    _metrics.timer(name, dynamicRange)


  def tracer: Tracer =
    _tracer

  override def buildSpan(operationName: String): io.opentracing.Tracer.SpanBuilder =
    _tracer.buildSpan(operationName)

  override def extract[C](format: Format[C], carrier: C): SpanContext =
    _tracer.extract(format, carrier)

  override def inject[C](spanContext: SpanContext, format: Format[C], carrier: C): Unit =
    _tracer.inject(spanContext, format, carrier)

  override def activeSpan(): ActiveSpan =
    _tracer.activeSpan()

  override def makeActive(span: Span): ActiveSpan =
    _tracer.makeActive(span)


  /**
    * Makes the provided Span active before code is evaluated and deactivates it afterwards.
    */
  def withSpan[T](span: Span)(code: => T): T = {
    val activeSpan = makeActive(span)
    val evaluatedCode = code
    activeSpan.deactivate()
    evaluatedCode
  }

  /**
    * Actives the provided Continuation before code is evaluated and deactivates it afterwards.
    */
  def withContinuation[T](continuation: Continuation)(code: => T): T = {
    if(continuation == null)
      code
    else {
      val activeSpan = continuation.activate()
      val evaluatedCode = code
      activeSpan.deactivate()
      evaluatedCode
    }
  }

  /**
    * Captures a continuation from the currently active Span (if any).
    */
  def activeSpanContinuation(): Continuation = {
    val activeSpan = Kamon.activeSpan()
    if(activeSpan == null)
      null
    else
      activeSpan.capture()
  }

  /**
    * Runs the provided closure with the currently active Span (if any).
    */
  def onActiveSpan[T](code: ActiveSpan => T): Unit = {
    val activeSpan = Kamon.activeSpan()
    if(activeSpan != null)
      code(activeSpan)
  }

  /**
    * Evaluates the provided closure with the currently active Span (if any) and returns the evaluation result. If there
    * was no active Span then the provided fallback value
    */
  def fromActiveSpan[T](code: ActiveSpan => T): Option[T] =
    Option(activeSpan()).map(code)


  override def loadReportersFromConfig(): Unit =
    _reporters.loadReportersFromConfig()

  override def addReporter(reporter: MetricReporter): Registration =
    _reporters.addReporter(reporter)

  override def addReporter(reporter: MetricReporter, name: String): Registration =
    _reporters.addReporter(reporter, name)

  override def addReporter(reporter: SpanReporter): Registration =
    _reporters.addReporter(reporter)

  override def addReporter(reporter: SpanReporter, name: String): Registration =
    _reporters.addReporter(reporter, name)

  override def stopAllReporters(): Future[Unit] =
    _reporters.stopAllReporters()

  def filter(filterName: String, pattern: String): Boolean =
    _filters.accept(filterName, pattern)

  /**
    * Register a reconfigure hook that will be run when the a call to Kamon.reconfigure(config) is performed. All
    * registered hooks will run sequentially in the same Thread that calls Kamon.reconfigure(config).
    */
  def onReconfigure(hook: OnReconfigureHook): Unit = synchronized {
    _onReconfigureHooks = hook +: _onReconfigureHooks
  }

  def scheduler(): ScheduledExecutorService =
    _scheduler

  private def schedulerPoolSize(config: Config): Int =
    config.getInt("kamon.scheduler-pool-size")

}

trait OnReconfigureHook {
  def onReconfigure(newConfig: Config): Unit
}