1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

Plugin deluge_: fix style issues

This commit is contained in:
Lars Kruse 2018-03-27 05:04:12 +02:00
parent 1e717d8901
commit 6b42464ca7

View file

@ -304,7 +304,8 @@ def print_config(mode):
".info The number of connections used by Deluge Torrent") ".info The number of connections used by Deluge Torrent")
elif mode == "bandwidth": elif mode == "bandwidth":
print("graph_title Bandwidth usage") print("graph_title Bandwidth usage")
print("graph_order payloadDownloadRate overheadDownloadRate payloadUploadRate overheadUploadRate") print("graph_order payloadDownloadRate overheadDownloadRate payloadUploadRate "
"overheadUploadRate")
print("graph_args --base 1024 -r") print("graph_args --base 1024 -r")
print("graph_vlabel bytes/s : down(-) and up(+)") print("graph_vlabel bytes/s : down(-) and up(+)")
print("graph_scale yes") print("graph_scale yes")
@ -322,7 +323,8 @@ def print_config(mode):
print("overheadDownloadRate.draw STACK") print("overheadDownloadRate.draw STACK")
print("overheadDownloadRate.min 0") print("overheadDownloadRate.min 0")
print("overheadDownloadRate.graph no") print("overheadDownloadRate.graph no")
print("overheadDownloadRate.info Bandwidth 'lost' due to overhead while downloading and uploading torrents") print("overheadDownloadRate.info Bandwidth 'lost' due to overhead while downloading and "
"uploading torrents")
print("payloadUploadRate.label payload") print("payloadUploadRate.label payload")
print("payloadUploadRate.draw AREA") print("payloadUploadRate.draw AREA")
@ -334,7 +336,8 @@ def print_config(mode):
print("overheadUploadRate.draw STACK") print("overheadUploadRate.draw STACK")
print("overheadUploadRate.min 0") print("overheadUploadRate.min 0")
print("overheadUploadRate.negative overheadDownloadRate") print("overheadUploadRate.negative overheadDownloadRate")
print("overheadUploadRate.info Bandwidth 'lost' due to overhead while downloading and uploading torrents") print("overheadUploadRate.info Bandwidth 'lost' due to overhead while downloading and "
"uploading torrents")
elif mode == "states": elif mode == "states":
print("graph_title Torrents states") print("graph_title Torrents states")