mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
b6a0e4b856
New variables CTDB_MONITOR_MEMORY_USAGE and CTDB_MONITOR_SWAP_USAGE. Both take a pair of <warn_threshold>:<unhealthy_threshold> where each theshold is specified as a percentage. This adds a callout to check_thresholds() that is run when the unhealthy threshold is reached. Add some combination tests. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
17 lines
288 B
Bash
Executable File
17 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "Memory check, bad situation, both memory checks, causes warning"
|
|
|
|
setup_memcheck 87 0
|
|
|
|
CTDB_MONITOR_MEMORY_USAGE="80:90"
|
|
CTDB_MONITOR_SWAP_USAGE=""
|
|
|
|
ok <<EOF
|
|
WARNING: System memory utilization 87% >= threshold 80%
|
|
EOF
|
|
|
|
simple_test
|