diff options
author | Steve Smokowski <ss835w@att.com> | 2019-01-12 13:15:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-12 13:15:45 +0000 |
commit | efb42bcc116535dad00c23a39fccdc5f9e5c321a (patch) | |
tree | ff774fc5adeb29ce08b271f4cd6ce87a934b3c80 /asdc-controller/src | |
parent | 7963ba28bc1fbd7fb27e3553eefda8ad8ce76f0c (diff) | |
parent | 3cccd48a71c73e497df90160450508e505e48d6c (diff) |
Merge "Re-enable Actuator for Springboot 2.0"
Diffstat (limited to 'asdc-controller/src')
-rw-r--r-- | asdc-controller/src/main/resources/application.yaml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/asdc-controller/src/main/resources/application.yaml b/asdc-controller/src/main/resources/application.yaml index 4eb3c482d9..e95e85a4f1 100644 --- a/asdc-controller/src/main/resources/application.yaml +++ b/asdc-controller/src/main/resources/application.yaml @@ -27,19 +27,18 @@ request: username: ${DB_USERNAME} password: ${DB_PASSWORD} driver-class-name: org.mariadb.jdbc.Driver - #Actuator management: endpoints: web: base-path: /manage - server: - servlet: - context-path: /manage + exposure: + include: "*" metrics: se-global-registry: false export: prometheus: enabled: true # Whether exporting of metrics to Prometheus is enabled. - step: 1m # Step size (i.e. reporting frequency) to use. + step: 1m # Step size (i.e. reporting frequency) to use. + |