Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/component_owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,6 @@ components:
ibm-mq-metrics:
- breedx-splk
- atoulme
dynamic-control:
- jackshirazi
Comment thread
breedx-splk marked this conversation as resolved.
- LikeTheSalad
14 changes: 14 additions & 0 deletions dynamic-control/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Dynamic Control

Adding dynamic control of some specific features of the Java agent.

> [!WARNING]
> This is an incubating feature. Breaking changes can happen on a new release without previous
> notice and without backward compatibility guarantees.

## Component owners

- [Jack Shirazi](https://github.com/jackshirazi), Elastic
- [Cesar Munoz](https://github.com/LikeTheSalad), Elastic

Learn more about component owners in [component_owners.yml](../.github/component_owners.yml).
13 changes: 13 additions & 0 deletions dynamic-control/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
plugins {
id("otel.java-conventions")
id("otel.publish-conventions")
id("otel.animalsniffer-conventions")
}

description = "Dynamic control of some specific features of the agent"
otelJava.moduleName.set("io.opentelemetry.contrib.dynamic")

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 @@ -104,3 +104,4 @@ include(":span-stacktrace")
include(":inferred-spans")
include(":opamp-client")
include(":gcp-auth-extension")
include(":dynamic-control")
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe remote-control, to be a little more specific?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The aim of the project is to allow changes to features, and where those changes are triggered from is secondary. For example one of the proposed examples uses a local file that is re-read every N seconds to update values. So I'd say dynamic control is more accurate