Physical memory two values

Hi,

In my Physical memory I see two values (left en right). I understand the 12%, but I do not understand the “14%”.
It occurs in my Debian-systems but also in other systems such as the Palo PA-220.

====================================

Component Version
LibreNMS 1.70.1-6-g9ccb70733
DB Schema 2020_11_02_164331_add_powerstate_enum_to_vminfo (191)
PHP 7.3.19-1~deb10u1
Python 3.7.3
MySQL 10.3.27-MariaDB-0+deb10u1
RRDTool 1.7.1
SNMP NET-SNMP 5.7.3
====================================

[OK] Composer Version: 2.0.8
[OK] Dependencies up-to-date.
[OK] Database connection successful
[OK] Database schema correct

Interesting - this happens to our PA as well. Here is some relevant data:

PA-820
PanOS 10.0.3
Object ID: .1.3.6.1.4.1.25461.2.3.36

./validate.php
====================================
Component | Version
--------- | -------
LibreNMS  | 1.70.1-6-g9ccb70733
DB Schema | 2020_10_12_095504_mempools_add_oids (191)
PHP       | 7.4.9
Python    | 3.8.6
MySQL     | 10.3.25-MariaDB-0ubuntu1
RRDTool   | 1.7.2
SNMP      | NET-SNMP 5.8
====================================

[OK]    Composer Version: 2.0.8
[OK]    Dependencies up-to-date.
[OK]    Database connection successful
[OK]    Database schema correct

includes/html/pages/device/overview/mempools.inc.php

Looking at the code, the bar can be one of two values:

"$mempool->mempool_perc%", "$available_used_all%"

or

"$mempool->mempool_perc%", ''

The value displayed by the bar itself seems to always be mempool_perc.

What is $available_used_all?

$available_used_all = round(($mempool->mempool_used + $buffers->mempool_used + $cached->mempool_used) / $mempool->mempool_total * 100);

Thanks for the explanation, it is now clear to me where this second value comes from.

This topic was automatically closed 730 days after the last reply. New replies are no longer allowed.