Skip to content

Commit 3029a55

Browse files
committed
Sync documentation of main branch
1 parent c643a01 commit 3029a55

File tree

5 files changed

+80
-1
lines changed

5 files changed

+80
-1
lines changed

_generated-doc/main/config/quarkus-all-config.adoc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34934,6 +34934,27 @@ endif::add-copy-button-to-env-var[]
3493434934
|boolean
3493534935
|`true`
3493634936

34937+
a| [[quarkus-jfr_quarkus-jfr-runtime-enabled]] [.property-path]##link:#quarkus-jfr_quarkus-jfr-runtime-enabled[`quarkus.jfr.runtime.enabled`]##
34938+
ifdef::add-copy-button-to-config-props[]
34939+
config_property_copy_button:+++quarkus.jfr.runtime.enabled+++[]
34940+
endif::add-copy-button-to-config-props[]
34941+
34942+
34943+
[.description]
34944+
--
34945+
If false, only Runtime events in quarkus-jfr are not recorded even if JFR is enabled. In this case, other quarkus-jfr, Java standard API and virtual machine information will be recorded according to the setting. Default value is `true`
34946+
34947+
34948+
ifdef::add-copy-button-to-env-var[]
34949+
Environment variable: env_var_with_copy_button:+++QUARKUS_JFR_RUNTIME_ENABLED+++[]
34950+
endif::add-copy-button-to-env-var[]
34951+
ifndef::add-copy-button-to-env-var[]
34952+
Environment variable: `+++QUARKUS_JFR_RUNTIME_ENABLED+++`
34953+
endif::add-copy-button-to-env-var[]
34954+
--
34955+
|boolean
34956+
|`true`
34957+
3493734958

3493834959
h|[.extension-name]##JAXB##
3493934960
h|Type

_generated-doc/main/config/quarkus-jfr.adoc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,26 @@ endif::add-copy-button-to-env-var[]
4949
|boolean
5050
|`true`
5151

52+
a| [[quarkus-jfr_quarkus-jfr-runtime-enabled]] [.property-path]##link:#quarkus-jfr_quarkus-jfr-runtime-enabled[`quarkus.jfr.runtime.enabled`]##
53+
ifdef::add-copy-button-to-config-props[]
54+
config_property_copy_button:+++quarkus.jfr.runtime.enabled+++[]
55+
endif::add-copy-button-to-config-props[]
56+
57+
58+
[.description]
59+
--
60+
If false, only Runtime events in quarkus-jfr are not recorded even if JFR is enabled. In this case, other quarkus-jfr, Java standard API and virtual machine information will be recorded according to the setting. Default value is `true`
61+
62+
63+
ifdef::add-copy-button-to-env-var[]
64+
Environment variable: env_var_with_copy_button:+++QUARKUS_JFR_RUNTIME_ENABLED+++[]
65+
endif::add-copy-button-to-env-var[]
66+
ifndef::add-copy-button-to-env-var[]
67+
Environment variable: `+++QUARKUS_JFR_RUNTIME_ENABLED+++`
68+
endif::add-copy-button-to-env-var[]
69+
--
70+
|boolean
71+
|`true`
72+
5273
|===
5374

_generated-doc/main/config/quarkus-jfr_quarkus.jfr.adoc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,26 @@ endif::add-copy-button-to-env-var[]
4949
|boolean
5050
|`true`
5151

52+
a| [[quarkus-jfr_quarkus-jfr-runtime-enabled]] [.property-path]##link:#quarkus-jfr_quarkus-jfr-runtime-enabled[`quarkus.jfr.runtime.enabled`]##
53+
ifdef::add-copy-button-to-config-props[]
54+
config_property_copy_button:+++quarkus.jfr.runtime.enabled+++[]
55+
endif::add-copy-button-to-config-props[]
56+
57+
58+
[.description]
59+
--
60+
If false, only Runtime events in quarkus-jfr are not recorded even if JFR is enabled. In this case, other quarkus-jfr, Java standard API and virtual machine information will be recorded according to the setting. Default value is `true`
61+
62+
63+
ifdef::add-copy-button-to-env-var[]
64+
Environment variable: env_var_with_copy_button:+++QUARKUS_JFR_RUNTIME_ENABLED+++[]
65+
endif::add-copy-button-to-env-var[]
66+
ifndef::add-copy-button-to-env-var[]
67+
Environment variable: `+++QUARKUS_JFR_RUNTIME_ENABLED+++`
68+
endif::add-copy-button-to-env-var[]
69+
--
70+
|boolean
71+
|`true`
72+
5273
|===
5374

_versions/main/guides/container-image.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ For example, building multi-platform images is implemented differently for Docke
150150
=== OpenShift
151151

152152
The extension `quarkus-container-image-openshift` is using OpenShift binary builds in order to perform container builds inside the OpenShift cluster.
153-
The idea behind the binary build is that you just upload the artifact and its dependencies to the cluster and during the build they will be merged to a builder image (defaults to `fabric8/s2i-java`).
153+
The idea behind the binary build is that you just upload the artifact and its dependencies to the cluster and during the build they will be merged to a builder image (defaults to `ubi9/openjdk-17` or `ubi9/openjdk-21`).
154154

155155
The benefit of this approach, is that it can be combined with OpenShift's `DeploymentConfig` that makes it easy to roll out changes to the cluster.
156156

_versions/main/guides/jfr.adoc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,22 @@ We can check if the Resource Method was executed as expected by the HTTP Method
251251

252252
Client records information about the accessing client.
253253

254+
=== Runtime Event
255+
This event is recorded by default.
256+
The following three JFR events are recorded in JFR chunks.
257+
258+
QuarkusRuntime::
259+
260+
Records information about Quarkus running. This event includes the Quarkus version, its profiles, and the mode in which it is running.
261+
262+
QuarkusApplication::
263+
264+
Records information about Quarkus application running. This event includes the name of the application and its version.
265+
266+
Extension::
267+
268+
Records information about extensions included in the running Quarkus. This event includes the name of the extensions installed in Quarkus.
269+
254270
=== Native Image
255271

256272
Native executables supports Java Flight Recorder.

0 commit comments

Comments
 (0)