# Does Elastic APM support Quarkus?

**URL:** https://discuss.elastic.co/t/does-elastic-apm-support-quarkus/284167
**Category:** APM
**Tags:** java
**Created:** [September 14, 2021, 9:15am UTC](https://discuss.elastic.co/t/does-elastic-apm-support-quarkus/284167 "2021-09-14T09:15:36Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![cyrilleleclerc](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/cyrilleleclerc/32/60493_2.png) [@cyrilleleclerc](https://discuss.elastic.co/u/cyrilleleclerc)
#### Post date: [September 14, 2021, 9:40am UTC](https://discuss.elastic.co/t/does-elastic-apm-support-quarkus/284167/2 "2021-09-14T09:40:22Z")

</div>

Hello @willemdh

You have a turnkey integration of Elastic with Quarkus using the [Quarkus OpenTelemetry integration](https://quarkus.io/guides/opentelemetry) combined with the out of the box [native support of the OpenTelemetry Protocol provided by Elastic APM Server](https://www.elastic.co/guide/en/apm/get-started/current/open-telemetry-elastic.html).

Add the Quarkus OpenTelemetry integration executing

```auto
./mvnw quarkus:add-extension -Dextensions="opentelemetry-otlp-exporter"

```

Your [Quarkus OpenTelemetry configuration](https://quarkus.io/guides/opentelemetry#create-the-configuration) will look like

```auto
quarkus.application.name=myservice 
...
quarkus.opentelemetry.tracer.exporter.otlp.endpoint=http://elastic-apm-server.example.com:8200 
quarkus.opentelemetry.tracer.exporter.otlp.headers=Authorization=Bearer my_elastic_apm_secret_token 

```

---

_[View the full topic](https://discuss.elastic.co/t/does-elastic-apm-support-quarkus/284167)._
