summaryrefslogtreecommitdiff
path: root/doc/JAILS-MIB.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/JAILS-MIB.txt')
-rw-r--r--doc/JAILS-MIB.txt13
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/JAILS-MIB.txt b/doc/JAILS-MIB.txt
index d4fc1b7..0b07843 100644
--- a/doc/JAILS-MIB.txt
+++ b/doc/JAILS-MIB.txt
@@ -75,7 +75,8 @@ JailEntry ::=
jailThreads Integer32,
jailCpuTime TimeTicks,
jailDiskSpace Counter64,
- jailDiskFiles Integer32
+ jailDiskFiles Counter64,
+ jailResidentSize Counter64
}
jailIndex OBJECT-TYPE
@@ -149,10 +150,18 @@ jailDiskSpace OBJECT-TYPE
::= { jailEntry 30 }
jailDiskFiles OBJECT-TYPE
- SYNTAX Integer32
+ SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of files (inodes) in this jail. Zero means unknown."
::= { jailEntry 31 }
+jailResidentSize OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION "The sum of the resident set size (RSS) of all processes in jail. An inaccurate representation of memory usage of the jail."
+ ::= { jailEntry 40 }
+
+
END