aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-05-25 16:52:52 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-05-25 16:52:52 +0200
commita3d78ef61a277b0b62dc93daf84756dfa7625d3d (patch)
tree4fee7ce93ecfb4e32c7aaaa22efb75ed07c667f6 /kamon-core/src/main/resources/reference.conf
parent22379d3f318b2cd3a4c995ff1c45bda33d935a46 (diff)
downloadKamon-a3d78ef61a277b0b62dc93daf84756dfa7625d3d.tar.gz
Kamon-a3d78ef61a277b0b62dc93daf84756dfa7625d3d.tar.bz2
Kamon-a3d78ef61a277b0b62dc93daf84756dfa7625d3d.zip
trying to flatten out the structure and eliminate the notion of entitites
Diffstat (limited to 'kamon-core/src/main/resources/reference.conf')
-rw-r--r--kamon-core/src/main/resources/reference.conf28
1 files changed, 15 insertions, 13 deletions
diff --git a/kamon-core/src/main/resources/reference.conf b/kamon-core/src/main/resources/reference.conf
index b514b1b7..f4d180ca 100644
--- a/kamon-core/src/main/resources/reference.conf
+++ b/kamon-core/src/main/resources/reference.conf
@@ -1,4 +1,10 @@
kamon {
+ environment {
+ application = ""
+ host = ""
+ instance = ""
+ }
+
metric {
tick-interval = 60 seconds
@@ -11,7 +17,7 @@ kamon {
# NOTE: Using entity filters is a commodity for modules that might potentially track thousands of unnecessary
# entities, but not all modules are required to use filters, check the your module's documentation to
# determine whether setting up filters make sense or not.
- accept-unmatched-categories = true
+ accept-unmatched = true
}
@@ -35,38 +41,34 @@ kamon {
#
default-settings {
histogram {
- lowest-discernible-value = 0
+ lowest-discernible-value = 1
highest-trackable-value = 3600000000000
significant-value-digits = 2
}
min-max-counter {
- lowest-discernible-value = 0
+ lowest-discernible-value = 1
highest-trackable-value = 3600000000000
significant-value-digits = 2
sample-interval = 200 millis
}
}
- # Custom settings for instruments of a given category. The settings provided in this section override the default
- # and manually provided settings when creating instruments. All settings are optional in this section and default
+ # Custom settings for instruments of a given metric. The settings provided in this section override the default
+ # and manually provided settings when creating metrics. All settings are optional in this section and default
# values from the `kamon.metric.instrument-factory.default-settings` will be used in case of any setting being
# missing.
#
# Example:
- # If you wish to change the highest trackable value setting of the `elapsed-time` instrument in the `span`
- # category, you should include the following configuration in your application.conf file:
+ # If you wish to change the highest trackable value setting of the `span.elapsed-time` metric, you should include
+ # the following configuration in your application.conf file:
#
- # kamon.metric.instrument-factory.custom-settings.span {
- # elapsed-time {
+ # kamon.metric.instrument-factory.custom-settings {
+ # "span.elapsed-time" {
# highest-trackable-value = 5000
# }
# }
#
- # After including that configuration, every time a new histogram called `elapsed-time` for a entity with category
- # `span`, the highest-trackable-value will be 5000, but lowest-discernible-value and significant-value-digits will
- # remain with default values.
- #
custom-settings {
}