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.
32 lines
723 B
32 lines
723 B
"""
|
|
Runs vmstat X where X is the interval in seconds
|
|
|
|
Defaults options:
|
|
job.profilers.add('vmstat', interval=1)
|
|
"""
|
|
import time, os, subprocess
|
|
from autotest_lib.client.bin import profiler
|
|
|
|
|
|
class vmstat(profiler.profiler):
|
|
version = 1
|
|
|
|
def initialize(self, interval = 1):
|
|
self.interval = interval
|
|
|
|
|
|
def start(self, test):
|
|
cmd = "/usr/bin/vmstat %d" % self.interval
|
|
logfile = open(os.path.join(test.profdir, "vmstat"), 'w')
|
|
p = subprocess.Popen(cmd, shell=True, stdout=logfile, \
|
|
stderr=subprocess.STDOUT)
|
|
self.pid = p.pid
|
|
|
|
|
|
def stop(self, test):
|
|
os.kill(self.pid, 15)
|
|
|
|
|
|
def report(self, test):
|
|
return None
|