1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 02:18:08 +00:00

Merge pull request #729 from shtrom/sickbeard_snatched

[sickbeard_episodes] Report snatched episodes
This commit is contained in:
sumpfralle 2016-10-20 03:19:26 +02:00 committed by GitHub
commit 737dab1050

View file

@ -47,6 +47,7 @@ graph_title Episodes
graph_vlabel Episodes
graph_category Sick-Beard
down.label Downloaded
snatched.label 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 {