summaryrefslogtreecommitdiffstats
path: root/weblog-adhocquery-html.lsp
blob: e1c79f2598942345c452ee4a9854b29f2d3fd385 (plain)
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
<% local form, viewlibrary, page_info = ... 
require("viewfunctions")
%>

<% if form.value.result then %>
<H1><%= html.html_escape(form.value.result.label) %></H1>
<DL>
<% require("html") %>
<%= html.cfe_unpack(form.value.result.value) %>
<form action="/cgi-bin/acf/weblog/weblog/downloadadhocquery" method="POST">
<input class="hidden" type="hidden"  name="query"  value="<%= html.html_escape(form.value.query.value) %>" >
<DT>Download query result</DT><DD><input class="submit" type="submit" name="Download" value="Download"></DD>
</FORM>
</DL>
<% end %>

<H1><%= html.html_escape(form.label) %></H1>
<% displayformstart(form, page_info) %>
<% displayformitem(form.value.query, "query") %>
This form accepts a Postgresql SELECT statement and displays the results. Examples:
<ul>
<li><pre>SELECT clientuserid, sum(bytes) AS total FROM weblog GROUP BY clientuserid ORDER BY total DESC</pre>
<li><pre>SELECT extract(hour from date) AS hour, sum(numrequest) AS numrequest, sum(numblock) AS numblock FROM usagestat GROUP BY extract(hour from date) ORDER BY hour</pre>
</ul>
The available database tables and descriptions are as follows:<br>
<% displayformend(form) %>

<H3>PubWeblog and PubBlocklog</H3>
<DL>
These tables contain the combined squid access log and dansguardian log for every access and blocked access respectively. The definition of the table is as follows:
<pre>
(
    sourcename character varying(40),
    clientip inet NOT NULL,
    clientuserid character varying(64) NOT NULL,
    logdatetime timestamp(3) without time zone NOT NULL,
    uri text NOT NULL,
    bytes integer NOT NULL,
    reason text,
    score integer,
    shortreason text
)
</pre></DL>
<H3>dbHistLog</H3>
<DL>
This table contains the database history, including such information as which log files were loaded and how many entries they contained. The definition of the table is as follows:
<pre>
(
    logdatetime timestamp(3) without time zone NOT NULL,
    msgtext text
)
</pre></DL>

<H3>Source</H3>
<DL>
This table contains the list of log file sources. The definition of the table is as follows:
<pre>
(
    sourcename character varying(40) NOT NULL,
    method character varying(100) NOT NULL,
    userid character varying(32),
    passwd character varying(255),
    source character varying(255) NOT NULL,
    tzislocal boolean,
    enabled boolean
)
</pre></DL>
<H3>Usagestat</H3>
<DL>
This table contains a historical record of pages requested and blocked by hour. The definition of the table is as follows:
<pre>
(
    sourcename character varying(40) NOT NULL,
    date timestamp(0) without time zone NOT NULL,
    numrequest integer,
    numblock integer
)
</pre></DL>
<H3>Watchlist</H3>
<DL>
This table contains the user watch list. The definition of the table is as follows:
<pre>
(
    clientuserid character varying(64) NOT NULL,
    expiredatetime timestamp(0) without time zone NOT NULL
)
</pre></DL>