aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala
diff options
context:
space:
mode:
authorDiego Parra <diegolparra@gmail.com>2016-07-08 11:10:09 -0300
committerGitHub <noreply@github.com>2016-07-08 11:10:09 -0300
commitef927dc672bea427d4de89b8d0ea0bd18bd71285 (patch)
treeb70c59924450fab5b5cb03e6255afef0af7604d5 /kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala
parentebc560f24154ddec862411b82a79033164bb2c31 (diff)
downloadKamon-ef927dc672bea427d4de89b8d0ea0bd18bd71285.tar.gz
Kamon-ef927dc672bea427d4de89b8d0ea0bd18bd71285.tar.bz2
Kamon-ef927dc672bea427d4de89b8d0ea0bd18bd71285.zip
+ Kamon-core: introduce finishWithError(Throwable) for Traces and Segments
* + kamon-core: introduce finishWithError(Throwable) for Traces and Segments
Diffstat (limited to 'kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala b/kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala
index eb4f327a..014825cd 100644
--- a/kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala
+++ b/kamon-core/src/main/scala/kamon/metric/TraceMetrics.scala
@@ -1,6 +1,6 @@
/*
* =========================================================================================
- * Copyright © 2013 the kamon project <http://kamon.io/>
+ * Copyright © 2013-2016 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
@@ -24,6 +24,7 @@ class TraceMetrics(instrumentFactory: InstrumentFactory) extends GenericEntityRe
* Records blah blah
*/
val elapsedTime = histogram("elapsed-time", unitOfMeasurement = Time.Nanoseconds)
+ val errors = counter("errors")
}
object TraceMetrics extends EntityRecorderFactory[TraceMetrics] {
@@ -40,6 +41,7 @@ class SegmentMetrics(instrumentFactory: InstrumentFactory) extends GenericEntity
* Records blah blah
*/
val elapsedTime = histogram("elapsed-time", unitOfMeasurement = Time.Nanoseconds)
+ val errors = counter("errors")
}
object SegmentMetrics extends EntityRecorderFactory[SegmentMetrics] {