Skip to content

Commit

Permalink
Creating an opamp-client module (#1472)
Browse files Browse the repository at this point in the history
  • Loading branch information
LikeTheSalad authored Sep 26, 2024
1 parent 3e75fe5 commit 5e192e8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/component_owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,5 @@ components:
- jackshirazi
- jonaskunz
- sylvainjuge
opamp-client:
- LikeTheSalad
10 changes: 10 additions & 0 deletions opamp-client/README.md
Original file line number Diff line number Diff line change
@@ -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).
11 changes: 11 additions & 0 deletions opamp-client/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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
}
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,4 @@ include(":kafka-exporter")
include(":gcp-resources")
include(":span-stacktrace")
include(":inferred-spans")
include(":opamp-client")

0 comments on commit 5e192e8

Please sign in to comment.