layout | title | subtitle | permalink |
---|---|---|---|
usage |
Quarkus Usage Analytics |
Help us make Quarkus even better, anonymously. |
/usage/ |
Usage analytics (telemetry collection) is invaluable for the Quarkus team and contributors to gauge which operating systems, java version, build systems, extensions and more are used. This service is provided by Red Hat and the details can be found on usage policy page.
In order to get this information, beginning in Quarkus 3.2, when you run Quarkus the first time in dev mode (quarkus dev
, mvn quarkus:dev
, etc.) you get asked if you agree to contribute anonymous build data to the Quarkus community.
By answering "Yes", when you perform a quarkus build, anonymized data is sent to gather usage statistics on how Quarkus is being used and adopted.
However if you anser "No", then no usage data is sent and you will not be asked again.
We will share what is learned from these anonymous usage data and plan on integrate things like usage and adoption into sites like extensions.quarkus.io and code.quarkus.io.
Build time analytics is not active by default. If you have opted in and would like to disable build time analytics or would like to later enable collection, you can do so in two ways:
You can manually configure the global settings by editing the io.quarkus.analytics.localconfig
file in the .redhat
folder of your user’s home directory.
{"disabled":false}
{"disabled":true}
You can configure it for a given build by using the quarkus.analytics.disabled
system property:
- To disable analytics collection, set
quarkus.analytics.disabled
totrue
. - To enable analytics collection, set
quarkus.analytics.disabled
tofalse
.
For instance, when using Maven, you can disable analytics collection for a single run with:
./mvnw clean install -Dquarkus.analytics.disabled=true