aboutsummaryrefslogtreecommitdiff
path: root/kamon-status-page/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2019-03-18 13:44:50 +0100
committerGitHub <noreply@github.com>2019-03-18 13:44:50 +0100
commit8efb3b408a876a3dfdac79580773279125cb4135 (patch)
tree96fd746fc13f4ffb914d8e59c4ea074513877556 /kamon-status-page/src/main/resources/reference.conf
parente311df4b3a272f4f160857f718a96ec316a2fc06 (diff)
parentec83a72879378bc9eedea24f828e4d30fed95e92 (diff)
downloadKamon-8efb3b408a876a3dfdac79580773279125cb4135.tar.gz
Kamon-8efb3b408a876a3dfdac79580773279125cb4135.tar.bz2
Kamon-8efb3b408a876a3dfdac79580773279125cb4135.zip
Merge pull request #569 from ivantopo/status-page
Status page
Diffstat (limited to 'kamon-status-page/src/main/resources/reference.conf')
-rw-r--r--kamon-status-page/src/main/resources/reference.conf27
1 files changed, 27 insertions, 0 deletions
diff --git a/kamon-status-page/src/main/resources/reference.conf b/kamon-status-page/src/main/resources/reference.conf
new file mode 100644
index 00000000..f5be516c
--- /dev/null
+++ b/kamon-status-page/src/main/resources/reference.conf
@@ -0,0 +1,27 @@
+kamon {
+ status-page {
+
+ # When enabled Kamon will start an embedded web server to publish the status page mini-site, which contains basic
+ # system information that can be used for debugging and troubleshooting issues with Kamon.
+ enabled = true
+
+ # Controls the hostname and port on which the status page embedded server will be listening.
+ listen {
+ hostname = "0.0.0.0"
+ port = 5266
+ }
+ }
+
+ #
+ # This section registers the status page module to be picked up by Kamon core when it is on the classpath.
+ #
+ modules {
+
+ "Status Page" {
+ enabled = yes
+ kind = plain
+ class = "kamon.status.page.StatusPage"
+ description = "Exposes an embedded web server with a single page app displaying Kamon status information."
+ }
+ }
+} \ No newline at end of file