Skip to content

olares logs

Synopsis

The olares logs command retrieves logs from Olares components and services found on the local machine. It searches for each component listed below, collects logs if the component is found, and skips it if not:

  • K3s/Kubelet logs
  • Containerd logs
  • JuiceFS logs
  • Redis logs
  • MinIO logs
  • etcd logs
  • olaresd logs
  • Kubernetes pod info and logs
  • Kubernetes node info
bash
olares-cli olares logs [option]

Options

NameShorthandUsage
--componentsCollects logs from specific components (comma-separated).
Supported values: k3s, containerd, olaresd, kubelet, juicefs, redis, minio, etcd, NetworkManager.
Defaults to collecting logs from all detectable components.
--help-hDisplays help information.
--ignore-kube-errorsIgnores errors from kubectl commands (e.g., when Kubernetes API is unreachable) and continues collecting logs.
Default: false.
--max-linesLimits the maximum number of lines for each component's logs to prevent large log files.
Defaults to 3000.
--output-dirSaves logs to the specified directory. Creates the directory if it does not exist.
Defaults to ./olares-logs.
--sinceFetches logs newer than a specified relative duration (e.g., 5s, 2m, 3h).
Defaults to 7d.

Example

bash
# Collect all logs with default settings
olares-cli olares logs

# Collect logs for specific components
olares-cli olares logs --components k3s,redis,minio

# Collect logs for the last 3 hours only
olares-cli olares logs --since 3h