Creating an opamp-client module (#1472)
This commit is contained in:
parent
3e75fe580b
commit
5e192e8d9f
|
@ -75,3 +75,5 @@ components:
|
|||
- jackshirazi
|
||||
- jonaskunz
|
||||
- sylvainjuge
|
||||
opamp-client:
|
||||
- LikeTheSalad
|
||||
|
|
|
@ -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).
|
|
@ -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
|
||||
}
|
|
@ -88,3 +88,4 @@ include(":kafka-exporter")
|
|||
include(":gcp-resources")
|
||||
include(":span-stacktrace")
|
||||
include(":inferred-spans")
|
||||
include(":opamp-client")
|
||||
|
|
Loading…
Reference in New Issue