一个salt关于psutil的接口,一个系统和进程的类库。参见http://code.google.com/p/psutil.
depends: |
|
---|
salt.modules.ps.
boot_time
(time_format=None)¶返回自启动以来经过的秒数。
CLI 范例:
Optionally specify a strftime format string. Use
time_format='%c'
to get a nicely-formatted locale specific date and
time (i.e. Fri May 2 19:08:32 2014
).
2014.1.4 新版功能.
salt '*' ps.boot_time
salt.modules.ps.
cpu_percent
(interval=0.1, per_cpu=False)¶返回CPU繁忙时间的百分比。
CLI 范例:
salt '*' ps.cpu_percent
salt.modules.ps.
cpu_times
(per_cpu=False)¶Return the percent of time the CPU spends in each state, e.g. user, system, idle, nice, iowait, irq, softirq.
CLI 范例:
salt '*' ps.cpu_times
salt.modules.ps.
disk_io_counters
(device=None)¶Return disk I/O statistics.
CLI 范例:
salt '*' ps.disk_io_counters
salt '*' ps.disk_io_counters device=sda1
salt.modules.ps.
disk_partition_usage
(all=False)¶Return a list of disk partitions plus the mount point, filesystem and usage statistics.
CLI 范例:
salt '*' ps.disk_partition_usage
salt.modules.ps.
disk_partitions
(all=False)¶Return a list of disk partitions and their device, mount point, and filesystem type.
CLI 范例:
salt '*' ps.disk_partitions
salt.modules.ps.
disk_usage
(path)¶Given a path, return a dict listing the total available space as well as the free space, and used space.
CLI 范例:
salt '*' ps.disk_usage /home
salt.modules.ps.
get_pid_list
()¶Return a list of process ids (PIDs) for all running processes.
CLI 范例:
salt '*' ps.get_pid_list
salt.modules.ps.
get_users
()¶Return logged-in users.
CLI 范例:
salt '*' ps.get_users
salt.modules.ps.
kill_pid
(pid, signal=15)¶Kill a process by PID.
salt 'minion' ps.kill_pid pid [signal=signal_number]
Example:
Send SIGKILL to process with PID 2000:
salt 'minion' ps.kill_pid 2000 signal=9
salt.modules.ps.
network_io_counters
(interface=None)¶Return network I/O statistics.
CLI 范例:
salt '*' ps.network_io_counters
salt '*' ps.network_io_counters interface=eth0
salt.modules.ps.
num_cpus
()¶Return the number of CPUs.
CLI 范例:
salt '*' ps.num_cpus
salt.modules.ps.
pgrep
(pattern, user=None, full=False)¶Return the pids for processes matching a pattern.
If full is true, the full command line is searched for a match, otherwise only the name of the command is searched.
salt '*' ps.pgrep pattern [user=username] [full=(true|false)]
Examples:
Find all httpd processes on all 'www' minions:
salt 'www.*' ps.pgrep httpd
Find all bash processes owned by user 'tom':
salt '*' ps.pgrep bash user=tom
salt.modules.ps.
pkill
(pattern, user=None, signal=15, full=False)¶Kill processes matching a pattern.
salt '*' ps.pkill pattern [user=username] [signal=signal_number] \
[full=(true|false)]
Examples:
Send SIGHUP to all httpd processes on all 'www' minions:
salt 'www.*' ps.pkill httpd signal=1
Send SIGKILL to all bash processes owned by user 'tom':
salt '*' ps.pkill bash signal=9 user=tom
salt.modules.ps.
proc_info
(pid, attrs=None)¶Return a dictionary of information for a process id (PID).
CLI 范例:
salt '*' ps.proc_info 2322
salt '*' ps.proc_info 2322 attrs='["pid", "name"]'
salt.modules.ps.
swap_memory
()¶2014.7.0 新版功能.
Return a dict that describes swap memory statistics.
注解
This function is only available in psutil version 0.6.0 and above.
CLI 范例:
salt '*' ps.swap_memory
salt.modules.ps.
top
(num_processes=5, interval=3)¶Return a list of top CPU consuming processes during the interval. num_processes = return the top N CPU consuming processes interval = the number of seconds to sample CPU usage over
CLI范例:
salt '*' ps.top
salt '*' ps.top 5 10
salt.modules.ps.
total_physical_memory
()¶Return the total number of bytes of physical memory.
CLI 范例:
salt '*' ps.total_physical_memory
salt.modules.ps.
virtual_memory
()¶2014.7.0 新版功能.
Return a dict that describes statistics about system memory usage.
注解
This function is only available in psutil version 0.6.0 and above.
CLI 范例:
salt '*' ps.virtual_memory