Skip to content

Commit

Permalink
Fix #298: Add TraceID/SpanID to Monitoring for Enhanced Observability
Browse files Browse the repository at this point in the history
  • Loading branch information
jandusil committed Feb 6, 2024
1 parent 71ca75b commit ffa9615
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
19 changes: 19 additions & 0 deletions powerauth-data-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,25 @@
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${springdoc-openapi-starter-webmvc-ui.version}</version>
</dependency>

<!-- Monitoring -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core-micrometer</artifactId>
</dependency>

<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-tracing-bridge-otel</artifactId>
</dependency>

<!-- For run at Apple M1 architecture -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns-native-macos</artifactId>
<scope>runtime</scope>
<classifier>osx-aarch_64</classifier>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ [email protected]@
springdoc.swagger-ui.disable-swagger-default-url=true

logging.config=${POWERAUTH_DATA_ADAPTER_LOGGING:}

# Monitoring
management.tracing.sampling.probability=1.0

0 comments on commit ffa9615

Please sign in to comment.