Skip to content

Commit 5e192e8

Browse files
authored
Creating an opamp-client module (#1472)
1 parent 3e75fe5 commit 5e192e8

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

.github/component_owners.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,5 @@ components:
7575
- jackshirazi
7676
- jonaskunz
7777
- sylvainjuge
78+
opamp-client:
79+
- LikeTheSalad

opamp-client/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# OpAMP Client
2+
3+
Java implementation of the OpAMP
4+
client [spec](https://github.com/open-telemetry/opamp-spec/blob/main/specification.md).
5+
6+
## Component owners
7+
8+
- [Cesar Munoz](https://github.com/LikeTheSalad), Elastic
9+
10+
Learn more about component owners in [component_owners.yml](../.github/component_owners.yml).

opamp-client/build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
plugins {
2+
id("otel.java-conventions")
3+
}
4+
5+
description = "Client implementation of the OpAMP spec."
6+
otelJava.moduleName.set("io.opentelemetry.contrib.opamp.client")
7+
8+
java {
9+
sourceCompatibility = JavaVersion.VERSION_1_8
10+
targetCompatibility = JavaVersion.VERSION_1_8
11+
}

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,4 @@ include(":kafka-exporter")
8888
include(":gcp-resources")
8989
include(":span-stacktrace")
9090
include(":inferred-spans")
91+
include(":opamp-client")

0 commit comments

Comments
 (0)