-
Notifications
You must be signed in to change notification settings - Fork 17
/
stats.py
executable file
·389 lines (324 loc) · 12.5 KB
/
stats.py
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
"""
Greynir: Natural language processing for Icelandic
Copyright (C) 2023 Miðeind ehf.
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/.
Stats-related routes
"""
from typing import Any, Dict, List, Optional, Union, Iterable
from werkzeug.wrappers import Response
import json
import logging
from colorsys import hsv_to_rgb
from datetime import datetime, timedelta, timezone
from decimal import Decimal
from flask import request, render_template
from reynir.bindb import GreynirBin
from . import routes, cache, max_age
from settings import changedlocale
from utility import read_txt_api_key
from db import SessionContext, Session
from db.sql import (
StatsQuery,
ChartsQuery,
GenderQuery,
BestAuthorsQuery,
QueryCountQuery,
QueryTypesQuery,
QueryClientTypeQuery,
TopUnansweredQueriesQuery,
TopAnsweredQueriesQuery,
)
# Days
_DEFAULT_STATS_PERIOD = 10
_MAX_STATS_PERIOD = 90
_TOP_AUTHORS_PERIOD = 30
# TODO: This should be put in a column in the roots table
_SOURCE_ROOT_COLORS = {
"Kjarninn": "#f17030",
"RÚV": "#dcdcdc",
"Vísir": "#3d6ab9",
"Morgunblaðið": "#020b75",
"Eyjan": "#ca151c",
"Kvennablaðið": "#900000",
"Stundin": "#ee4420",
"Hringbraut": "#44607a",
"Fréttablaðið": "#002a61",
"Hagstofa Íslands": "#818285",
"DV": "#ed1c24",
"BB": "#ffb6c1",
"Mannlíf": "#ffcc00", # Gula pressan ;)
"Hagstofan": "#828282",
"Bændablaðið": "#41938A",
"Viðskiptablaðið": "#00ffff",
"Heimildin": "#f17030",
"Samstöðin": "#8b0000",
}
def _now() -> datetime:
"""Return the current time in UTC"""
return datetime.now(timezone.utc)
def chart_stats(session: Optional[Session] = None, num_days: int = 7) -> Dict[str, Any]:
"""Return scraping and parsing stats for charts"""
today = _now().replace(hour=0, minute=0, second=0, microsecond=0)
labels: List[str] = []
sources: Dict[str, List[int]] = {}
parsed_data: List[float] = []
# Get article count for each source for each day, and query count for each day
# We change locale to get localized weekday/month names
with changedlocale(category="LC_TIME"):
for n in range(0, num_days):
days_back = num_days - n - 1
start = today - timedelta(days=days_back)
end = today - timedelta(days=days_back - 1)
# Generate date label
dfmtstr = "%a %-d. %b"
labels.append(start.strftime(dfmtstr))
sent = 0
parsed = 0
# Get article count per source for day
# Also collect parsing stats for parse % chart
q = ChartsQuery.period(start, end, enclosing_session=session)
for name, cnt, s, p in q:
sources.setdefault(name, []).append(cnt)
sent += s
parsed += p
percent = round((parsed / sent) * 100, 2) if sent else 0
parsed_data.append(percent)
# Create datasets for bar chart
datasets = []
article_count = 0
for k, v in sorted(sources.items()):
color = _SOURCE_ROOT_COLORS.get(k, "#000")
datasets.append({"label": k, "backgroundColor": color, "data": v})
article_count += sum(v)
# Calculate averages
scrape_avg = article_count / num_days
parse_avg = sum(parsed_data) / num_days
return {
"scraped": {"labels": labels, "datasets": datasets, "avg": scrape_avg},
"parsed": {
"labels": labels,
"datasets": [{"data": parsed_data}],
"avg": parse_avg,
},
}
def top_authors(
days: int = _TOP_AUTHORS_PERIOD, session: Optional[Session] = None
) -> List[Dict[str, Any]]:
"""Generate list of top authors w. parse percentage."""
end = _now()
start = end - timedelta(days=days)
authors = list(
BestAuthorsQuery.period(start, end, enclosing_session=session, min_articles=10)
)[:20]
authresult = list()
with GreynirBin.get_db() as bindb:
for a in authors:
name = a[0]
gender = bindb.lookup_name_gender(name)
if gender == "hk": # Skip unnamed authors (e.g. "Ritstjórn Vísis")
continue
perc = round(float(a[4]), 2)
authresult.append({"name": name, "gender": gender, "perc": perc})
return authresult[:10]
@routes.route("/stats", methods=["GET"])
@cache.cached(timeout=30 * 60, key_prefix="stats", query_string=True)
@max_age(seconds=30 * 60)
def stats() -> Union[Response, str]:
"""Render a page containing various statistics from the Greynir database."""
days = _DEFAULT_STATS_PERIOD
try:
days = min(
_MAX_STATS_PERIOD, int(request.args.get("days", _DEFAULT_STATS_PERIOD))
)
except Exception:
pass
chart_data: Dict[str, Any] = dict()
try:
with SessionContext(read_only=True) as session:
# Article stats
sq = StatsQuery()
articles_result = sq.execute(session)
articles_total = dict(art=Decimal(), sent=Decimal(), parsed=Decimal())
for r in articles_result:
articles_total["art"] += r.art
articles_total["sent"] += r.sent
articles_total["parsed"] += r.parsed
# Gender stats
gq = GenderQuery()
gender_result = gq.execute(session)
gender_total = dict(
kvk=Decimal(), kk=Decimal(), hk=Decimal(), total=Decimal()
)
for r in gender_result:
gender_total["kvk"] += r.kvk
gender_total["kk"] += r.kk
gender_total["hk"] += r.hk
gender_total["total"] += r.kvk + r.kk + r.hk
# Author stats
author_result = top_authors(session=session, days=days)
# Scraping and parsing stats
chart_data = chart_stats(session=session, num_days=days)
return render_template(
"stats.html",
title="Tölfræði",
articles_result=articles_result,
articles_total=articles_total,
gender_result=gender_result,
gender_total=gender_total,
author_result=author_result,
scraped_chart_data=json.dumps(chart_data["scraped"]),
scraped_avg=int(round(chart_data["scraped"]["avg"])),
parsed_chart_data=json.dumps(chart_data["parsed"]),
parsed_avg=round(chart_data["parsed"]["avg"], 1),
)
except Exception as e:
logging.error(f"Error rendering stats page: {e}")
return Response(f"Error: {e}", status=500)
_DEFAULT_QUERY_STATS_PERIOD = 30
_MAX_QUERY_STATS_PERIOD = 30
def query_stats_data(
session: Optional[Session] = None, num_days: int = _DEFAULT_QUERY_STATS_PERIOD
) -> Dict[str, Any]:
"""Return all data for query stats dashboard."""
today = _now().replace(hour=0, minute=0, second=0, microsecond=0)
labels = []
query_count_data = []
unique_count_data = []
# Get query count for each day
# We change locale to get localized date weekday/month names
with changedlocale(category="LC_TIME"):
for n in range(0, num_days):
days_back = num_days - n - 1
start = today - timedelta(days=days_back)
end = today - timedelta(days=days_back - 1)
# Generate date label
dfmtstr = "%a %-d. %b"
labels.append(start.strftime(dfmtstr))
# Get query count for day
q = list(QueryCountQuery.period(start, end, enclosing_session=session))
query_count_data.append(q[0][0])
# Get num unique clients for day
unique_count_data.append(q[0][1])
query_avg = sum(query_count_data) / num_days
unique_avg = sum(unique_count_data) / num_days
start = today - timedelta(days=num_days)
end = _now()
# Query types
res = list(
QueryTypesQuery.period(
start=start,
end=end,
enclosing_session=session,
)
)
total = sum([k[0] for k in res])
# This function is used to ensure that all the query
# types have a fixed, unique color on the pie chart.
def gen_distinct_hex_colors(num: int) -> List[str]:
"""Generate a list of perceptually distinct hex colors."""
hsv_tuples = [(x * 1.0 / num, 0.9, 0.9) for x in range(num)]
hex_out = []
for hsv in hsv_tuples:
rgb = map(lambda x: int(x * 255), hsv_to_rgb(*hsv))
hex_out.append("#%02x%02x%02x" % tuple(rgb))
return hex_out
query_types_data = {
"labels": [k[1] for k in res],
"datasets": [
{
"data": [k[0] for k in res],
"percentage": [round(k[0] / total * 100, 1) for k in res],
"backgroundColor": gen_distinct_hex_colors(len(res)),
}
],
}
# Client types
_CLIENT_COLORS = {
"ios": "#4c8bf5",
"ios_flutter": "#4c8bf5",
"android": "#a4c639",
"android_flutter": "#a4c639",
"python": "#ffff00",
"www": "#f7b924",
}
res = QueryClientTypeQuery.period(start, end)
total = sum([k[2] for k in res])
client_types_data = {
"labels": [f"{k[0]} {k[1] or ''}".rstrip() for k in res],
"datasets": [
{
"data": [k[2] for k in res],
"percentage": [round(k[2] / total * 100, 1) for k in res],
"backgroundColor": [_CLIENT_COLORS.get(k[0], "#ccc") for k in res],
}
],
}
# TODO: Add iOS, Android percentages
# Top queries (answered and unanswered)
def prep_top_answ_data(res: Iterable) -> List[Dict[str, Any]]:
rl = list(res) # Consume generator
highest_count = rl[0][1]
toplist = []
for q in rl:
toplist.append({"query": q[0], "count": q[1], "freq": q[1] / highest_count})
return toplist
res = TopUnansweredQueriesQuery.period(start, end, enclosing_session=session)
top_unanswered = prep_top_answ_data(res)
res = TopAnsweredQueriesQuery.period(start, end, enclosing_session=session)
top_answered = prep_top_answ_data(res)
return {
"query_count": {
"labels": labels,
"datasets": [{"data": query_count_data}],
"avg": query_avg,
},
"unique_count": {
"labels": labels,
"datasets": [{"data": unique_count_data}],
"avg": unique_avg,
},
"query_types": query_types_data,
"client_types": client_types_data,
"top_unanswered": top_unanswered,
"top_answered": top_answered,
}
@routes.route("/stats/queries", methods=["GET"])
@cache.cached(timeout=30 * 60, key_prefix="stats_queries", query_string=True)
@max_age(seconds=30 * 60)
def stats_queries() -> Union[Response, str]:
"""Render a page containing various statistics on query engine usage."""
# Accessing this route requires an API key
key = request.args.get("key")
if key is None or key != read_txt_api_key("GreynirServerKey"):
return Response("Not authorized", status=401)
days = _DEFAULT_QUERY_STATS_PERIOD
try:
days = min(
_MAX_QUERY_STATS_PERIOD,
int(request.args.get("days", _DEFAULT_QUERY_STATS_PERIOD)),
)
except Exception:
pass
stats_data = query_stats_data(num_days=days)
return render_template(
"stats-queries.html",
title="Tölfræði fyrirspurnakerfis",
days=days,
query_count_data=json.dumps(stats_data["query_count"]),
queries_avg=stats_data["query_count"]["avg"],
unique_count_data=json.dumps(stats_data["unique_count"]),
unique_count_avg=stats_data["unique_count"]["avg"],
query_types_data=json.dumps(stats_data["query_types"]),
client_types_data=json.dumps(stats_data["client_types"]),
top_unanswered=stats_data["top_unanswered"],
top_answered=stats_data["top_answered"],
)