Skip to content
New issue

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

Add missing configurations #6

Merged
merged 1 commit into from
Oct 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 32 additions & 14 deletions buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,6 @@ description = "the number of threads in memory calculation"
default = "250"
launch = true

[[metadata.configurations]]
name = "BPL_HEAP_DUMP_PATH"
description = "write heap dumps on error to this path"
default = ""
launch = true

[[metadata.configurations]]
name = "BPL_JAVA_NMT_ENABLED"
description = "enables Java Native Memory Tracking (NMT)"
Expand All @@ -72,16 +66,40 @@ default = "summary"
launch = true

[[metadata.configurations]]
name = "BPL_JAVA_NMT_ENABLED"
description = "enables Java Native Memory Tracking (NMT)"
default = "true"
launch = true
name = "BPL_JMX_ENABLED"
description = "enables Java Management Extensions (JMX)"
default = "false"
launch = true

[[metadata.configurations]]
name = "BPL_JAVA_NMT_LEVEL"
description = "configure level of NMT, summary or detail"
default = "summary"
launch = true
name = "BPL_JMX_PORT"
description = "configure the JMX port"
default = "5000"
launch = true

[[metadata.configurations]]
name = "BPL_DEBUG_ENABLED"
description = "enables Java remote debugging support"
default = "false"
launch = true

[[metadata.configurations]]
name = "BPL_DEBUG_PORT"
description = "configure the remote debugging port"
default = "8000"
launch = true

[[metadata.configurations]]
name = "BPL_DEBUG_SUSPEND"
description = "configure whether to suspend execution until a debugger has attached"
default = "false"
launch = true

[[metadata.configurations]]
name = "BPL_HEAP_DUMP_PATH"
description = "write heap dumps on error to this path"
default = ""
launch = true

[[metadata.configurations]]
name = "BP_JVM_VERSION"
Expand Down