经过多次尝试,此代码仍然失败。我想要做的是将“cpu stats”作为 JSON 发送到服务器。问题是,仅 cpustats 就可以了 - 只有 1 个具有不同 cpupercentages 的命名元组 - 用户、空闲等。但是“percpu”返回每个 cpu 的命名元组(用户、空闲等)的列表。所以我无法将列表转换为字典。我正在尝试遍历列表,然后将每个 namedtuple 发送到服务器。(供参考 - 我使用的是 2.7.5)。该脚本运行良好,无需尝试循环和尝试/除 - 它返回“200 OK”。但是现在当我运行它时,它甚至不会返回错误,任何响应消息/状态。就好像脚本只是绕过了整个 try/except 块。只是最后的“打印 cpuStats”行按应有的方式提供。
import psutil
import socket
import time
import sample
import json
import httplib
import urllib
serverHost = sample.host
port = sample.port
thisClient = socket.gethostname()
currentTime = int(time.time())
s = socket.socket()
s.connect((serverHost,port))
cpuStats = psutil.cpu_times_percent(percpu=True)
print cpuStats
def loop_thru_cpus():
for i in cpuStats:
cpuStats = cpuStats[i]
cpuStats = json.dumps(cpuStats._asdict())
try:
command = 'put cpu.usr ' + str(currentTime) + " " + str(cpuStats[0]) + "host ="+ thisClient+ "/n"
s.sendall(command)
command = 'put cpu.nice ' + str(currentTime) + " " + str(cpuStats[1]) + "host ="+ thisClient+ "/n"
s.sendall(command)
command = 'put cpu.sys ' + str(currentTime) + " " + str(cpuStats[2]) + "host ="+ thisClient+ "/n"
s.sendall(command)
command = 'put cpu.idle ' + str(currentTime) + " " + str(cpuStats[3]) + "host ="+ thisClient+ "/n"
s.sendall(command)
params = urllib.urlencode({'cpuStats': cpuStats, 'thisClient': 1234})
headers = httplib.HTTPConnection(serverHost, port)
conn.request("POST", "", params, headers)
response = conn.response()
print response.status, response.reason
except IndexError:
break
i = i+1
s.close()