You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Customers who wish to monitor the JVMs in Zowe, say with OMEGAMON for JVM cannot easily add Java Arguments to the Java configuration.
Describe the experience you'd like
Currently only the Message Service JVM has a javaArgs yaml field. We'd like all the Java process to have that option.
Describe alternatives you've considered
Manually altering the template arguments, but they may get overwritten by maintenance.
The text was updated successfully, but these errors were encountered:
Where, we have an object for global use, and then an override for a specific server use.
I guess you would need some shell scripting to convert the object into a string you can add to your java call.
Omitting "-" would be helpful because a YAML key starting with "-" could cause user error, parsing error, or env var error.
The object format could use some more thought for what is best.
Idea 2 - one big ugly string
java:
args: "-Dkey0=value0 -Dkey1=value1"
In your code maybe it would look like
java \
${ZWE_configs_java_args:-${ZWE_java_args}} \
# more args... \
-jar "${JAR_FILE}"
let me know what you come up with here because might want to do the same for nodejs.
Right now we have a one-off thing called ZWED_FLAGS but its undocumented.
Customers who wish to monitor the JVMs in Zowe, say with OMEGAMON for JVM cannot easily add Java Arguments to the Java configuration.
Describe the experience you'd like
Currently only the Message Service JVM has a javaArgs yaml field. We'd like all the Java process to have that option.
Describe alternatives you've considered
Manually altering the template arguments, but they may get overwritten by maintenance.
The text was updated successfully, but these errors were encountered: