aboutsummaryrefslogtreecommitdiff
path: root/kamon-datadog/src/main/scala/kamon/datadog/Datadog.scala
Commit message (Collapse)AuthorAgeFilesLines
* = statd,datadog: minor formatting changes.Ivan Topolnjak2016-01-061-2/+2
|
* + datadog: allow time and memory metrics be scaled before sending to datadogEugene Platonov2015-12-011-2/+11
|
* = all: stop using config.getDuration in favor of config.getFiniteDuration.Ivan Topolnjak2015-02-151-5/+4
|
* ! all: Kamon now works as a single instance in a companion object.Ivan Topolnjak2015-02-131-1/+1
|
* + all: use ModuleSupervisor init all auto-start modules.Ivan Topolnjak2015-01-301-1/+1
| | | | | | | | | | | The new ModuleSupervisor implementation will make use of special configuration keys under the `kamon.modules` section to detect all the available modules in the classpath and do two things with that info: 1. Log the AspectJ Weaver missing error if any of the available modules requires AspectJ. 2. Start all available modules that are marked with the auto-start setting.
* ! all: improve the metric recorders infrastructureIvan Topolnjak2015-01-241-59/+7
|
* ! core,akka: separate all akka instrumentation into it's own kamon-akka ↵Ivan Topolnjak2014-12-281-0/+1
| | | | | | | | | | | | | | | 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.
* + datadog: includes Disk, NonHeap LoadAverage, Threads and ClassLoading metricsDiego2014-12-281-3/+15
|
* + datadog: report HttpServerMetrics to Datadog and closes #132Diego2014-12-171-0/+4
|
* + datadog: include ContextSwitchesMetricsDiego2014-11-071-1/+1
|
* + datadog: include router metricsDiego2014-08-291-0/+6
|
* = datadog,sysmetrics: minor formatting changesIvan Topolnjak2014-08-041-2/+1
|
* + datadog: subscribe and report user metricsIvan Topolnjak2014-08-041-0/+8
|
* kamon-system-metrics: add system metrics to datadog and statsd modulesDiego2014-07-271-4/+15
|
* ! core: introduce system + jvm metricsDiego2014-07-101-2/+0
|
* ! statsd,datadog: reformat metric names to get a better display of ↵Ivan Topolnjak2014-07-101-3/+3
| | | | | | | | | | | | | | | | automatically named traces, closes #35 After a bit of testing it seems like instead of generating more friendly names by default, we need to do changes that are specific to each module (StatsD and Datadog) in order to make it work properly. Here is a list of the introduced changes: - StatsD - Change dots (.) to underscores (_) on the host name string. - Change ': ' to single underscore and spaced to underscore. Userful for automatically generated http trace names. - Change '/' to underscore. Ideally the dashboard could replace '_' with '/' to display it like a path. - Datadog - Change ': ' to ':'. Userful for automatically generated http trace names.
* ! all: refactor the core metric recording instruments and accomodate UserMetricsIvan Topolnjak2014-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* + datadog: more tests and support for multiple metrics in the same packageDiego2014-06-051-1/+2
|
* + datadog: include dispatchers metricsDiego2014-05-211-0/+6
|
* + datadog: include identification tags and clean up all irrelevant code from ↵Ivan Topolnjak2014-05-211-10/+1
| | | | StatsD
* ! datadog: first commit of datadog integration moduleDiego2014-05-121-0/+84