From 7a10c0ef2a6566229e8571f6d385ca2ff794cc20 Mon Sep 17 00:00:00 2001 From: Ivan Topolnak Date: Thu, 2 Jan 2014 18:09:53 -0300 Subject: integrate trace and metrics into the base project --- kamon-core/src/main/resources/META-INF/aop.xml | 21 ++++++++++++++---- kamon-core/src/main/resources/reference.conf | 30 ++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 4 deletions(-) create mode 100644 kamon-core/src/main/resources/reference.conf (limited to 'kamon-core/src/main/resources') diff --git a/kamon-core/src/main/resources/META-INF/aop.xml b/kamon-core/src/main/resources/META-INF/aop.xml index f6951705..1448f22f 100644 --- a/kamon-core/src/main/resources/META-INF/aop.xml +++ b/kamon-core/src/main/resources/META-INF/aop.xml @@ -2,17 +2,30 @@ - + + - + + + + + + + + + + + + + + - - + \ No newline at end of file diff --git a/kamon-core/src/main/resources/reference.conf b/kamon-core/src/main/resources/reference.conf new file mode 100644 index 00000000..11e7cbb4 --- /dev/null +++ b/kamon-core/src/main/resources/reference.conf @@ -0,0 +1,30 @@ +kamon { + metrics { + tick-interval = 1 second + + actors { + tracked = [] + + excluded = [ "system/*", "user/IO-*" ] + + hdr-settings { + processing-time { + highest-trackable-value = 3600000000000 + significant-value-digits = 2 + } + time-in-mailbox { + highest-trackable-value = 3600000000000 + significant-value-digits = 2 + } + mailbox-size { + highest-trackable-value = 999999999 + significant-value-digits = 2 + } + } + } + } + + trace { + ask-pattern-tracing = off + } +} \ No newline at end of file -- cgit v1.2.3