Releases: logicmonitor/lm-telemetry-sdk-java
Releases · logicmonitor/lm-telemetry-sdk-java
Version 0.0.4-alpha
Jackson library version updated to 2.14.1 due to vulnerability.
Version 0.0.3-alpha
In this release we have updated OpenTelemetry SDK version to 1.14.0.
List of OpenTelemetry Component Dependencies
Component | Version |
---|---|
Trace API | v1.14.0 |
Trace SDK | v1.14.0 |
OpenTelemetry SDK Autoconfigure | v1.14.0-alpha |
OpenTelemetry AWS Utils | v1.14.0 |
OpenTelemetry Semantic Conventions | v1.14.0 |
OpenTelemetry Resource Providers | v1.14.0 |
Version 0.0.2-alpha
Features :
- Auto-Instrumentation
- AWS Lambda auto resource detection using Auto-instrumentation
- Azure VM auto resource detection using Auto-instrumentation
- GCP Compute Engine auto resource detection using Auto-instrumentation
Note: To Auto-instrument Lambda read the lm-javaagent-layer
Version 0.0.1-alpha
This is the first alpha release.
LM Telemetry Java agent is a customized version of the OpenTelemetry Java agent.
List of OpenTelemetry component dependencies internally used:
Component | Version |
---|---|
Trace API | v1.6.0 |
Trace SDK | v1.6.0 |
OpenTelemetry SDK Autoconfigure | v1.6.0-alpha |
OpenTelemetry AWS Utils | v1.6.0 |
OpenTelemetry Semantic Conventions | v1.6.0 |
OpenTelemetry Resource Providers | v1.6.0 |
Features :
- Auto-Instrumentation
- AWS EC2 auto resource detection using Auto-instrumentation
To auto-instrument your app,
java -javaagent:/path/lm-telemetry-agent-0.0.1-alpha.jar \
-Dotel.exporter=otlp \
-Dotel.resource.attributes=service.namespace=<service-namespace>,service.name=<service-name> \
-Dotel.exporter.otlp.endpoint=http://localhost:4317 \
-Dotel.exporter.otlp.insecure=true \
-jar <your-app-jar>