aboutsummaryrefslogtreecommitdiff
path: root/kamon-annotation/src/main/scala/kamon/annotation/instrumentation/BaseAnnotationInstrumentation.scala
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-annotation/src/main/scala/kamon/annotation/instrumentation/BaseAnnotationInstrumentation.scala')
-rw-r--r--kamon-annotation/src/main/scala/kamon/annotation/instrumentation/BaseAnnotationInstrumentation.scala178
1 files changed, 178 insertions, 0 deletions
diff --git a/kamon-annotation/src/main/scala/kamon/annotation/instrumentation/BaseAnnotationInstrumentation.scala b/kamon-annotation/src/main/scala/kamon/annotation/instrumentation/BaseAnnotationInstrumentation.scala
new file mode 100644
index 00000000..57e8c4d7
--- /dev/null
+++ b/kamon-annotation/src/main/scala/kamon/annotation/instrumentation/BaseAnnotationInstrumentation.scala
@@ -0,0 +1,178 @@
+/*
+ * =========================================================================================
+ * Copyright © 2013-2015 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.annotation.instrumentation
+
+import java.util.concurrent.atomic.AtomicReferenceArray
+import javax.el.ELProcessor
+
+import kamon.Kamon
+import kamon.annotation.el.{ EnhancedELProcessor, ELProcessorFactory }
+import kamon.annotation.{ Histogram, _ }
+import kamon.metric.instrument.Histogram.DynamicRange
+import kamon.metric.instrument.{ Counter, MinMaxCounter }
+import kamon.metric._
+import kamon.trace.Tracer
+import kamon.util.Latency
+import org.aspectj.lang.{ JoinPoint, ProceedingJoinPoint }
+import org.aspectj.lang.annotation.{ Aspect, DeclareMixin }
+import org.aspectj.lang.reflect.MethodSignature
+import EnhancedELProcessor.Syntax
+
+class BaseAnnotationInstrumentation {
+
+ @inline final def registerTime(jps: JoinPoint.StaticPart, histograms: AtomicReferenceArray[instrument.Histogram], evalString: StringEvaluator, evalTags: TagsEvaluator): instrument.Histogram = {
+ val method = jps.getSignature.asInstanceOf[MethodSignature].getMethod
+ val time = method.getAnnotation(classOf[Time])
+ val name = evalString(time.name())
+ val tags = evalTags(time.tags())
+ val currentHistogram = Kamon.simpleMetrics.histogram(HistogramKey(name, tags))
+ histograms.set(jps.getId, currentHistogram)
+ currentHistogram
+ }
+
+ @inline final def registerHistogram(jps: JoinPoint.StaticPart, histograms: AtomicReferenceArray[instrument.Histogram], evalString: StringEvaluator, evalTags: TagsEvaluator): instrument.Histogram = {
+ val method = jps.getSignature.asInstanceOf[MethodSignature].getMethod
+ val histogram = method.getAnnotation(classOf[Histogram])
+ val name = evalString(histogram.name())
+ val tags = evalTags(histogram.tags())
+ val dynamicRange = DynamicRange(histogram.lowestDiscernibleValue(), histogram.highestTrackableValue(), histogram.precision())
+ val currentHistogram = Kamon.simpleMetrics.histogram(HistogramKey(name, tags), dynamicRange)
+ histograms.set(jps.getId, currentHistogram)
+ currentHistogram
+ }
+
+ @inline final def registerMinMaxCounter(jps: JoinPoint.StaticPart, minMaxCounters: AtomicReferenceArray[MinMaxCounter], evalString: StringEvaluator, evalTags: TagsEvaluator): instrument.MinMaxCounter = {
+ val method = jps.getSignature.asInstanceOf[MethodSignature].getMethod
+ val minMaxCount = method.getAnnotation(classOf[MinMaxCount])
+ val name = evalString(minMaxCount.name())
+ val tags = evalTags(minMaxCount.tags())
+ val minMaxCounter = Kamon.simpleMetrics.minMaxCounter(MinMaxCounterKey(name, tags))
+ minMaxCounters.set(jps.getId, minMaxCounter)
+ minMaxCounter
+ }
+
+ @inline final def registerCounter(jps: JoinPoint.StaticPart, counters: AtomicReferenceArray[Counter], evalString: StringEvaluator, evalTags: TagsEvaluator): instrument.Counter = {
+ val method = jps.getSignature.asInstanceOf[MethodSignature].getMethod
+ val count = method.getAnnotation(classOf[Count])
+ val name = evalString(count.name())
+ val tags = evalTags(count.tags())
+ val counter = Kamon.simpleMetrics.counter(CounterKey(name, tags))
+ counters.set(jps.getId, counter)
+ counter
+ }
+
+ @inline final def registerTrace(jps: JoinPoint.StaticPart, traces: AtomicReferenceArray[TraceContextInfo], evalString: StringEvaluator, evalTags: TagsEvaluator): TraceContextInfo = {
+ val method = jps.getSignature.asInstanceOf[MethodSignature].getMethod
+ val trace = method.getAnnotation(classOf[Trace])
+ val name = evalString(trace.value())
+ val tags = evalTags(trace.tags())
+ val traceContextInfo = TraceContextInfo(name, tags)
+ traces.set(jps.getId, traceContextInfo)
+ traceContextInfo
+ }
+
+ @inline final def registerSegment(jps: JoinPoint.StaticPart, segments: AtomicReferenceArray[SegmentInfo], evalString: StringEvaluator, evalTags: TagsEvaluator): SegmentInfo = {
+ val method = jps.getSignature.asInstanceOf[MethodSignature].getMethod
+ val segment = method.getAnnotation(classOf[Segment])
+ val name = evalString(segment.name())
+ val category = evalString(segment.category())
+ val library = evalString(segment.library())
+ val tags = evalTags(segment.tags())
+ val segmentInfo = SegmentInfo(name, category, library, tags)
+ segments.set(jps.getId, segmentInfo)
+ segmentInfo
+ }
+
+ @inline final def processTrace(traceInfo: TraceContextInfo, pjp: ProceedingJoinPoint): AnyRef = {
+ Tracer.withContext(Kamon.tracer.newContext(traceInfo.name)) {
+ traceInfo.tags.foreach { case (key, value) ⇒ Tracer.currentContext.addMetadata(key, value) }
+ val result = pjp.proceed()
+ Tracer.currentContext.finish()
+ result
+ }
+ }
+
+ @inline final def processSegment(segmentInfo: SegmentInfo, pjp: ProceedingJoinPoint): AnyRef = {
+ Tracer.currentContext.collect { ctx ⇒
+ val currentSegment = ctx.startSegment(segmentInfo.name, segmentInfo.category, segmentInfo.library)
+ segmentInfo.tags.foreach { case (key, value) ⇒ currentSegment.addMetadata(key, value) }
+ val result = pjp.proceed()
+ currentSegment.finish()
+ result
+ } getOrElse pjp.proceed()
+ }
+
+ @inline final def processTime(histogram: instrument.Histogram, pjp: ProceedingJoinPoint): AnyRef = {
+ Latency.measure(histogram)(pjp.proceed)
+ }
+
+ @inline final def processHistogram(histogram: instrument.Histogram, result: AnyRef, jps: JoinPoint.StaticPart): Unit = {
+ histogram.record(result.asInstanceOf[Number].longValue())
+ }
+
+ final def processCount(counter: instrument.Counter, pjp: ProceedingJoinPoint): AnyRef = {
+ try pjp.proceed() finally counter.increment()
+ }
+
+ final def processMinMax(minMaxCounter: instrument.MinMaxCounter, pjp: ProceedingJoinPoint): AnyRef = {
+ minMaxCounter.increment()
+ try pjp.proceed() finally minMaxCounter.decrement()
+ }
+
+ private[annotation] def declaringType(signature: org.aspectj.lang.Signature) = signature.getDeclaringType
+}
+
+@Aspect
+class ClassToAnnotationInstrumentsMixin {
+ @DeclareMixin("(@kamon.annotation.EnableKamon *)")
+ def mixinClassToAnnotationInstruments: AnnotationInstruments = new AnnotationInstruments {}
+}
+
+trait AnnotationInstruments {
+ var traces: AtomicReferenceArray[TraceContextInfo] = _
+ var segments: AtomicReferenceArray[SegmentInfo] = _
+ var histograms: AtomicReferenceArray[instrument.Histogram] = _
+ var counters: AtomicReferenceArray[Counter] = _
+ var minMaxCounters: AtomicReferenceArray[MinMaxCounter] = _
+}
+
+case class SegmentInfo(name: String, category: String, library: String, tags: Map[String, String])
+case class TraceContextInfo(name: String, tags: Map[String, String])
+
+abstract class StringEvaluator(val processor: ELProcessor) extends (String ⇒ String)
+
+object StringEvaluator {
+ def apply(obj: AnyRef) = new StringEvaluator(ELProcessorFactory.withObject(obj)) {
+ def apply(str: String) = processor.evalToString(str)
+ }
+
+ def apply(clazz: Class[_]) = new StringEvaluator(ELProcessorFactory.withClass(clazz)) {
+ def apply(str: String) = processor.evalToString(str)
+ }
+}
+
+abstract class TagsEvaluator(val processor: ELProcessor) extends (String ⇒ Map[String, String])
+
+object TagsEvaluator {
+ def apply(obj: AnyRef) = new TagsEvaluator(ELProcessorFactory.withObject(obj)) {
+ def apply(str: String) = processor.evalToMap(str)
+ }
+
+ def apply(clazz: Class[_]) = new TagsEvaluator(ELProcessorFactory.withClass(clazz)) {
+ def apply(str: String) = processor.evalToMap(str)
+ }
+} \ No newline at end of file