Cedana
Cedana Daemon
Cedana
Cedana Daemon
  • Cedana Daemon
  • Get started
    • Installation
    • Authentication
    • Configuration
    • Health checks
    • Plugins
    • Feature matrix
  • Guides
    • Managed process/container
    • Checkpoint/restore basics
    • Checkpoint/restore with GPUs
    • Checkpoint/restore runc
    • Checkpoint/restore containerd
    • Checkpoint/restore streamer
    • Checkpoint/restore kata
      • how-to-create-custom-busybox-image
      • how-to-install-criu-in-guest
      • how-to-install-on-aws
      • how-to-make-kernel-criu-compatible
      • how-to-make-rootfs-criu-compatible
      • Checkpoint/Restore kata containers
  • Developer guides
    • Architecture
    • Profiling
    • Testing
    • Writing plugins
  • References
    • CLI
      • cedana
      • cedana attach
      • cedana checkpoint
      • cedana checkpoints
      • cedana completion
      • cedana completion bash
      • cedana completion fish
      • cedana completion powershell
      • cedana completion zsh
      • cedana daemon
      • cedana daemon check
      • cedana daemon start
      • cedana delete
      • cedana dump
      • cedana dump containerd
      • cedana dump job
      • cedana dump process
      • cedana dump runc
      • cedana exec
      • cedana features
      • cedana inspect
      • cedana job
      • cedana job attach
      • cedana job checkpoint
      • cedana job checkpoint inspect
      • cedana job checkpoint list
      • cedana job checkpoints
      • cedana job delete
      • cedana job inspect
      • cedana job kill
      • cedana job list
      • cedana jobs
      • cedana k8s-helper
      • cedana k8s-helper destroy
      • cedana kill
      • cedana manage
      • cedana manage containerd
      • cedana manage process
      • cedana manage runc
      • cedana plugin
      • cedana plugin features
      • cedana plugin install
      • cedana plugin list
      • cedana plugin remove
      • cedana plugins
      • cedana ps
      • cedana query
      • cedana query k8s
      • cedana query runc
      • cedana restore
      • cedana restore job
      • cedana restore process
      • cedana restore runc
      • cedana run
      • cedana run containerd
      • cedana run process
      • cedana run runc
    • API
    • GitHub
Powered by GitBook
On this page
  • Basic
  • Complete

Was this helpful?

Edit on GitHub
  1. Get started

Health checks

The daemon can be health checked to ensure it fully supports the system and is ready to accept requests.

Basic

To do a simple health check, ensure the daemon is running, and then run:

cedana daemon check

This just checks for basic C/R capabilities on the host.

Complete

To do a more complete health check, ensure the daemon is running, and then run:

cedana daemon check --full

This health checks all the installed plugins, including some optional checks. If you have installed plugins, you should see an output similar to:

CRIU
version                40100                                     ✔
features               available                                 ✔

GPU
status                 available                                 ✔
version                                                          ✔
device count           1                                         ✔
driver API             12040                                     ✔

STREAMER
version                v0.0.6                                    ✔
criu                   supported                                 ✔
pipe pages soft limit  16 KiB                                    •  For optimal performance, `echo 0 >
                                                                    /proc/sys/fs/pipe-user-pages-soft`
pipe pages hard limit  unlimited                                 ✔
pipe max size          1 MiB                                     •  For optimal performance, `echo 4194304 >
                                                                    /proc/sys/fs/pipe-max-size`

RUNC
version                v0.9.239-1-g9acef6f                       ✔
runc binary            available                                 ✔
runc version           1.2.4                                     ✔
runc spec              1.2.0                                     ✔
runc libseccomp        2.5.5                                     ✔

CONTAINERD
version                v0.9.239-1-g9acef6f                       ✔
containerd version     v2.0.1                                    ✔
containerd revision    88aa2f531d6c2922003cc7929e51daf1c14caa0a  ✔
containerd runtime     io.containerd.runc.v2                     ✔

Looks good, with 2 warning(s).

Warnings are shown in yellow and are usually related to system configuration or performance. They are not critical but can affect the performance of the daemon.

PreviousConfigurationNextPlugins

Last updated 2 months ago

Was this helpful?