summaryrefslogtreecommitdiff
path: root/src/ssh_node5_net.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ssh_node5_net.py')
-rw-r--r--src/ssh_node5_net.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/ssh_node5_net.py b/src/ssh_node5_net.py
index d2c38c9..57754e4 100644
--- a/src/ssh_node5_net.py
+++ b/src/ssh_node5_net.py
@@ -66,11 +66,10 @@ def index():
histogram = db_handler.get_histogram_detailed()
all_dates = sorted(list({d['date'] for d in histogram}))
by_ip = {}
- for d in histogram:
- if d['ip'] not in by_ip:
- by_ip[d['ip']] = list(range(len(all_dates)))
- for date in all_dates:
- by_ip[d['ip']][all_dates.index(d['date'])] = (d['total_count'] if date == d['date'] else 0)
+ for data in histogram:
+ if data['ip'] not in by_ip:
+ by_ip[data['ip']] = [0] * len(all_dates)
+ by_ip[data['ip']][all_dates.index(data['date'])] = data['total_count']
histogram_chartjs = json.dumps([{
'label': str(ip),