一、效果图
二、proc.num说明:
官方说明文档路径:https://www.zabbix.com/documentation/2.4/manual/config/items/itemtypes/zabbix_agent
命令 |
说明 |
proc.mem[<name>,<user>,<mode>,<cmdline>] |
Memory used by a
process. <name> process name (default: "all processes").
<user> user name (default: "all users"). <mode> possible
values: avg, max, min, sum (default). <cmdline> filter by command line (supports
regex). Example: proc.mem[,root]. 监控进程占用的内存,不支持windows |
proc.num[<name>,<user>,<state>,<cmdline>] |
Number of processes.
<name>进程名字 and <user>运行进程的用户名 same as in proc.mem item.
<state> 进程的状态 all (default), run, sleep, zomb.
<cmdline>进程名中包含的字符 filter by command line (supports regex).
Example: proc.num[apache2,www-data]. On Windows, only <name> and
<user> are supported. windows只能使用<name> and <user> |
proc_info[<process>,<attribute>,<type>] | Different information about specific process(es) |
三、查看相关需要监控进程:
1、监控用户远程桌面进程:
2、查看无需用户的进程:
3、进程IIS进程数:
四、创建监控项:
1、监控某个用户sunday桌面进程数量
使用proc.num[explorer.exe,sunday]监控指定用户sunday桌面进程数量
2、不指定用户名,可以监控svchost.exe进程总数量
proc.num[svchost.exe]
3、administrator用户所有进程数量
proc.num[,administrator]
4、IIS进程数量:
proc.num[w3wp.exe]
五、模板下载:
可以直接导模板使用。
转载于:https://blog.51cto.com/sunday208/1702593