Skip to content

Commit 9b46465

Browse files
authored
Dynamic control (#2418)
1 parent 831f813 commit 9b46465

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

.github/component_owners.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,6 @@ components:
9898
ibm-mq-metrics:
9999
- breedx-splk
100100
- atoulme
101+
dynamic-control:
102+
- jackshirazi
103+
- LikeTheSalad

dynamic-control/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Dynamic Control
2+
3+
Adding dynamic control of some specific features of the Java agent.
4+
5+
> [!WARNING]
6+
> This is an incubating feature. Breaking changes can happen on a new release without previous
7+
> notice and without backward compatibility guarantees.
8+
9+
## Component owners
10+
11+
- [Jack Shirazi](https://github.com/jackshirazi), Elastic
12+
- [Cesar Munoz](https://github.com/LikeTheSalad), Elastic
13+
14+
Learn more about component owners in [component_owners.yml](../.github/component_owners.yml).

dynamic-control/build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
plugins {
2+
id("otel.java-conventions")
3+
id("otel.publish-conventions")
4+
id("otel.animalsniffer-conventions")
5+
}
6+
7+
description = "Dynamic control of some specific features of the agent"
8+
otelJava.moduleName.set("io.opentelemetry.contrib.dynamic")
9+
10+
java {
11+
sourceCompatibility = JavaVersion.VERSION_1_8
12+
targetCompatibility = JavaVersion.VERSION_1_8
13+
}

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,4 @@ include(":span-stacktrace")
110110
include(":inferred-spans")
111111
include(":opamp-client")
112112
include(":gcp-auth-extension")
113+
include(":dynamic-control")

0 commit comments

Comments
 (0)