-
Notifications
You must be signed in to change notification settings - Fork 6
/
top1000.pl
executable file
·186 lines (165 loc) · 4.48 KB
/
top1000.pl
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
#!/usr/bin/perl -w
#
# RRD script to display top1000.org usenet statistics
#
# Copyright (C) 2011, 2015, 2017 Christian Garbs <[email protected]>
# Licensed under GNU GPL v3 or later.
#
# This file is part of my rrd scripts (https://github.com/mmitch/rrd).
#
# 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/>.
#
#
# This script should be run once a day.
#
use strict;
use warnings;
use RRDs;
use LWP::Simple;
# parse configuration file
my %conf;
eval(`cat ~/.rrd-conf.pl`);
die $@ if $@;
# set variables
my $datafile = "$conf{DBPATH}/top1000.rrd";
my $picbase = "$conf{OUTPATH}/top1000-";
my $mysite = $conf{TOP1000_ME};
my @sites = @{$conf{TOP1000_SITES}};
if (@sites < 10) {
$sites[9] = undef;
}
my $url_participants = 'http://top1000.anthologeek.net/participants.current.txt';
my $url_top1000 = 'http://top1000.anthologeek.net/top1000.current.txt';
# global error variable
my $ERR;
# get graph minimum time ($DETAIL_TIME in rrd_runall.sh)
my $MINTIME = 1;
if (defined $ARGV[0])
{
$MINTIME = shift @ARGV;
}
# whoami?
my $hostname = `/bin/hostname`;
chomp $hostname;
# generate database if absent
if ( ! -e $datafile ) {
RRDs::create($datafile,
"--step=86400",
"--start=1302345000",
"DS:submitted:COUNTER:160000:0:U",
"DS:site0:GAUGE:160000:0:1000",
"DS:site1:GAUGE:160000:0:1000",
"DS:site2:GAUGE:160000:0:1000",
"DS:site3:GAUGE:160000:0:1000",
"DS:site4:GAUGE:160000:0:1000",
"DS:site5:GAUGE:160000:0:1000",
"DS:site6:GAUGE:160000:0:1000",
"DS:site7:GAUGE:160000:0:1000",
"DS:site8:GAUGE:160000:0:1000",
"DS:site9:GAUGE:160000:0:1000",
'RRA:AVERAGE:0.5:1:370',
'RRA:AVERAGE:0.5:7:288',
'RRA:MIN:0.5:1:370',
'RRA:MIN:0.5:7:288',
);
$ERR=RRDs::error;
die "ERROR while creating $datafile: $ERR\n" if $ERR;
print "created $datafile\n";
}
# get data
my $content = get($url_participants) or die "Couldn't get $url_participants!";
my $submitted = 0;
foreach my $line (split /\n/, $content) {
if ($line =~ /^(\d+)\s+(\S+)/) {
if ($2 eq $mysite) {
$submitted = $1;
}
}
}
$content = get($url_top1000) or die "Couldn't get $url_top1000!";
my %site;
foreach my $line (split /\n/, $content) {
if ($line =~ /^\s+(\d+)\s+(\d+\.\d+)\s+(\S+)/) {
my ($pos, $weight, $site) = ($1, $2, $3);
$site{$site} = $pos;
}
}
# update database
RRDs::update($datafile,
"N:$submitted:" . join (':', map { (defined $_ and defined $site{$_}) ? $site{$_} : 'U' } @sites )
);
$ERR=RRDs::error;
die "ERROR while updating $datafile: $ERR\n" if $ERR;
# set up colorspace
my $drawn = 0;
my @colors = qw(
00F0F0
F0F040
F000F0
00F000
0000F0
000000
AAAAAA
F00000
F09000
C0C0C0
009000
FF0000
000090
900090
009090
909000
E00070
2020F0
FF00FF
);
# draw which values?
my (@def, @line);
foreach my $site (@sites) {
if (defined $site) {
my $color = $colors[$drawn];
push @def, sprintf 'DEF:site%d_=%s:site%d:AVERAGE', $drawn, $datafile, $drawn;
push @def, sprintf 'CDEF:site%d=0,site%d_,-', $drawn, $drawn;
push @line, sprintf 'LINE2:site%d#%s:%s', $drawn, $color, $site;
$drawn ++;
}
}
# draw pictures
foreach ( [604800, "week"], [31536000, "year"] ) {
my ($time, $scale) = @{$_};
next if $time < $MINTIME;
RRDs::graph($picbase . $scale . ".png",
"--start=-${time}",
'--lazy',
'--imgformat=PNG',
'--upper-limit=0',
'--lower-limit=-1000',
"--title=${hostname} usenet top1000 stats (last $scale)",
"--width=$conf{GRAPH_WIDTH}",
"--height=$conf{GRAPH_HEIGHT}",
'--color=BACK#f3f3f3f3',
'--color=SHADEA#f3f3f3f3',
'--color=SHADEB#f3f3f3f3',
# "DEF:submit_avg_=${datafile}:submitted:AVERAGE",
# "DEF:submit_min_=${datafile}:submitted:MIN",
# 'CDEF:submit_avg=submit_avg_,10,/',
# 'CDEF:submit_min=submit_min_,10,/',
@def,
# 'LINE2:submit_min#FFD0D0:min submit',
# 'LINE1:submit_avg#D0FFD0:avg submit',
@line,
);
$ERR=RRDs::error;
die "ERROR while drawing $datafile $time: $ERR\n" if $ERR;
}