-
Notifications
You must be signed in to change notification settings - Fork 178
Dynamic control #2418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic control #2418
Changes from all commits
d9d052e
c132aaa
d2c2523
e7c14e1
a4ab1fe
e27e143
abc9212
f5b6a63
35f276b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -98,3 +98,6 @@ components: | |
| ibm-mq-metrics: | ||
| - breedx-splk | ||
| - atoulme | ||
| dynamic-control: | ||
| - jackshirazi | ||
| - LikeTheSalad | ||
| 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). |
| 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 | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -104,3 +104,4 @@ include(":span-stacktrace") | |
| include(":inferred-spans") | ||
| include(":opamp-client") | ||
| include(":gcp-auth-extension") | ||
| include(":dynamic-control") | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe remote-control, to be a little more specific?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
||
Uh oh!
There was an error while loading. Please reload this page.