small corrections

master
ademant 2019-08-06 15:50:28 +02:00
parent a3e53f3bf4
commit 2d1674b0bd
4 changed files with 4 additions and 8 deletions

View File

@ -4,7 +4,7 @@
<title>Verlauf</title>
</head>
<body>
<a href="http://localhost:8081/ids">Übersicht</a>
<a href="/ids">Übersicht</a>
<img src="/svg/cpu.svg" style="width:100%;height=auto" />
</body>
</html>

View File

@ -7,7 +7,7 @@
<p>Aktuelle Variablen:
<ul>
%for item in measdata:
<li><a href="http://localhost:8081/graph/{{item['id']}}">{{item['id']}}</a>: {{item['device']}} {{item['varname']}} {{item['sensor']}}, Anzahl: {{item['count']}}, letzter Wert: {{item['value']}}</li>
<li><a href="/graph/{{item['id']}}">{{item['id']}}</a>: {{item['device']}} {{item['varname']}} {{item['sensor']}}, Anzahl: {{item['count']}}, letzter Wert: {{item['value']}}</li>
%end
</ul>
</body>

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3
from bottle import get,post,request,Bottle,run,template,static_file
import threading,time,json,zlib,gnupg,socket,psutil,os,sys,pymysql,queue,_thread,svgwrite,matplotlib.pyplot as plt,matplotlib.cm as cm,numpy
import threading,time,json,zlib,gnupg,socket,psutil,os,sys,pymysql,queue,_thread,matplotlib.pyplot as plt,matplotlib.cm as cm,numpy
payload_haus=["wasser","gas","kwh_haus","kwh_herd"]
payload_kfz=["km","volumen","preis"]
@ -246,10 +246,6 @@ def show_graph(mid):
row=mycursor.fetchall()
mycursor.close()
mydb.close()
# svo=svgwrite.drawing.Drawing(filename=mid+".svg",size=(svgwidth,svgheight))
# for i in row:
# svo.add(svo.circle(center=(float(i['time']),float(i['value']))))
# svo.save()
plt.figure(figsize=[6,8])
svg_x=[]
svg_y=[]

View File

@ -4,7 +4,7 @@
<title>Verlauf</title>
</head>
<body>
<a href="http://localhost:8081/ids">Übersicht</a></br>
<a href="/ids">Übersicht</a></br>
<img src="/svg/{{mid}}.svg" style="width:100%;height=auto" />
</body>
</html>