Skip to content
Snippets Groups Projects
Commit cfdbcd6a authored by Vibhuti Sharma [Microsoft]'s avatar Vibhuti Sharma [Microsoft]
Browse files

Merge branch 'smanjunath/patch' into 'master'

Smanjunath/patch

See merge request !285
parents 343cf808 90762256
No related branches found
No related tags found
2 merge requests!346Merge branch 'aws-integration' into 'master',!285Smanjunath/patch
Pipeline #100720 failed
......@@ -117,6 +117,7 @@ The following software have components provided under the terms of this license:
- Plexus Velocity Component (from https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-velocity)
- PostgreSQL JDBC Driver
- PowerMock (from http://www.powermock.org, https://repo1.maven.org/maven2/org/powermock/powermock-api-mockito)
- Prometheus Java Simpleclient (from https://repo1.maven.org/maven2/io/prometheus/simpleclient)
- Protocol Buffer extensions to the Google HTTP Client Library for Java. (from https://repo1.maven.org/maven2/com/google/http-client/google-http-client-protobuf)
- RabbitMQ Java Client (from http://www.rabbitmq.com, https://www.rabbitmq.com)
- RxJava (from https://github.com/ReactiveX/RxJava)
......@@ -465,6 +466,7 @@ The following software have components provided under the terms of this license:
- LatencyUtils (from http://latencyutils.github.io/LatencyUtils/)
- PostgreSQL JDBC Driver
- Project Lombok (from http://projectlombok.org, https://projectlombok.org)
- Prometheus Java Simpleclient (from https://repo1.maven.org/maven2/io/prometheus/simpleclient)
- RabbitMQ Java Client (from http://www.rabbitmq.com, https://www.rabbitmq.com)
- reactive-streams (from http://www.reactive-streams.org/)
- xml-apis
......
......@@ -227,6 +227,14 @@
<version>1.7.0</version>
</dependency>
<!-- Prometheus Dependency -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
......
......@@ -93,6 +93,9 @@ management.server.port=8081
management.health.azure-key-vault.enabled=false
management.health.elasticsearch.enabled=false
management.endpoints.web.exposure.include=${web_exposure_endpoints:health,info}
management.metrics.enable.all=${enable_metrics:false}
#Redis
redis.database=${REDIS_DATABASE}
\ No newline at end of file
redis.database=${REDIS_DATABASE}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment