├── .cirrus.yml ├── .clang-format ├── .dir-locals.el ├── .github ├── renovate.json5 └── workflows │ ├── integration.yml │ └── validate.yml ├── .gitignore ├── .packit.yaml ├── .rpmbuild ├── Makefile └── prepare.sh ├── CODE-OF-CONDUCT.md ├── Containerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── VERSION ├── changelog.txt ├── contrib └── spec │ └── conmon.spec.in ├── docs ├── Makefile └── conmon.8.md ├── hack ├── get_ci_vm.sh ├── github-actions-setup └── seccomp-notify.sh ├── meson.build ├── nix ├── default-amd64.nix ├── default-arm64.nix ├── default-ppc64le.nix ├── default-riscv64.nix ├── default-s390x.nix ├── default.nix ├── derivation.nix ├── nixpkgs.json ├── nixpkgs.nix └── overlay.nix ├── rpm └── conmon.spec ├── src ├── cgroup.c ├── cgroup.h ├── cli.c ├── cli.h ├── close_fds.c ├── close_fds.h ├── cmsg.c ├── cmsg.h ├── config.h ├── conmon.c ├── conn_sock.c ├── conn_sock.h ├── ctr_exit.c ├── ctr_exit.h ├── ctr_logging.c ├── ctr_logging.h ├── ctr_stdio.c ├── ctr_stdio.h ├── ctrl.c ├── ctrl.h ├── globals.c ├── globals.h ├── oom.c ├── oom.h ├── parent_pipe_fd.c ├── parent_pipe_fd.h ├── runtime_args.c ├── runtime_args.h ├── seccomp_notify.c ├── seccomp_notify.h ├── seccomp_notify_plugin.h ├── utils.c └── utils.h └── test ├── 01-basic.bats ├── 02-ctr-logs.bats ├── 03-k8s-log-rotation.bats ├── 04-runtime.bats ├── 05-oom-detection.bats ├── 06-exec-exit-status.bats ├── 06-log-management.bats ├── 06-priority-parsing.bats ├── 07-attach.bats ├── 08-exec.bats ├── 09-partial-log-test.bats ├── 10-ctrl.bats ├── Makefile ├── run-tests.sh └── test_helper.bash /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.clang-format -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.gitignore -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.rpmbuild/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.rpmbuild/Makefile -------------------------------------------------------------------------------- /.rpmbuild/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/.rpmbuild/prepare.sh -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/Containerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.1.13 2 | -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/changelog.txt -------------------------------------------------------------------------------- /contrib/spec/conmon.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/contrib/spec/conmon.spec.in -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conmon.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/docs/conmon.8.md -------------------------------------------------------------------------------- /hack/get_ci_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/hack/get_ci_vm.sh -------------------------------------------------------------------------------- /hack/github-actions-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/hack/github-actions-setup -------------------------------------------------------------------------------- /hack/seccomp-notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/hack/seccomp-notify.sh -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/meson.build -------------------------------------------------------------------------------- /nix/default-amd64.nix: -------------------------------------------------------------------------------- 1 | default.nix -------------------------------------------------------------------------------- /nix/default-arm64.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/default-arm64.nix -------------------------------------------------------------------------------- /nix/default-ppc64le.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/default-ppc64le.nix -------------------------------------------------------------------------------- /nix/default-riscv64.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/default-riscv64.nix -------------------------------------------------------------------------------- /nix/default-s390x.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/default-s390x.nix -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/derivation.nix -------------------------------------------------------------------------------- /nix/nixpkgs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/nixpkgs.json -------------------------------------------------------------------------------- /nix/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/nixpkgs.nix -------------------------------------------------------------------------------- /nix/overlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/nix/overlay.nix -------------------------------------------------------------------------------- /rpm/conmon.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/rpm/conmon.spec -------------------------------------------------------------------------------- /src/cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/cgroup.c -------------------------------------------------------------------------------- /src/cgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/cgroup.h -------------------------------------------------------------------------------- /src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/cli.c -------------------------------------------------------------------------------- /src/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/cli.h -------------------------------------------------------------------------------- /src/close_fds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/close_fds.c -------------------------------------------------------------------------------- /src/close_fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/close_fds.h -------------------------------------------------------------------------------- /src/cmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/cmsg.c -------------------------------------------------------------------------------- /src/cmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/cmsg.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/config.h -------------------------------------------------------------------------------- /src/conmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/conmon.c -------------------------------------------------------------------------------- /src/conn_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/conn_sock.c -------------------------------------------------------------------------------- /src/conn_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/conn_sock.h -------------------------------------------------------------------------------- /src/ctr_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctr_exit.c -------------------------------------------------------------------------------- /src/ctr_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctr_exit.h -------------------------------------------------------------------------------- /src/ctr_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctr_logging.c -------------------------------------------------------------------------------- /src/ctr_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctr_logging.h -------------------------------------------------------------------------------- /src/ctr_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctr_stdio.c -------------------------------------------------------------------------------- /src/ctr_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctr_stdio.h -------------------------------------------------------------------------------- /src/ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctrl.c -------------------------------------------------------------------------------- /src/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/ctrl.h -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/oom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/oom.c -------------------------------------------------------------------------------- /src/oom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/oom.h -------------------------------------------------------------------------------- /src/parent_pipe_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/parent_pipe_fd.c -------------------------------------------------------------------------------- /src/parent_pipe_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/parent_pipe_fd.h -------------------------------------------------------------------------------- /src/runtime_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/runtime_args.c -------------------------------------------------------------------------------- /src/runtime_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/runtime_args.h -------------------------------------------------------------------------------- /src/seccomp_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/seccomp_notify.c -------------------------------------------------------------------------------- /src/seccomp_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/seccomp_notify.h -------------------------------------------------------------------------------- /src/seccomp_notify_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/seccomp_notify_plugin.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/src/utils.h -------------------------------------------------------------------------------- /test/01-basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/01-basic.bats -------------------------------------------------------------------------------- /test/02-ctr-logs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/02-ctr-logs.bats -------------------------------------------------------------------------------- /test/03-k8s-log-rotation.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/03-k8s-log-rotation.bats -------------------------------------------------------------------------------- /test/04-runtime.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/04-runtime.bats -------------------------------------------------------------------------------- /test/05-oom-detection.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/05-oom-detection.bats -------------------------------------------------------------------------------- /test/06-exec-exit-status.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/06-exec-exit-status.bats -------------------------------------------------------------------------------- /test/06-log-management.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/06-log-management.bats -------------------------------------------------------------------------------- /test/06-priority-parsing.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/06-priority-parsing.bats -------------------------------------------------------------------------------- /test/07-attach.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/07-attach.bats -------------------------------------------------------------------------------- /test/08-exec.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/08-exec.bats -------------------------------------------------------------------------------- /test/09-partial-log-test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/09-partial-log-test.bats -------------------------------------------------------------------------------- /test/10-ctrl.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/10-ctrl.bats -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/run-tests.sh -------------------------------------------------------------------------------- /test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/conmon/HEAD/test/test_helper.bash --------------------------------------------------------------------------------