aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-06-09 10:29:37 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-06-09 13:57:21 +0200
commit9d07669dae3ea1bc74b1d21e65618581292a6079 (patch)
treeaf57393b18a46abd652c8781274cab8d6ed01e6e /kamon-core/src/main/resources/reference.conf
parent1b73eb5a8b7f112b2019380392feccdef824aaf3 (diff)
downloadKamon-9d07669dae3ea1bc74b1d21e65618581292a6079.tar.gz
Kamon-9d07669dae3ea1bc74b1d21e65618581292a6079.tar.bz2
Kamon-9d07669dae3ea1bc74b1d21e65618581292a6079.zip
replace auto settings for environment with actual values
Diffstat (limited to 'kamon-core/src/main/resources/reference.conf')
-rw-r--r--kamon-core/src/main/resources/reference.conf9
1 files changed, 8 insertions, 1 deletions
diff --git a/kamon-core/src/main/resources/reference.conf b/kamon-core/src/main/resources/reference.conf
index d3c8ebd1..80da12a5 100644
--- a/kamon-core/src/main/resources/reference.conf
+++ b/kamon-core/src/main/resources/reference.conf
@@ -1,8 +1,15 @@
kamon {
+
environment {
+ # Identifier for this service.
+ service = "kamon-application"
+
+ # Identifier for the host where this service is running. If set to `auto` Kamon will resolve the hostname using
+ # the resolved name for localhost.
host = "auto"
+
+ # Identifier for a particular instance of this service. If set to `auto` Kamon will use the pattern service@host.
instance = "auto"
- application = "kamon-application"
}
# FQCN of the reporter instances that should be loaded when calling `Kamon.reporters.loadFromConfig()`.