diff options
author | Liam Fallon <liam.fallon@est.tech> | 2021-11-15 14:23:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-11-15 14:23:30 +0000 |
commit | ce021b10a575c9ec67025ebcfa7a6b2537bb69da (patch) | |
tree | 38deffb4b187496932f65fedf6a19467aa778ec7 /participant/participant-impl/participant-impl-policy/src/main/resources | |
parent | c1b29b86a2c6804de6c7c302cdd103143c1fc617 (diff) | |
parent | 3d8fc9a77081886599cc93acd26105b433770b43 (diff) |
Merge "Add health check, metrics and prometheus endpoints for CL participants"
Diffstat (limited to 'participant/participant-impl/participant-impl-policy/src/main/resources')
-rw-r--r-- | participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml b/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml index 62f8920a4..5839aae66 100644 --- a/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml +++ b/participant/participant-impl/participant-impl-policy/src/main/resources/config/application.yaml @@ -1,5 +1,8 @@ -server: - port: 8082 +spring: + security: + user: + name: participantUser + password: zb!XztG34 participant: pdpGroup: defaultGroup @@ -43,3 +46,12 @@ participant: servers: - ${topicServer:localhost} topicCommInfrastructure: dmaap +management: + endpoints: + web: + exposure: + include: health, metrics, prometheus +server: + port: 8085 + servlet: + context-path: /onap/policyparticipant |