Jean Bisutti

Results 44 comments of Jean Bisutti

Could you please provide a project example reproducing the problem? Thanks

With Quarkus 1.3 and a JVM annotation, I got an `Address already in use: bind` because the `beforeAll(ExtensionContext context) method` of `QuarkusTestExtension` is called two times, once in each JVM...

@loicmathieu, thanks The [example](https://github.com/jeanbisutti/quickperf-quarkus) is updated with a static field. However, with this modification, `mvn clean test -Dtest=PlayerControllerTest` leads to the following error report: ``` org.junit.jupiter.api.extension.TestInstantiationException: Failed to create test...

> It's a tricky issue, we must register the extension with the QuarkusTestExtension type not the Extension type. It's better with Quarkus 1.7 and QuarkusTestExtension . I quickly add new...

@dnestoro I have applied a workaround by disabling the metadata repository. After doing this, I had to add GraalVM metadata to the Spring Boot project. So, it seems that the...

@jkwatson @jack-berg The `opencensus-shim:compileJava` task is failing in the build. How could it be related to [this](https://github.com/open-telemetry/opentelemetry-java/blob/9e08ab274779c82791513d98c7a4843ed10bfa05/api/all/build.gradle.kts#L30)? Could you please help on this?

@omni-htg Instead of adding and configuring the Ktor instrumentation library, you can enable the Ktor automatic instrumenation provided by Application Insights: ``` { "preview": { "instrumentation": { "ktor": { "enabled":...

[supported-libraries](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/supported-libraries.md) seems hand edited and should probably be migrated to the https://opentelemetry.io/ website. @steverao Don't hesitate to create PRs to improve the documentation and suggests automatic checks if it would...

> I think whether we don't provide the table here in the future, and add instrumentation name in [supported tables](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/supported-libraries.md#libraries--frameworks). The final result is similar to the picture below: ![image](https://private-user-images.githubusercontent.com/25423978/310519594-003960cc-ff22-44cd-929c-60ee27668f3c.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MDk3MzQzNjgsIm5iZiI6MTcwOTczNDA2OCwicGF0aCI6Ii8yNTQyMzk3OC8zMTA1MTk1OTQtMDAzOTYwY2MtZmYyMi00NGNkLTkyOWMtNjBlZTI3NjY4ZjNjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDAzMDYlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQwMzA2VDE0MDc0OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTNmNzNjYzUyYWU3YjE3NWQyNjE1NWY0MjQ3OTczYzE1ZGEyNDI2M2NhM2Y2ZGU5MzdhNjJhZDNhYjNkYzg0ZmMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.32fU-hzb0Z9Bd4fE_3h5trT6JAlcy7b0IWbWdIvUljw)...

In addition, I would sugest to add the framework links and a `Semantic Conventions` column to the [this table](https://opentelemetry.io/docs/languages/java/automatic/configuration/#suppressing-specific-agent-instrumentation). @steverao and @open-telemetry/java-instrumentation-approvers WDYT?