π Logdash Java SDK 0.2.0
Official Java SDK for Logdash.io β Zero-configuration observability for developers.
β¨ Features
- Zero Configuration: Start logging and tracking metrics in seconds
- Real-time Dashboard: Cloud-hosted interface with live data updates
- Structured Logging: Multiple log levels with rich context support
- Custom Metrics: Track counters, gauges, and business metrics
- Async & Fast: Non-blocking, production-ready, framework-agnostic
- Java 17+ Compatible: Works with Java 17, 21, 22+
π¦ Installation
Maven Central
<dependency>
<groupId>io.logdash</groupId>
<artifactId>logdash</artifactId>
<version>0.2.0</version>
</dependency>Gradle
implementation 'io.logdash:logdash:0.2.0'π Quick Start
var logdash = Logdash.builder()
.apiKey("your-api-key")
.build();
logdash.logger().info("Application started");
logdash.metrics().mutate("app_starts", 1);βοΈ Requirements
- Java 17 or higher
- Internet connection
- Logdash API key (get yours)
π Documentation & Support
See below for full release notes and change log.
What's Changed
- ci(snapshot): add snapshot workflow by @slawomir-andreasik in #9
- feat(example): add Spring Boot example by @slawomir-andreasik in #8
- docs: update readme by @slawomir-andreasik in #10
- docs: update readme by @slawomir-andreasik in #11
- docs: update readme by @slawomir-andreasik in #12
- Release/0.2.0 by @slawomir-andreasik in #13
Full Changelog: v0.1.3...v0.2.0