File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed
src/main/java/io/opentelemetry/instrumentation/docs/utils Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ tasks {
2424
2525Then, 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
2929Then run the doc generator
3030
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments