Skip to content
Snippets Groups Projects
Commit 29f4aae5 authored by Sherman Yang's avatar Sherman Yang
Browse files

support azure request logs

parent c3136d33
No related branches found
No related tags found
1 merge request!31support azure request logs
Checking pipeline status
......@@ -32,6 +32,7 @@
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<osdu.corelibazure.version>0.0.42</osdu.corelibazure.version>
</properties>
<prerequisites>
......@@ -45,6 +46,11 @@
<artifactId>crs-catalog-core</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.opengroup.osdu</groupId>
<artifactId>core-lib-azure</artifactId>
<version>${osdu.corelibazure.version}</version>
</dependency>
<!-- Compile/runtime dependencies -->
<dependency>
......@@ -101,6 +107,12 @@
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-active-directory-spring-boot-starter</artifactId>
<version>${azure.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
......
......@@ -27,3 +27,10 @@ osdu.crs.catalog.filename=${CRS_CATALOG_FILENAME:/mnt/crs_catalogs/crs_catalog_v
# ENTITLEMENT_URL=${ENTITLEMENT_URL}
# CRS_CATALOG_FILENAME=C:\\osdu-delfi\\crs-catalog-service\\data\\crs_catalog_v2.json
# Azure App Insights configuration
azure.application-insights.instrumentation-key=${appinsights_key}
#logging configuration
logging.transaction.enabled=true
logging.slf4jlogger.enabled=true
logging.mdccontext.enabled=true
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