Skip to content

Commit 1630e8d

Browse files
committed
fix readme, exclude -testing directories, pull in main updates
1 parent 22a06ce commit 1630e8d

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

docs/instrumentation-list.yaml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1950,6 +1950,22 @@ libraries:
19501950
target_versions:
19511951
javaagent:
19521952
- io.vertx:vertx-redis-client:[4.0.0,)
1953+
- name: vertx-sql-client-5.0
1954+
source_path: instrumentation/vertx/vertx-sql-client/vertx-sql-client-5.0
1955+
minimum_java_version: 11
1956+
scope:
1957+
name: io.opentelemetry.vertx-sql-client-5.0
1958+
target_versions:
1959+
javaagent:
1960+
- io.vertx:vertx-sql-client:[5.0.0,)
1961+
- name: vertx-http-client-5.0
1962+
source_path: instrumentation/vertx/vertx-http-client/vertx-http-client-5.0
1963+
minimum_java_version: 11
1964+
scope:
1965+
name: io.opentelemetry.vertx-http-client-5.0
1966+
target_versions:
1967+
javaagent:
1968+
- io.vertx:vertx-core:[5.0.0,)
19531969
- name: vertx-web-3.0
19541970
source_path: instrumentation/vertx/vertx-web-3.0
19551971
scope:
@@ -1958,7 +1974,7 @@ libraries:
19581974
javaagent:
19591975
- io.vertx:vertx-web:[3.0.0,)
19601976
- name: vertx-sql-client-4.0
1961-
source_path: instrumentation/vertx/vertx-sql-client-4.0
1977+
source_path: instrumentation/vertx/vertx-sql-client/vertx-sql-client-4.0
19621978
scope:
19631979
name: io.opentelemetry.vertx-sql-client-4.0
19641980
target_versions:

instrumentation-docs/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tasks {
2424

2525
Then, prior to running the analyzer, run the following command to generate `.telemetry` files:
2626

27-
`./gradlew test -collectMetadata=true`
27+
`./gradlew test -PcollectMetadata=true`
2828

2929
Then run the doc generator
3030

instrumentation-docs/src/main/java/io/opentelemetry/instrumentation/docs/utils/FileManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ public static boolean isValidInstrumentationPath(String filePath) {
7676
return false;
7777
}
7878

79-
if (filePath.matches(".*(/test/|/testing|/build/|-common/|-common-|common-|bootstrap/src).*")) {
79+
if (filePath.matches(
80+
".*(/test/|/testing|/build/|-common/|-common-|common-|-testing|bootstrap/src).*")) {
8081
return false;
8182
}
8283

0 commit comments

Comments
 (0)