aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/instrumentation
Commit message (Collapse)AuthorAgeFilesLines
* ! all: include license headersDiego2015-01-291-0/+16
|
* ! all: improve the metric recorders infrastructureIvan Topolnjak2015-01-243-130/+0
|
* ! core,akka: separate all akka instrumentation into it's own kamon-akka ↵Ivan Topolnjak2014-12-285-557/+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: avoid error when TraceContext is emptyDiego2014-12-211-15/+16
|
* = core: avoid unnecesary allocation when askPatternTimeoutWarning is offDiego2014-12-171-11/+12
|
* + core: A more lightweight way for tracing the Akka.ask timeouts and closes #113Diego2014-12-171-16/+38
|
* + core: introduce an alternative way for tracing the Akka.ask timeoutsDiego2014-12-131-22/+31
|
* + core: refactor MDC facilities and closes #100Diego2014-11-191-2/+5
|
* = core: kamon akka instrumentation name spaceAndrei Pozolotin2014-11-125-6/+6
| | | | suppress javac warnings move javac settings
* + spray: external naming for traces and segments, related to #65Ivan Topolnjak2014-10-311-4/+4
|
* + akka-remote: create a new kamon-akka-remote module, closes #99Ivan Topolnjak2014-10-241-91/+0
|
* = core: minor cleanup of the remoting instrumentationIvan Topolnjak2014-10-231-7/+7
|
* = core: exclude CallerThreadDispatcher from instrumentation, change ↵Diego2014-10-211-1/+1
| | | | Dispatcher to MessageDispatcher in DispatcherInstrumentation and fixes #95
* = play:Diego2014-09-091-1/+1
| | | | | | | | * 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: initial support for akka remoting/cluster, related to #61Ivan Topolnjak2014-08-311-0/+91
|
* = core: fix errors in last commitDiego2014-08-291-143/+0
|
* + core: provide metrics for routersDiego2014-08-292-7/+198
| | | | | | | * processing-time * errors * time-in-mailbox closes #62
* + core: add support for trace context propagation on Scalaz futuresMichael Donaghy2014-08-211-0/+47
|
* ! core: use the inline variant of TraceRecorder.withTraceContext via macrosDiego2014-08-063-4/+4
|
* = core: cleanup actor metrics recorder after the actor is stopped, closes #69Ivan Topolnjak2014-08-021-2/+0
|
* = build: avoid unnecessary compile dependency on kamon-testkit from kamon-sprayIvan Topolnjak2014-07-091-1/+1
|
* + core: log a configurable error message when the application was started ↵Ivan Topolnjak2014-07-091-0/+17
| | | | with the AspectJ Weaver, closes #48
* Merge branch 'wip/metrics-collection-refactor'Ivan Topolnjak2014-07-037-22/+486
|\ | | | | | | | | Conflicts: kamon-datadog/src/test/scala/kamon/datadog/DatadogMetricSenderSpec.scala
| * ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-037-22/+486
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR is including several changes to the kamon-core, most notably: - Formalize the interface for Histograms, Counters and MinMaxCounters. Making sure that the interfaces are as clean as possible. - Move away from the all Vector[Measurement] based Histogram snapshot to a new approach in which we use a single long to store both the index in the counts array and the frequency on that bucket. The leftmost 2 bytes of each long are used for storing the counts array index and the remaining 6 bytes are used for the actual count, and everything is put into a simple long array. This way only the buckets that actually have values will be included in the snapshot with the smallest possible memory footprint. - Introduce Gauges. - Reorganize the instrumentation for Akka and Scala and rewrite most of the tests of this components to avoid going through the subscription protocol to test. - Introduce trace tests and fixes on various tests. - Necessary changes on new relic, datadog and statsd modules to compile with the new codebase. Pending: - Finish the upgrade of the new relic to the current model. - Introduce proper limit checks for histograms to ensure that we never pass the 2/6 bytes limits. - More testing, more testing, more testing. - Create the KamonStandalone module.
* | = core: Inline variant of withTraceContext using macros.Carlos Ferreyra2014-07-031-2/+2
|/
* remove legacy unused aspects for mailbox and dispatcher monitoringIvan Topolnjak2014-03-272-239/+0
|
* ensure that kamon.trace.ask-pattern-tracing setting is honored, closes #4Ivan Topolnjak2014-03-241-12/+22
|
* remake of trace context and allow different tracing levelsIvan Topolnjak2014-01-312-4/+4
|
* wipIvan Topolnak2014-01-302-12/+12
|
* integrate trace and metrics into the base projectIvan Topolnak2014-01-134-25/+71
|
* added scalariformDiego Parra2013-11-262-123/+14
|
* added copyright headersDiego Parra2013-11-263-0/+45
|
* basic separation of concerns between sub-projectsIvan Topolnak2013-11-054-127/+3
|
* wipIvan Topolnak2013-11-041-59/+0
|
* move things all over the placeIvan Topolnjak2013-10-305-119/+8
|
* Update to spray 1.2RC1Ivan Topolnak2013-10-231-1/+1
|
* complete spray client instrumentation with experimental branchIvan Topolnak2013-10-101-18/+64
|
* remove perthis aspect instantiationDiego Parra2013-10-082-2/+1
|
* Simplify logging instrumentation and integrate it with kamon-core, kamon-ouw ↵Ivan Topolnak2013-10-042-2/+34
| | | | is gone.
* Explicit return type addedIvan Topolnak2013-10-031-1/+1
|
* cleanup cleanup cleanupDiego Parra2013-10-031-49/+0
|
* Switched to DynamicVariables, solve context passing issue produced by ↵Ivan Topolnak2013-10-023-71/+14
| | | | runnable batching
* wipIvan Topolnak2013-10-022-24/+38
|
* wipIvan Topolnjak2013-10-022-7/+19
|
* Envelope Instrumentation and some cleanupDiego Parra2013-10-012-101/+36
|
* wipIvan Topolnak2013-09-303-10/+24
|
* wipIvan Topolnak2013-09-252-9/+28
|
* wipIvan Topolnak2013-09-212-6/+55
|
* basic newrelic reportingIvan Topolnak2013-09-182-4/+39
|
* Simple instrumentation just for keeping the uow.Ivan Topolnak2013-09-102-42/+58
|