Skip to content

feat: add new memory management env var for the agent #1281

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Variable|Description
`JOB_CONCURRENCY`|(Default: 1, max: 10) Number of concurrent checks that are run by the agent.
`LOG_LEVEL`|(Default: `INFO`) Set the log level of the agent. Can be one of `DEBUG`, `LOG`, `INFO`, `WARN` or `ERROR`.
`USE_OS_DNS_RESOLVER`|When set to true, TCP checks will resolve DNS using `getaddrinfo` C function, instead of using the network. This enables easier DNS resolution for internal services e.g. services running in the same Kubernetes cluster.
`ENABLE_MEMORY_MANAGEMENT`|(Default: false) When enabled (set to true), this option turns on Checkly's built-in memory monitoring that detects out-of-memory errors. As a result, check runs will be canceled, and a memory-related check result will be generated.
`MEMORY_LIMIT_BYTES`|(Default: 95% ot total memory available) Sets the memory threshold in bytes for detecting out-of-memory condition.

For example, you can add these variables to the standard docker run command like this:

Expand Down
Loading