# fdmonbench **Repository Path**: mirrors_stefanha/fdmonbench ## Basic Information - **Project Name**: fdmonbench - **Description**: File Descriptor Monitoring Benchmark for Linux - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-17 - **Last Updated**: 2025-12-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README fdmonbench - File Descriptor Monitoring Benchmark ================================================= Collect performance results for Linux file descriptor monitoring APIs. The benchmark sends a message to one or more threads that monitor for file descriptor activity. When a file descriptor becomes readable the message is read and sent back as a reply. The next message is sent to a random file descriptor when the reply is received. This ping-pong test simulates an application that is monitoring one or more file descriptors and one of them becomes ready at a time. Supported APIs: - select(2) - poll(2) - epoll(7) - io\_uring - io\_uring AIO (for comparison with kernel asynchronous I/O) - threads (for comparison with threaded architectures) Metrics ------- - Duration (seconds) - wall clock time, may vary slightly from the desired duration - Total Roundtrips - number of times a message was sent and a reply was received - Roundtrips/second - the main performance metric, indicating the rate at which messages were transferred - CPU usage (seconds) - total user and system CPU usage of the benchmark process - Roundtrips/CPU seconds - efficiency metric, indicating how many messages are transferred per unit of CPU time Usage ----- $ fdmonbench Usage: fdmonbench [OPTION]... Perform file descriptor monitoring benchmarking. --duration-secs= run for number of seconds (default: 30) --engine=epoll|io_uring|io_uring-aio|poll|select|threads set fd monitoring engine (default: select) --exclusive=0|1 use EPOLLEXCLUSIVE (default: 0) --help print this help --msg-size number of bytes per message (default: 1) --num-engines number of engine instances (default: 1) --num-fds number of file descriptors (default: 1) This software is licensed under the GNU General Public License v3.0 or later. Please contact Stefan Hajnoczi for questions about this software.