We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The logic: freeMem=awk '/MemFree/ { print int($2/1024) }' /proc/meminfo ... export JVM_ARGS="-Xmn${n}m -Xms${s}m -Xmx${x}m" jmeter $@
awk '/MemFree/ { print int($2/1024) }' /proc/meminfo
seems not set the correct Xms/Xmx. It is always 1g. jmeter(not jmeter.sh) doesn't honor the JVM_ARGS . Is it?
The text was updated successfully, but these errors were encountered:
JVM_ARGS is exported in the entrypoint.sh and should be included in the jmeter script whose last line is:
JVM_ARGS
entrypoint.sh
jmeter
"$JAVA_HOME/bin/java" $ARGS $JVM_ARGS $JMETER_OPTS -jar "$PRGDIR/ApacheJMeter.jar" "$@"
Note that the memory settings are from within the running Docker Container. But one can never be sure...Any proof you can supply?
Sorry, something went wrong.
No branches or pull requests
The logic:
freeMem=
awk '/MemFree/ { print int($2/1024) }' /proc/meminfo
...
export JVM_ARGS="-Xmn${n}m -Xms${s}m -Xmx${x}m"
jmeter $@
seems not set the correct Xms/Xmx. It is always 1g.
jmeter(not jmeter.sh) doesn't honor the JVM_ARGS . Is it?
The text was updated successfully, but these errors were encountered: