-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #414 from groldan/yjp
Install Yourkit Java Profiler agent in the geoserver base image
- Loading branch information
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This is a sample docker compose env file to run the geoserver services | ||
# with the Yourkit Java Profiles connection broker. | ||
# Copy as .yjp.env and replace <broker-id> and <broker-token> with the values | ||
# sent to you by email. | ||
# Then run with docker compose --env-file .env --env-file .env.yjp -f ... up -d | ||
# See https://www.yourkit.com/docs/connection-broker/2023.9/help/ | ||
|
||
YJP_OPTS=-agentpath:/usr/local/YourKit-JavaProfiler-2023.9/bin/linux-x86-64/libyjpagent.so=broker_url=https://broker.yourkit.com/<broker-id>/,broker_token=<broker-token> | ||
|
||
WFS_JAVA_OPTS=$YJP_OPTS,sessionname=wfs-service | ||
WMS_JAVA_OPTS=$YJP_OPTS,sessionname=wms-service | ||
WCS_JAVA_OPTS=$YJP_OPTS,sessionname=wcs-service | ||
WPS_JAVA_OPTS=$YJP_OPTS,sessionname=wps-service | ||
REST_JAVA_OPTS=$YJP_OPTS,sessionname=rest-service | ||
WEBUI_JAVA_OPTS=$YJP_OPTS,sessionname=webui-service | ||
GWC_JAVA_OPTS=$YJP_OPTS,sessionname=gwc-service | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters