README.adoc 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. = Linux Metrics Exporter for OpenShift Nodes =
  2. == Components ==
  3. . Container Image for SAR
  4. . Container Image for PSACCT
  5. . Container Image for Exporter
  6. == Deployment ==
  7. TBD
  8. == Images ==
  9. === SAR ===
  10. Sar image is based on ubi-micro and includes just the `sysstat` package.
  11. It expects a volume to be attached at `/var/log/sa`.
  12. Entrypoint takes care of initialising the volume and rotating any old `sar` files out of the way.
  13. It *requires* to be executed under `root` UID.
  14. It also *requires* access to host's network namespace if you want to measure network statistics.
  15. === PSACCT ===
  16. Sar image is based on ubi-micro and includes just the `psacct` package.
  17. It expects a volume to be attached at `/var/account`.
  18. Entrypoint takes care of initialising the volume and rotating any old `pacct` files out of the way.
  19. In addition to *requiring* execution under `root` UID, it also *requires* the `SYS_PACCT` capability.
  20. It also *requires* access to host's PID namespace (`--pid=host` podman option).
  21. === Exporter ===
  22. TBD