comment out single plots

master
Sascha 2022-08-22 08:19:45 +07:00
parent ad60a7f77f
commit d463b602e3
1 changed files with 12 additions and 12 deletions

@ -39,19 +39,19 @@ plt.legend()
plt.show()
# plotping
plt.plot(times, pings, label="Ping")
plt.title("pings from mariadb")
plt.legend()
plt.show()
#plt.plot(times, pings, label="Ping")
#plt.title("pings from mariadb")
#plt.legend()
#plt.show()
# plotdownloads
plt.plot(times, downloads, label="Download")
plt.title("downloads from mariadb")
plt.legend()
plt.show()
#plt.plot(times, downloads, label="Download")
#plt.title("downloads from mariadb")
#plt.legend()
#plt.show()
# plotuploads
plt.plot(times, uploads, label="Upload")
plt.title("uploads from mariadb")
plt.legend()
plt.show()
#plt.plot(times, uploads, label="Upload")
#plt.title("uploads from mariadb")
#plt.legend()
#plt.show()