forked from Bhinneka/microservice-graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.conf
35 lines (31 loc) · 1.18 KB
/
application.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This is the main configuration file for the application.
# ~~~~~
# Secret key
# ~~~~~
# The secret key is used to secure cryptographics functions.
#
# This must be changed for production, but we recommend not changing it in this file.
#
# See http://www.playframework.com/documentation/latest/ApplicationSecret for more details.
play.crypto.secret = "changeme"
# The application languages
# ~~~~~
play.i18n.langs = [ "en" ]
akka {
loglevel = debug
}
# default values - these can be overwritten in dev.conf, staging.conf and production.conf
microservice-graph-explorer {
traverse {
applications = [
# The URLs to monitor by default
# format: "protocol(http|https),Application URL to check,Friendly Name for homepage"
# The default config below points at our test service graph that you can run locally. See http://github.com/hootsuite/microservice-graph-explorer-test
"http,localhost:8080,Test Service Graph"
]
}
status-poller {
poll-interval = 60 seconds # The interval between polling in the Status Polling Actor.
remove-router-delay = 1 hour # How long the Status Polling Actor will poll a non default application for before unsubscribing it.
}
}