Skip to content

Commit 1f959cd

Browse files
authored
Move runtime attach modules under single top-level directory (#385)
* Move runtime attach modules under single top-level directory * Fix link * Fix link
1 parent 4645bec commit 1f959cd

File tree

12 files changed

+5
-5
lines changed

12 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ feature or via instrumentation, this project is hopefully for you.
1414
* [JFR Streaming](./jfr-streaming/README.md)
1515
* [JMX Metric Gatherer](./jmx-metrics/README.md)
1616
* [OpenTelemetry Maven Extension](./maven-extension/README.md)
17-
* [Runtime Attach](./runtime-attach/README.md)
17+
* [Runtime Attach](./runtime-attach/runtime-attach/README.md)
1818
* [Samplers](./samplers/README.md)
1919

2020
## Getting Started
File renamed without changes.
File renamed without changes.

runtime-attach-core/src/main/java/io/opentelemetry/contrib/attach/AgentFileProvider.java renamed to runtime-attach/runtime-attach-core/src/main/java/io/opentelemetry/contrib/attach/AgentFileProvider.java

File renamed without changes.

runtime-attach-core/src/main/java/io/opentelemetry/contrib/attach/CoreRuntimeAttach.java renamed to runtime-attach/runtime-attach-core/src/main/java/io/opentelemetry/contrib/attach/CoreRuntimeAttach.java

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ public class SpringBootApp {
3030
- [Nikita Salnikov-Tarnovski](https://github.com/iNikem), Splunk
3131
- [Trask Stalnaker](https://github.com/trask), Microsoft
3232

33-
Learn more about component owners in [component_owners.yml](../.github/component_owners.yml).
33+
Learn more about component owners in [component_owners.yml](../../.github/component_owners.yml).

runtime-attach/build.gradle.kts renamed to runtime-attach/runtime-attach/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "To runtime attach the OpenTelemetry Java Instrumentation agent"
88
val agent: Configuration by configurations.creating
99

1010
dependencies {
11-
implementation(project(":runtime-attach-core"))
11+
implementation(project(":runtime-attach:runtime-attach-core"))
1212
agent("io.opentelemetry.javaagent:opentelemetry-javaagent:1.15.0")
1313

1414
// Used by byte-buddy but not brought in as a transitive dependency.

runtime-attach/src/main/java/io/opentelemetry/contrib/attach/RuntimeAttach.java renamed to runtime-attach/runtime-attach/src/main/java/io/opentelemetry/contrib/attach/RuntimeAttach.java

File renamed without changes.

runtime-attach/src/test/java/io/opentelemetry/contrib/attach/AbstractAttachmentTest.java renamed to runtime-attach/runtime-attach/src/test/java/io/opentelemetry/contrib/attach/AbstractAttachmentTest.java

File renamed without changes.

runtime-attach/src/test/java/io/opentelemetry/contrib/attach/AgentDisabledTest.java renamed to runtime-attach/runtime-attach/src/test/java/io/opentelemetry/contrib/attach/AgentDisabledTest.java

File renamed without changes.

0 commit comments

Comments
 (0)