-
Technical Assistance
Request product support from SAP
-
Non-Technical Assistance
Request non-product support or provide feedback on SAP Support Portal site
Technical Assistance
Request product support from SAP
Non-Technical Assistance
Request non-product support or provide feedback on SAP Support Portal site
fesr-to-otel-java
A Spring Boot convenience library that provides an FESR beacon handler that will receive FESR and exports these via OpenTelemetry. Needs to be used in conjunction with an OpenTelemetry Java Agent, such as the SAP Cloud ALM Data Collector Instrumentation.
In your pom.xml include the dependency to this library:
<dependency>
<groupId>com.sap.xdsr</groupId>
<artifactId>fesr-to-otel-java</artifactId>
<version>1.3.0</version>
<scope>runtime</scope>
</dependency>
Enable the component scan to pick up the REST endpoint /fesr via annotation:
...
@ComponentScan(basePackages = { "com.sap.xdsr.fesr" })
....
This will expose a GET endpoint on /fesr in your Spring Boot project. It will be able to receive SAP UI5's FESR beacons, decode them and export them via OpenTelemetry as spans.