aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/metric
Commit message (Collapse)AuthorAgeFilesLines
* separate the build into core, testkit and core-tests projectsIvan Topolnjak2017-08-1510-757/+0
|
* move ALMaxUpdater and MeasurementUnit to kamon.metricIvan Topolnjak2017-08-153-3/+1
|
* add timer utility metric, based on histogramsIvan Topolnjak2017-06-271-0/+72
|
* add lowest discernible value testIvan Topolnjak2017-06-271-0/+25
|
* handle filters with quoted namesIvan Topolnjak2017-06-161-62/+65
|
* move filters to util package, expose them from KamonIvan Topolnjak2017-06-142-3/+5
|
* add HistogramSpec, move counter and mmcounter specsIvan Topolnjak2017-06-113-4/+71
|
* use java.util.DurationIvan Topolnjak2017-06-112-14/+26
|
* separate metrics from instruments and add default instrument for metricsIvan Topolnjak2017-06-111-0/+62
|
* improve MinMaxCounterSpecDiego2017-06-081-0/+2
|
* * Introduce Java 8 Unsafe intrinsics in LogAdder (lock addq and lock xchg)Diego2017-06-084-144/+240
| | | | | * Introduce atomic variant of LongAdder::sumThenReset -> LongAdder::sumAndReset * Remove LongMaxUpdater in favor to AtomicLongMaxUpdater
* include copyright headersDiego2017-06-083-2/+17
|
* trying to flatten out the structure and eliminate the notion of entititesIvan Topolnjak2017-05-253-162/+162
|
* wip, trying to get something that could be testedIvan Topolnjak2017-05-211-4/+4
|
* implement entity filtersIvan Topolnjak2017-05-205-17/+262
|
* implement HdrHistogram and Distribution snapshotsIvan Topolnjak2017-04-272-2/+48
|
* bring the new skeleton into placeIvan Topolnjak2017-04-241-0/+112
|
* Prepare for the major cleanupIvan Topolnjak2017-04-2410-1129/+0
| | | | | | Moved all the original files from src/main to src/legacy-main, same with test files. Also removed the autoweave module, examples and bench as I'm planning to have them in separate repositories.
* + MetricsModule: Add default metrics loaded from configJason Martens2017-04-131-7/+24
|
* wipDiego2016-12-048-40/+55
|
* + Kamon-core: introduce finishWithError(Throwable) for Traces and SegmentsDiego Parra2016-07-081-2/+33
| | | | * + kamon-core: introduce finishWithError(Throwable) for Traces and Segments
* core: catch any exception being thrown when recording values on histogramsIvan Topolnjak2016-04-011-4/+2
| | | | fixes #232, fixes #332
* = system-metrics: runSafe in UlimitMetrics and include a testDiego2016-03-033-8/+8
|
* + core: provide generic way to scale time and memory metricsEugene Platonov2015-12-014-1/+238
|
* wip, core/akka/spray are kind of migrated.Ivan Topolnjak2015-08-283-39/+0
|
* ! all: introduced support for metric tags.Ivan Topolnjak2015-03-094-80/+70
|
* ! core: move the TraceContext manipulation API to the Tracer companion object.Ivan Topolnjak2015-02-151-9/+9
|
* = core: rename UserMetrics to SimpleMetrics.Ivan Topolnjak2015-02-151-33/+33
|
* ! all: Kamon now works as a single instance in a companion object.Ivan Topolnjak2015-02-135-38/+43
|
* ! all: include license headersDiego2015-01-295-0/+80
|
* ! all: improve the metric recorders infrastructureIvan Topolnjak2015-01-248-479/+224
|
* ! core,akka: separate all akka instrumentation into it's own kamon-akka ↵Ivan Topolnjak2014-12-283-493/+0
| | | | | | | | | | | | | | | module, related to #136. All Akka-related instrumentation and code has been moved to the kamon-akka module, including the filters for actor, dispatcher and router metrics. Also the following changes are included: - Router Metrics are now working properly, related to #139. - Cleanup the log output for this module, related to #142. - Some minor cleanups in various tests. This PR breaks the reporting modules which will need to wait for #141 to be ready to come back to life.
* + core: introduce an alternative way for tracing the Akka.ask timeoutsDiego2014-12-131-1/+1
|
* = core: force the tick buffer spec to use the .millis value of MilliTimestamp.Ivan Topolnjak2014-12-051-4/+4
|
* = core,datadog,statsd: migrate from plain Long to MilliTimestamp.Ivan Topolnjak2014-12-051-6/+6
|
* = core: kamon akka instrumentation name spaceAndrei Pozolotin2014-11-121-1/+1
| | | | suppress javac warnings move javac settings
* + core,play,spray: allow segments to identify the library they belong to.Ivan Topolnjak2014-11-091-4/+4
|
* = core: ensure that ActorMetricsSpec uses the correct configuration.Ivan Topolnjak2014-11-091-3/+8
|
* ! core: replace Option[TraceContext] by empty object pattern and implement ↵Ivan Topolnjak2014-10-251-12/+9
| | | | basic segments with renaming.
* + core: provide sum and percentile functions in Histogram.Snapshot, closes #85Ivan Topolnjak2014-10-201-1/+6
|
* = core: use explicitly thrown exceptions for failure tests.Ivan Topolnjak2014-10-192-2/+2
|
* = play:Diego2014-09-091-2/+0
| | | | | | | | * remove from publishErrorMessage method * refactor onError method in RequestInstrumentation * refactor WSInstrumentation in order to propagate the TraceContext when a WS call is executed outside an Action * improve tests * closes #33
* + core: provide metrics for routersDiego2014-08-291-0/+163
| | | | | | | * processing-time * errors * time-in-mailbox closes #62
* = core: ensure that MinMaxCounters never record values bellow zero, fixes #71Ivan Topolnjak2014-08-131-3/+37
|
* = core: allow subscribing to user metrics and give decent namesIvan Topolnjak2014-08-041-98/+105
|
* = core: minor fix in actor metrics specIvan Topolnjak2014-08-041-4/+4
|
* = core: cleanup actor metrics recorder after the actor is stopped, closes #69Ivan Topolnjak2014-08-021-1/+15
|
* = core: subscription protocol specification, closes #51Ivan Topolnjak2014-07-282-1/+134
|
* + core: create the new KamonStandalone helper, closes #47Ivan Topolnjak2014-07-081-0/+23
|
* = core: ensure that no automatic metric flushes occur during certain testsIvan Topolnjak2014-07-045-0/+9
|