Move runtime attach modules under single top-level directory (#385)

* Move runtime attach modules under single top-level directory

* Fix link

* Fix link
This commit is contained in:
Trask Stalnaker 2022-07-11 08:43:01 -07:00 committed by GitHub
parent 4645beca88
commit 1f959cdd7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ feature or via instrumentation, this project is hopefully for you.
* [JFR Streaming](./jfr-streaming/README.md) * [JFR Streaming](./jfr-streaming/README.md)
* [JMX Metric Gatherer](./jmx-metrics/README.md) * [JMX Metric Gatherer](./jmx-metrics/README.md)
* [OpenTelemetry Maven Extension](./maven-extension/README.md) * [OpenTelemetry Maven Extension](./maven-extension/README.md)
* [Runtime Attach](./runtime-attach/README.md) * [Runtime Attach](./runtime-attach/runtime-attach/README.md)
* [Samplers](./samplers/README.md) * [Samplers](./samplers/README.md)
## Getting Started ## Getting Started

View File

@ -30,4 +30,4 @@ public class SpringBootApp {
- [Nikita Salnikov-Tarnovski](https://github.com/iNikem), Splunk - [Nikita Salnikov-Tarnovski](https://github.com/iNikem), Splunk
- [Trask Stalnaker](https://github.com/trask), Microsoft - [Trask Stalnaker](https://github.com/trask), Microsoft
Learn more about component owners in [component_owners.yml](../.github/component_owners.yml). Learn more about component owners in [component_owners.yml](../../.github/component_owners.yml).

View File

@ -8,7 +8,7 @@ description = "To runtime attach the OpenTelemetry Java Instrumentation agent"
val agent: Configuration by configurations.creating val agent: Configuration by configurations.creating
dependencies { dependencies {
implementation(project(":runtime-attach-core")) implementation(project(":runtime-attach:runtime-attach-core"))
agent("io.opentelemetry.javaagent:opentelemetry-javaagent:1.15.0") agent("io.opentelemetry.javaagent:opentelemetry-javaagent:1.15.0")
// Used by byte-buddy but not brought in as a transitive dependency. // Used by byte-buddy but not brought in as a transitive dependency.

View File

@ -46,8 +46,8 @@ include(":jfr-streaming")
include(":micrometer-meter-provider") include(":micrometer-meter-provider")
include(":jmx-metrics") include(":jmx-metrics")
include(":maven-extension") include(":maven-extension")
include(":runtime-attach") include(":runtime-attach:runtime-attach")
include(":runtime-attach-core") include(":runtime-attach:runtime-attach-core")
include(":samplers") include(":samplers")
include(":static-instrumenter:agent-instrumenter") include(":static-instrumenter:agent-instrumenter")
include(":static-instrumenter:gradle-plugin") include(":static-instrumenter:gradle-plugin")