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

[sickbeard_episodes] Report snatched episodes

Signed-off-by: Olivier Mehani <shtrom@ssji.net>
This commit is contained in:
Olivier Mehani 2016-07-15 22:23:24 +10:00
parent d42751c908
commit cb11df95a9

View file

@ -47,6 +47,7 @@ graph_title Episodes
graph_vlabel Episodes
graph_category Sick-Beard
down.label Downloaded
down.snatched Snatched
total.label Total
EOC
;
@ -60,6 +61,7 @@ my $json = JSON::Any->jsonToObj($req->content());
if ($json->{result} eq 'success') {
print "down.value $json->{data}->{ep_downloaded}\n";
print "snatched.value $json->{data}->{ep_snatched}\n";
print "total.value $json->{data}->{ep_total}\n";
exit 0;
} else {