You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
2 years ago
|
diff -urNp a/agent/mibgroup/hardware/memory/memory_linux.c b/agent/mibgroup/hardware/memory/memory_linux.c
|
||
|
--- a/agent/mibgroup/hardware/memory/memory_linux.c 2020-06-10 13:36:40.164588176 +0200
|
||
|
+++ b/agent/mibgroup/hardware/memory/memory_linux.c 2020-06-10 13:38:59.398944829 +0200
|
||
|
@@ -29,7 +29,7 @@ int netsnmp_mem_arch_load( netsnmp_cache
|
||
|
ssize_t bytes_read;
|
||
|
char *b;
|
||
|
unsigned long memtotal = 0, memfree = 0, memshared = 0,
|
||
|
- buffers = 0, cached = 0,
|
||
|
+ buffers = 0, cached = 0, sreclaimable = 0,
|
||
|
swaptotal = 0, swapfree = 0;
|
||
|
|
||
|
netsnmp_memory_info *mem;
|
||
|
@@ -127,6 +127,13 @@ int netsnmp_mem_arch_load( netsnmp_cache
|
||
|
if (first)
|
||
|
snmp_log(LOG_ERR, "No SwapTotal line in /proc/meminfo\n");
|
||
|
}
|
||
|
+ b = strstr(buff, "SReclaimable: ");
|
||
|
+ if (b)
|
||
|
+ sscanf(b, "SReclaimable: %lu", &sreclaimable);
|
||
|
+ else {
|
||
|
+ if (first)
|
||
|
+ snmp_log(LOG_ERR, "No SReclaimable line in /proc/meminfo\n");
|
||
|
+ }
|
||
|
b = strstr(buff, "SwapFree: ");
|
||
|
if (b)
|
||
|
sscanf(b, "SwapFree: %lu", &swapfree);
|
||
|
@@ -183,7 +190,7 @@ int netsnmp_mem_arch_load( netsnmp_cache
|
||
|
if (!mem->descr)
|
||
|
mem->descr = strdup("Cached memory");
|
||
|
mem->units = 1024;
|
||
|
- mem->size = cached;
|
||
|
+ mem->size = cached+sreclaimable;
|
||
|
mem->free = 0; /* Report cached size/used as equal */
|
||
|
mem->other = -1;
|
||
|
}
|