aquarium_control/watchmen.rs
1/* Copyright 2025 Uwe Martin
2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
5The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
7THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8*/
9/// Contains the framework for running diagnostic checks.
10pub mod monitors;
11
12/// Contains the trait and default implementation watchdog communication.
13pub mod petting;
14
15/// Contains control of the watchdog.
16pub mod watchdog;
17
18/// Container for channels used by monitors module for communication with other threads.
19pub mod monitors_channels;
20
21/// Container for channels used by watchdog module for communication with other threads.
22pub mod watchdog_channels;
23
24/// Configuration of Monitors
25pub mod monitors_config;
26
27/// Configuration of memory configuration check
28pub mod memory_config;
29/// Provides functionality to check for required memory allocation environment variables.
30pub mod memory_config_check;
31/// Configuration of Watchdog
32pub mod watchdog_config;
33
34/// Memory utilization check (virtual memory reservation and RAM usage)
35pub mod memory;
36
37/// Container for channels used by memory module for communication with other threads.
38pub mod memory_channels;