/usr/share/weechat/perl/stats_bar.pl is in weechat-scripts 20120603-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | # This script requires weechat 0.3.0 or newer
# It will probably ONLY work on linux and only
# if the user can access the /proc filesystem
#
# History:
#
# 2009-10-13, wishbone <djwishbone@gmail.com>
# version 1: initial release
#
# This script is a machine statistics bar project.
# Currently it has three different stat options that
# can be added to any bar.
# 'inf_stat' : interface throughput statistics
# 'load_stat' : cpu load information
# 'mem_Stat' : machine memory free percentages
#
# In addition there are two new variables you
# may want to set.
#
# stats_interface : eg. eth1, en0, etc..
# /set plugins.var.perl.interface_stats.stats_interface "eth1"
# eth1 is the default
#
# stats_refresh : refresh time in sections
# It's default is set to 10 seconds.
#
#
# I usually make a new bar for this script
# eg.
# /bar add mystats window bottom 1 0 [inf_stats],[load_stats],[mem_stats]
#
# The plugin iset will make things MUCH easier for you.
# Consider getting that if you haven't already.
#
# I've tried to make this script as extensible as
# possible. It should be very simple for most
# people familar with perl to add a new monitor
# for whatever they like. If you get stuck just
# email me.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# TODO:
# Create stats_bar command to get details printed to screen or channel
# Add more monitors? (email me if you have suggestions)
###########################################################
# initialization
#
use strict;
my $VERSION = "1.0";
weechat::register("stats_bar","wishbone",$VERSION,"GPL3","statistics bar", "", "");
my ($refresh,$old_refresh) = (10,0);
my ($refresh_hook, $config_hook1, $config_hook2) = ("","","");
my ($last_in, $last_out) = (0.0,0.0);
my ($cur_in, $cur_out) = (0.0,0.0);
my %stats_data =(
inf_stats => "0",
load_stats => "0",
mem_stats => "0",
);
my $stats_interface = "";
if (!weechat::config_is_set_plugin('stats_refresh')) {
weechat::config_set_plugin('stats_refresh',$refresh);
} else {
$refresh = weechat::config_get_plugin('stats_refresh');
$old_refresh = $refresh;
}
if (!weechat::config_is_set_plugin('stats_interface')) {
# Do not edit this value. Set it in the weechat config
# options with /set.
weechat::config_set_plugin('stats_interface',"eth1");
} else {
$stats_interface = weechat::config_get_plugin('stats_interface');
}
weechat::bar_item_new('inf_stats','stats_cb',"inf_stats");
weechat::bar_item_new('load_stats','stats_cb',"load_stats");
weechat::bar_item_new('mem_stats','stats_cb',"mem_stats");
refresh_stats_cb();
$refresh_hook = weechat::hook_timer($refresh*1000, 0,0,'refresh_stats_cb', "");
$config_hook1 = weechat::hook_config("plugins.var.perl.stats_bar.*","read_settings","");
######################################################
# subs
#
sub stats_cb {
my $item = shift;
my $get_sub_s = "get_".$item;
my $get_sub = \&$get_sub_s;
# weechat::print("","$get_sub_s");
&{ $get_sub }();
# weechat::print("","$stats_data{$item}");
return "$stats_data{$item}";
}
sub refresh_stats_cb {
# get_inf_stats();
# get_load_stats();
weechat::bar_item_update('inf_stats');
weechat::bar_item_update('load_stats');
weechat::bar_item_update('mem_stats');
return weechat::WEECHAT_RC_OK;
}
sub read_settings {
$refresh = weechat::config_get_plugin('stats_refresh');
$stats_interface = weechat::config_get_plugin('stats_interface');
$refresh = 1 if $refresh < 1;
if ($refresh != $old_refresh) {
$old_refresh = $refresh;
weechat::unhook($refresh_hook);
$refresh_hook = weechat::hook_timer($refresh*1000, 0,0,'refresh_stats_cb', "");
}
return weechat::WEECHAT_RC_OK;
}
sub get_load_stats {
my @lines = ();
if (!open(DEV, "< /proc/loadavg")) {
weechat::print("","Failed to open /proc/loadavg!");
#weechat::unhook($refresh_hook);
} else {
@lines = <DEV>;
close DEV;
chomp @lines;
# @lines = grep(/^\s*($stats_interface)/,@lines);
if (@lines) {
if ($lines[0] !~ /^(\d.\d\d) (\d.\d\d) (\d.\d\d) (\d+\/\d+)/) {
weechat::print("","loadavg did not fit expected pattern");
#weechat::unhook($refresh_hook);
} else {
$stats_data{load_stats} = "l:$1 $2 $3 $4";
}
} else {
weechat::print("","nothing in /proc/loadavg");
#weechat::unhook($refresh_hook);
}
}
}
sub get_inf_stats {
my @lines = ();
my ($old_in, $old_out) = ($last_in, $last_out);
if (!open(DEV, "< /proc/net/dev")) {
weechat::print("","Failed to open proc/net/dev!");
#weechat::unhook($refresh_hook);
} else {
@lines = <DEV>;
close DEV;
chomp @lines;
@lines = grep(/^\s*($stats_interface)/,@lines);
if (@lines) {
if ($lines[0] !~ /^(\s*)(.*):(\d+)\s+\d+\s+\d+\s+\d+\s+\d+\s+\d+\s+\d+\s+\d+\s+(\d+)/) {
} else {
$last_in = $3;
$last_out = $4;
if ($old_out==0){return;}
$cur_out=($last_out-$old_out) / ($refresh*1024);
$cur_in=($last_in-$old_in) / ($refresh*1024);
$stats_data{inf_stats} = sprintf("i:%.2f o:%.2f",$cur_in, $cur_out);
}
} else {
weechat::print("","$stats_interface interface not found. Please check stats_bar plugin variable!");
#weechat::unhook($refresh_hook);
}
}
}
sub get_mem_stats {
my @lines = ();
my ($memtotal, $memfree, $swaptotal, $swapfree, $mem_percentage, $swap_percentage) = (1,1,1,1,1,1);
if (!open(DEV, "< /proc/meminfo")) {
weechat::print("","Failed to open /proc/meminfo!");
#weechat::unhook($refresh_hook);
} else {
@lines = <DEV>;
close DEV;
chomp @lines;
@lines = grep(/(MemTotal|MemFree|SwapTotal|SwapFree)/,@lines);
if (@lines == 4) {
($memtotal) = ($lines[0] =~ /^MemTotal:\s+(\d+)/);
($memfree) = ($lines[1] =~ /^MemFree:\s+(\d+)/);
($swaptotal) = ($lines[2] =~ /^SwapTotal:\s+(\d+)/);
($swapfree) = ($lines[3] =~ /^SwapFree:\s+(\d+)/);
$mem_percentage = ($memfree/$memtotal)*100;
$swap_percentage = ($swapfree/$swaptotal)*100;
$stats_data{mem_stats} = sprintf("m:%.0f%% s:%.0f%%",$mem_percentage, $swap_percentage);
} else {
weechat::print("","Unexpected output from /proc/meminfo.");
#weechat::unhook($refresh_hook);
}
}
}
|