Index: openacs-4/packages/xotcl-request-monitor/www/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-request-monitor/www/index.tcl,v diff -u -r1.31.2.8 -r1.31.2.9 --- openacs-4/packages/xotcl-request-monitor/www/index.tcl 6 Oct 2023 09:07:24 -0000 1.31.2.8 +++ openacs-4/packages/xotcl-request-monitor/www/index.tcl 26 Feb 2024 09:57:18 -0000 1.31.2.9 @@ -42,10 +42,10 @@ set f [open $procloadavg]; set c [read $f]; close $f return $c } - if {![catch {exec sysctl vm.loadavg kern.boottime} result]} { + if {![catch {exec [::util::which sysctl] vm.loadavg kern.boottime} result]} { return $result } - if {[set uptime [util::which uptime]] ne ""} { + if {[set uptime [::util::which uptime]] ne ""} { return [exec $uptime] } else { set msg "'uptime' command not found on the system"