diff --git a/README.md b/README.md
index b4ef760..3e658e4 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ collected worng without calculating buffers and cache memory.
Zabbix have
[bug
report]([https://support.zabbix.com/browse/ZBX-12164](https://support.zabbix.com/browse/ZBX-12164)),
but it seems that no one don’t want to fix it soon.
So let’s fix it together
-byself.
+by ourselves.
First we need to create new user parameter for zabbix, I used `ct.memory.size`
name similarly built-in `vm.memory.size` parameter, but with my own single line
@@ -74,6 +74,13 @@ It will provide you support for next parameters:
ct.cpu.load[percpu,avg5]
ct.cpu.load[percpu,avg15]
+Now add aliases to make the new/correct data available under the standard item names:
+
+ Alias=vm.memory.size:ct.memory.size
+ Alias=system.swap.size:ct.swap.size
+ Alias=system.cpu.load:ct.cpu.load
+ Alias=system.uptime:ct.uptime
+
Don’t forget to restart `zabbix-agent.service` after
Ok, now we can check is our parameter working from zabbix server:
@@ -81,26 +88,12 @@ Ok, now we can check is our parameter working from zabbix server:
$ zabbix_get -s -k ct.memory.size[available]
1709940736
-Ok it’s working.
-
-Now let’s configure zabbix for use them. In Zabbix Interface:
-
-Go Configuration → Templtes
+This new value should now also be available under the standard name:
-* Make full copy “Template OS Linux” to “Template Linux Container”
-* Open “Template Linux Container” → Items
-* Replace all `vm.memory.size` items to `ct.memory.size`.
-* Replace all `system.swap.size` items to `ct.swap.size`:
You also need to
-remove commas in key filed here. Example:
replace `system.swap.size[,free]`
-to `ct.swap.size[free]`
-* Replace all `system.cpu.load[percpu,*]` items to `ct.cpu.load[percpu,*]`.
-
-Or just download and import [my zabbix template](https://github.com/kvaps/zabbix-linux-container-template/blob/master/zbx_linux_container_template.xml).
-
-Next, go to the Configuration → Hosts
+ $ zabbix_get -s -k vm.memory.size[available]
+ 1709940736
-* Unlink and clear “Template OS Linux” from your hosts
-* Attach “Template Linux Container”
+Ok it’s working.
Wait some time and check the graphics:
diff --git a/zabbix_container.conf b/zabbix_container.conf
index 3bfbff5..02cf75e 100644
--- a/zabbix_container.conf
+++ b/zabbix_container.conf
@@ -1,4 +1,14 @@
UserParameter=ct.memory.size[*],free -b | awk 'NR==2 {total=$ 2; used=($ 3+$ 5); pused=(($ 3+$ 5)*100/$ 2); free=$ 4; pfree=($ 4*100/$ 2); shared=$ 5; buffers=$ 6; cached=$ 6; available=$ 7; pavailable=($ 7*100/$ 2); if("$1" == "") {printf("%.0f", total )} else {printf("%.0f", $1 "" )} }'
-UserParameter=ct.swap.size[*],free -b | awk 'NR==3 {total=$ 2; used=$ 3; free=$ 4; pfree=($ 4*100/$ 2); pused=($ 3*100/$ 2); if("$1" == "") {printf("%.0f", free )} else {printf("%.0f", $1 "" )} }'
+Alias=vm.memory.size:ct.memory.size
+Alias=vm.memory.size[*]:ct.memory.size[*]
+
+UserParameter=ct.swap.size[*],free -b | awk 'NR==3 {total=$ 2; used=$ 3; free=$ 4; pfree=($ 4*100/$ 2); pused=($ 3*100/$ 2); if("$2" == "") {printf("%.0f", free )} else {printf("%.0f", $2 "" )} }'
+Alias=system.swap.size:ct.swap.size
+Alias=system.swap.size[*]:ct.swap.size[*]
+
UserParameter=ct.cpu.load[*],cut -d" " -f1-3 /proc/loadavg | awk -F'[, ]+' '{avg1=$(NF-2); avg5=$(NF-1); avg15=$(NF)}{print $2/'$(nproc)'}'
+Alias=system.cpu.load:ct.cpu.load
+Alias=system.cpu.load[*]:ct.cpu.load[*]
+
UserParameter=ct.uptime,cut -d"." -f1 /proc/uptime
+Alias=system.uptime:ct.uptime
diff --git a/zbx_linux_container_template.xml b/zbx_linux_container_template.xml
deleted file mode 100644
index 017bcd3..0000000
--- a/zbx_linux_container_template.xml
+++ /dev/null
@@ -1,2487 +0,0 @@
-
-
- 3.4
- 2018-01-25T15:03:17Z
-
-
- Templates
-
-
-
-
- Template Linux Container
- Template Linux Container
-
-
-
- Templates
-
-
-
-
- CPU
-
-
- Filesystems
-
-
- General
-
-
- Memory
-
-
- Network interfaces
-
-
- OS
-
-
- Performance
-
-
- Processes
-
-
- Security
-
-
-
- -
- Processor load (1 min average per core)
- 0
-
-
- ct.cpu.load[percpu,avg1]
- 1m
- 1w
- 365d
- 0
- 0
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The processor load is calculated as system CPU load divided by number of CPU cores.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- Processor load (5 min average per core)
- 0
-
-
- ct.cpu.load[percpu,avg5]
- 1m
- 1w
- 365d
- 0
- 0
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The processor load is calculated as system CPU load divided by number of CPU cores.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- Processor load (15 min average per core)
- 0
-
-
- ct.cpu.load[percpu,avg15]
- 1m
- 1w
- 365d
- 0
- 0
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The processor load is calculated as system CPU load divided by number of CPU cores.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- Available memory
- 0
-
-
- ct.memory.size[available]
- 1m
- 1w
- 365d
- 0
- 3
-
- B
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- Available memory is defined as free+cached+buffers memory.
- 0
-
-
- Memory
-
-
-
-
-
-
-
-
- -
- Total memory
- 0
-
-
- ct.memory.size[total]
- 1h
- 1w
- 365d
- 0
- 3
-
- B
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Memory
-
-
-
-
-
-
-
-
- -
- Used swap space in %
- 0
-
-
- ct.swap.size[pused]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Memory
-
-
-
-
-
-
-
-
- -
- Total swap space
- 0
-
-
- ct.swap.size[total]
- 1h
- 1w
- 365d
- 0
- 3
-
- B
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Memory
-
-
-
-
-
-
-
-
- -
- Used swap space
- 0
-
-
- ct.swap.size[used]
- 1m
- 1w
- 365d
- 0
- 3
-
- B
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Memory
-
-
-
-
-
-
-
-
- -
- Maximum number of opened files
- 0
-
-
- kernel.maxfiles
- 1h
- 1w
- 365d
- 0
- 3
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf.
- 0
-
-
- OS
-
-
-
-
-
-
-
-
- -
- Maximum number of processes
- 0
-
-
- kernel.maxproc
- 1h
- 1w
- 365d
- 0
- 3
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf.
- 0
-
-
- OS
-
-
-
-
-
-
-
-
- -
- Number of running processes
- 0
-
-
- proc.num[,,run]
- 1m
- 1w
- 365d
- 0
- 3
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- Number of processes in running state.
- 0
-
-
- Processes
-
-
-
-
-
-
-
-
- -
- Number of processes
- 0
-
-
- proc.num[]
- 1m
- 1w
- 365d
- 0
- 3
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- Total number of processes in any state.
- 0
-
-
- Processes
-
-
-
-
-
-
-
-
- -
- Host boot time
- 0
-
-
- system.boottime
- 10m
- 1w
- 365d
- 0
- 3
-
- unixtime
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- General
-
-
- OS
-
-
-
-
-
-
-
-
- -
- Interrupts per second
- 0
-
-
- system.cpu.intr
- 1m
- 1w
- 365d
- 0
- 3
-
- ips
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
- 10
-
-
-
-
-
-
- -
- Context switches per second
- 0
-
-
- system.cpu.switches
- 1m
- 1w
- 365d
- 0
- 3
-
- sps
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
- 10
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,idle]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The time the CPU has spent doing nothing.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,interrupt]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The amount of time the CPU has been servicing hardware interrupts.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,iowait]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- Amount of time the CPU has been waiting for I/O to complete.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,nice]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The time the CPU has spent running users' processes that have been niced.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,softirq]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The amount of time the CPU has been servicing software interrupts.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,steal]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine).
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,system]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The time the CPU has spent running the kernel and its processes.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- CPU $2 time
- 0
-
-
- system.cpu.util[,user]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The time the CPU has spent running users' processes that are not niced.
- 0
-
-
- CPU
-
-
- Performance
-
-
-
-
-
-
-
-
- -
- Host name
- 0
-
-
- system.hostname
- 1h
- 1w
- 0
- 0
- 1
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- System host name.
- 3
-
-
- General
-
-
- OS
-
-
-
-
-
-
-
-
- -
- Host local time
- 0
-
-
- system.localtime
- 1m
- 1w
- 365d
- 0
- 3
-
- unixtime
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- General
-
-
- OS
-
-
-
-
-
-
-
-
- -
- System information
- 0
-
-
- system.uname
- 1h
- 1w
- 0
- 0
- 1
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- The information as normally returned by 'uname -a'.
- 5
-
-
- General
-
-
- OS
-
-
-
-
-
-
-
-
- -
- System uptime
- 0
-
-
- system.uptime
- 10m
- 1w
- 365d
- 0
- 3
-
- uptime
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- General
-
-
- OS
-
-
-
-
-
-
-
-
- -
- Number of logged in users
- 0
-
-
- system.users.num
- 1m
- 1w
- 365d
- 0
- 3
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
- Number of users who are currently logged in.
- 0
-
-
- OS
-
-
- Security
-
-
-
-
-
-
-
-
- -
- Checksum of $1
- 0
-
-
- vfs.file.cksum[/etc/passwd]
- 1h
- 1w
- 365d
- 0
- 3
-
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Security
-
-
-
-
-
-
-
-
-
-
-
- Network interface discovery
- 0
-
-
- net.if.discovery
- 1h
- 0
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
-
- {#IFNAME}
- @Network interfaces for discovery
- 8
- A
-
-
-
- 30d
- Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery".
-
-
- Incoming network traffic on $1
- 0
-
-
- net.if.in[{#IFNAME}]
- 1m
- 1w
- 365d
- 0
- 3
-
- bps
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Network interfaces
-
-
-
-
-
-
- 10
-
-
-
- 1
- 8
-
-
-
-
-
-
-
- Outgoing network traffic on $1
- 0
-
-
- net.if.out[{#IFNAME}]
- 1m
- 1w
- 365d
- 0
- 3
-
- bps
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Network interfaces
-
-
-
-
-
-
- 10
-
-
-
- 1
- 8
-
-
-
-
-
-
-
-
-
-
- Network traffic on {#IFNAME}
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 5
- 00AA00
- 0
- 2
- 0
- -
- Template Linux Container
- net.if.in[{#IFNAME}]
-
-
-
- 1
- 5
- 3333FF
- 0
- 2
- 0
- -
- Template Linux Container
- net.if.out[{#IFNAME}]
-
-
-
-
-
-
-
-
-
- Mounted filesystem discovery
- 0
-
-
- vfs.fs.discovery
- 1h
- 0
-
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
-
- {#FSTYPE}
- @File systems for discovery
- 8
- A
-
-
-
- 30d
- Discovery of file systems of different types as defined in global regular expression "File systems for discovery".
-
-
- Free inodes on $1 (percentage)
- 0
-
-
- vfs.fs.inode[{#FSNAME},pfree]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Filesystems
-
-
-
-
-
-
-
-
-
-
- Free disk space on $1
- 0
-
-
- vfs.fs.size[{#FSNAME},free]
- 1m
- 1w
- 365d
- 0
- 3
-
- B
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Filesystems
-
-
-
-
-
-
-
-
-
-
- Free disk space on $1 (percentage)
- 0
-
-
- vfs.fs.size[{#FSNAME},pfree]
- 1m
- 1w
- 365d
- 0
- 0
-
- %
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Filesystems
-
-
-
-
-
-
-
-
-
-
- Total disk space on $1
- 0
-
-
- vfs.fs.size[{#FSNAME},total]
- 1h
- 1w
- 365d
- 0
- 3
-
- B
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Filesystems
-
-
-
-
-
-
-
-
-
-
- Used disk space on $1
- 0
-
-
- vfs.fs.size[{#FSNAME},used]
- 1m
- 1w
- 365d
- 0
- 3
-
- B
-
-
- 0
- 0
-
- 0
-
-
-
- 0
-
-
-
-
-
-
- 0
-
-
- Filesystems
-
-
-
-
-
-
-
-
-
-
-
-
- {Template Linux Container:vfs.fs.size[{#FSNAME},pfree].last(0)}<20
- 0
-
- Free disk space is less than 20% on volume {#FSNAME}
- 0
-
-
- 0
- 2
-
- 0
- 0
-
-
-
-
- {Template Linux Container:vfs.fs.inode[{#FSNAME},pfree].last(0)}<20
- 0
-
- Free inodes is less than 20% on volume {#FSNAME}
- 0
-
-
- 0
- 2
-
- 0
- 0
-
-
-
-
-
-
- Disk space usage {#FSNAME}
- 600
- 340
- 0.0000
- 100.0000
- 0
- 0
- 2
- 1
- 1
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- C80000
- 0
- 2
- 2
- -
- Template Linux Container
- vfs.fs.size[{#FSNAME},total]
-
-
-
- 1
- 0
- 00C800
- 0
- 2
- 0
- -
- Template Linux Container
- vfs.fs.size[{#FSNAME},free]
-
-
-
-
-
-
-
-
-
-
-
-
-
- Template App Zabbix Agent
-
-
-
-
- System performance
- 2
- 3
-
-
- 0
- 500
- 120
- 0
- 0
- 1
- 1
- 0
- 1
- 0
-
-
- 0
- 0
-
- CPU load
- Template Linux Container
-
- 3
-
-
-
- 0
- 500
- 148
- 1
- 0
- 1
- 1
- 0
- 1
- 0
-
-
- 0
- 0
-
- CPU utilization
- Template Linux Container
-
- 3
-
-
-
- 0
- 500
- 100
- 0
- 1
- 1
- 1
- 0
- 0
- 0
-
-
- 0
- 0
-
- Memory usage
- Template Linux Container
-
- 3
-
-
-
- 0
- 500
- 300
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
-
- 0
- 0
-
- Swap usage
- Template Linux Container
-
- 3
-
-
-
- 1
- 500
- 100
- 0
- 2
- 1
- 1
- 0
- 0
- 0
-
-
- 0
- 0
-
- proc.num[]
- Template Linux Container
-
- 3
-
-
-
- 1
- 500
- 100
- 1
- 2
- 1
- 1
- 0
- 0
- 0
-
-
- 0
- 0
-
- proc.num[,,run]
- Template Linux Container
-
- 3
-
-
-
-
-
-
-
-
-
- {Template Linux Container:vfs.file.cksum[/etc/passwd].diff(0)}>0
- 0
-
- /etc/passwd has been changed on {HOST.NAME}
- 0
-
-
- 0
- 2
-
- 0
- 0
-
-
-
-
- {Template Linux Container:kernel.maxfiles.last(0)}<1024
- 0
-
- Configured max number of opened files is too low on {HOST.NAME}
- 0
-
-
- 0
- 1
-
- 0
- 0
-
-
-
-
- {Template Linux Container:kernel.maxproc.last(0)}<256
- 0
-
- Configured max number of processes is too low on {HOST.NAME}
- 0
-
-
- 0
- 1
-
- 0
- 0
-
-
-
-
- {Template Linux Container:system.cpu.util[,iowait].avg(5m)}>75
- 0
-
- Disk I/O is overloaded on {HOST.NAME}
- 0
-
-
- 0
- 2
- OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system.
- 0
- 0
-
-
-
-
- {Template Linux Container:system.uname.diff(0)}>0
- 0
-
- Host information was changed on {HOST.NAME}
- 0
-
-
- 0
- 1
-
- 0
- 0
-
-
-
-
- {Template Linux Container:system.hostname.diff(0)}>0
- 0
-
- Hostname was changed on {HOST.NAME}
- 0
-
-
- 0
- 1
-
- 0
- 0
-
-
-
-
- {Template Linux Container:ct.memory.size[available].last(0)}<20M
- 0
-
- Lack of available memory on server {HOST.NAME}
- 0
-
-
- 0
- 3
-
- 0
- 0
-
-
-
-
- {Template Linux Container:ct.swap.size[pused].last(0)}>50
- 0
-
- Lack of free swap space on {HOST.NAME}
- 0
-
-
- 1
- 2
- It probably means that the systems requires more physical memory.
- 0
- 0
-
-
-
-
- {Template Linux Container:ct.cpu.load[percpu,avg1].avg(5m)}>20
- 0
-
- Processor load is too high on {HOST.NAME}
- 0
-
-
- 0
- 2
-
- 0
- 0
-
-
-
-
- {Template Linux Container:proc.num[].avg(5m)}>1000
- 0
-
- Too many processes on {HOST.NAME}
- 0
-
-
- 0
- 2
-
- 0
- 0
-
-
-
-
- {Template Linux Container:proc.num[,,run].avg(5m)}>100
- 0
-
- Too many processes running on {HOST.NAME}
- 0
-
-
- 0
- 2
-
- 0
- 0
-
-
-
-
- {Template Linux Container:system.uptime.change(0)}<0
- 0
-
- {HOST.NAME} has just been restarted
- 0
-
-
- 0
- 1
-
- 0
- 0
-
-
-
-
-
-
- CPU jumps
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- 009900
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.switches
-
-
-
- 1
- 0
- 000099
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.intr
-
-
-
-
-
- CPU load
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 0
- 0
- 0
-
-
- 0
- 0
- 009900
- 0
- 2
- 0
- -
- Template Linux Container
- ct.cpu.load[percpu,avg1]
-
-
-
- 1
- 0
- 000099
- 0
- 2
- 0
- -
- Template Linux Container
- ct.cpu.load[percpu,avg5]
-
-
-
- 2
- 0
- 990000
- 0
- 2
- 0
- -
- Template Linux Container
- ct.cpu.load[percpu,avg15]
-
-
-
-
-
- CPU utilization
- 900
- 200
- 0.0000
- 100.0000
- 1
- 0
- 1
- 1
- 0
- 0.0000
- 0.0000
- 1
- 1
- 0
- 0
-
-
- 0
- 1
- FF5555
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,steal]
-
-
-
- 1
- 1
- 55FF55
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,softirq]
-
-
-
- 2
- 1
- 009999
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,interrupt]
-
-
-
- 3
- 1
- 990099
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,nice]
-
-
-
- 4
- 1
- 999900
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,iowait]
-
-
-
- 5
- 1
- 990000
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,system]
-
-
-
- 6
- 1
- 000099
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,user]
-
-
-
- 7
- 1
- 009900
- 0
- 2
- 0
- -
- Template Linux Container
- system.cpu.util[,idle]
-
-
-
-
-
- Memory usage
- 900
- 200
- 0.0000
- 100.0000
- 1
- 1
- 0
- 1
- 0
- 0.0000
- 0.0000
- 1
- 2
- 0
-
- Template Linux Container
- ct.memory.size[total]
-
-
-
- 0
- 1
- BB0000
- 0
- 2
- 0
- -
- Template Linux Container
- ct.memory.size[total]
-
-
-
- 1
- 1
- 00C800
- 0
- 2
- 0
- -
- Template Linux Container
- ct.memory.size[available]
-
-
-
-
-
- Swap usage
- 600
- 340
- 0.0000
- 0.0000
- 0
- 0
- 2
- 1
- 0
- 0.0000
- 0.0000
- 0
- 0
- 0
- 0
-
-
- 0
- 0
- AA0000
- 0
- 2
- 0
- -
- Template Linux Container
- ct.swap.size[used]
-
-
-
- 1
- 0
- 00AA00
- 0
- 2
- 2
- -
- Template Linux Container
- ct.swap.size[total]
-
-
-
-
-
-