Python で小さな監視プログラムを作成しようとしています。
systemmonitor にアクセスして、WiFi データ転送速度、ディスク書き込み速度などのデータを取得しようとしています。
systemmonitor にアクセスする例を教えてもらえますか?
textmon の dataengine ページで見つけた JavaScript の例へのリンクを次に示します。
http://maikbeckmann.github.io/plasma-textmon/dataengines.html#sec-6-3-1
var sink = {
dataUpdated: function (name, data) {
if (!data["value"]) { return; }
print(data["value"] + data["units"]);
}
};
var engine = dataEngine("systemmonitor");
if ( engine.connectSource("network/interfaces/wlan0/receiver/data", sink, 1000) ) {
print("connection established");
} else {
print("connection attempt failed");
}
print("main.js ends here");
connection established
main.js ends here
124KB/s
97KB/s
131KB/s