Java SDK
Status: Coming Soon — the Java SDK is not yet implemented.
The Java SDK will provide Spring Boot auto-configuration and servlet filter instrumentation for Java applications.
Planned Features
- Spring Boot auto-configuration (zero-config setup)
- Servlet filter for automatic HTTP request tracing
@Tracedannotation for method-level spans- Structured logging integration
- Same buffering and flush behavior as other SDKs
Planned Usage
// application.properties
upblit.api-key=${UPBLIT_API_KEY}
// That's it — auto-configuration handles the rest// Manual span
@Service
public class UserService {
@Traced("getUserById")
public User getUser(String id) {
return userRepository.findById(id).orElseThrow();
}
}Track Progress
Follow the Java SDK development in Upblit/sdk/java-sdk/.
Last updated on