Documentation
DocumentationDiscussions
These docs are for v2020.1. Click to read the latest docs for v2024.2.

Memory

Details on using the Seq Helm chart

For Seq to accurately measure available memory, depending on the hosting infrastructure, it's often necessary to specify memory limits for the deployment.

In Kubernetes, memory limits can be specified in the resources section of the configuration during deployment:

helm install -f config.yaml my-seq stable/seq
# config.yaml
resources:
  limits:
    memory: 4g
  requests:
    memory: 4g