* [PATCH] header.pl: only get memory consumption when service is running
@ 2024-09-10 21:32 Robin Roevens
0 siblings, 0 replies; only message in thread
From: Robin Roevens @ 2024-09-10 21:32 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 916 bytes --]
It probably doesn't matter much as the get_memory_consumption function just returns 0 when no pids are found. But it shouldn't even try as the mem var is never used when the service is not running.
---
| 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--git a/config/cfgroot/header.pl b/config/cfgroot/header.pl
index a90a6f481..3778c4e59 100644
--- a/config/cfgroot/header.pl
+++ b/config/cfgroot/header.pl
@@ -950,9 +950,6 @@ EOF
@pids = &General::find_pids("${process}");
}
- # Get memory consumption
- my $mem = &General::get_memory_consumption(@pids);
-
print <<EOF;
<tr>
<th scope="row">
@@ -962,6 +959,9 @@ EOF
# Running?
if (scalar @pids) {
+ # Get memory consumption
+ my $mem = &General::get_memory_consumption(@pids);
+
# Format memory
$mem = &General::formatBytes($mem);
--
2.46.0
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-09-10 21:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-10 21:32 [PATCH] header.pl: only get memory consumption when service is running Robin Roevens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox