Creating an opamp-client module (#1472)

This commit is contained in:
César 2024-09-26 17:56:15 +02:00 committed by GitHub
parent 3e75fe580b
commit 5e192e8d9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 24 additions and 0 deletions

View File

@ -75,3 +75,5 @@ components:
- jackshirazi
- jonaskunz
- sylvainjuge
opamp-client:
- LikeTheSalad

10
opamp-client/README.md Normal file
View File

@ -0,0 +1,10 @@
# OpAMP Client
Java implementation of the OpAMP
client [spec](https://github.com/open-telemetry/opamp-spec/blob/main/specification.md).
## Component owners
- [Cesar Munoz](https://github.com/LikeTheSalad), Elastic
Learn more about component owners in [component_owners.yml](../.github/component_owners.yml).

View File

@ -0,0 +1,11 @@
plugins {
id("otel.java-conventions")
}
description = "Client implementation of the OpAMP spec."
otelJava.moduleName.set("io.opentelemetry.contrib.opamp.client")
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

View File

@ -88,3 +88,4 @@ include(":kafka-exporter")
include(":gcp-resources")
include(":span-stacktrace")
include(":inferred-spans")
include(":opamp-client")