Skip to content

v0.1.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 05 Jun 21:55
· 3 commits to main since this release
c271318

πŸš€ Logdash Java SDK

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

<dependency>
    <groupId>io.logdash</groupId>
    <artifactId>logdash</artifactId>
    <version>0.1.0</version>
</dependency>

Gradle

implementation 'io.logdash:logdash:0.1.0'

Direct JAR Download:
Download from GitHub Releases

🏁 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

New Contributors

Full Changelog: https://github.com/logdash-io/java-sdk/commits/v0.1.0