diff --git a/plugins/moodle/modules/moodle_mod_forum.php b/plugins/moodle/modules/moodle_mod_forum.php index bbca5516..884e2789 100644 --- a/plugins/moodle/modules/moodle_mod_forum.php +++ b/plugins/moodle/modules/moodle_mod_forum.php @@ -45,9 +45,6 @@ if (count($argv) === 2 && $argv[1] === 'config') { echo "forum_posts.label posts\n"; echo "forum_posts.min 0\n"; echo "forum_posts.draw AREA\n"; - echo "forum_discussion.draw STACK\n"; - echo "forum_discussion.min 0\n"; - echo "forum_discussion.label discussions\n"; exit(0); } @@ -60,13 +57,7 @@ try { } $nb = 0; -if (($stmt = $dbh->query("SELECT count(id) FROM {$table_prefix}forum_posts WHERE timemodified > $graph_period")) != false) { +if (($stmt = $dbh->query("SELECT count(id) FROM {$table_prefix}forum_posts WHERE modified > $graph_period")) != false) { $nb = $stmt->fetchColumn(); } echo "forum_posts.value $nb\n"; - -$nb = 0; -if (($stmt = $dbh->query("SELECT count(id) FROM {$table_prefix}forum_discussions WHERE timemodified > $graph_period")) != false) { - $nb = $stmt->fetchColumn(); -} -echo "forum_discussions.value $nb\n"; \ No newline at end of file diff --git a/plugins/moodle/modules/moodle_mod_quiz.php b/plugins/moodle/modules/moodle_mod_quiz.php new file mode 100644 index 00000000..3a6f9705 --- /dev/null +++ b/plugins/moodle/modules/moodle_mod_quiz.php @@ -0,0 +1,63 @@ +#!/usr/bin/php + + * @version 1.0 2014 + * + */ +$dbh = null; +$db = getenv('db'); +$type = getenv('type'); +$host = getenv('host'); +$user = getenv('user'); +$pass = getenv('pass'); +$table_prefix = getenv('table_prefix'); +$port = getenv('port'); +if (!$port) + $port = 3306; +//$graph_period = getenv('graph_period'); +$graph_period = time() - 5*60; + + +if (count($argv) === 2 && $argv[1] === 'config') { + echo "graph_title Moodle Quiz Attempts\n"; + echo "graph_args --base 1000 --lower-limit 0\n"; + echo "graph_vlabel attempts\n"; + echo "graph_category Moodle\n"; + echo "graph_scale no\n"; + echo "graph_info Displays the sum quiz attempts in your Moodle site\n"; + echo "quiz_attempts.label attempts\n"; + echo "quiz_attempts.min 0\n"; + echo "quiz_attempts.draw AREA\n"; + exit(0); +} + +try { + $dsn = $type . ':host=' . $host . ';port=' . $port . ';dbname=' . $db; + $dbh = new PDO($dsn, $user, $pass); +} catch (Exception $e) { + echo "Connection failed\n"; + exit(1); +} + +$nb = 0; +if (($stmt = $dbh->query("SELECT count(id) FROM {$table_prefix}quiz_attempts where timemodified > $graph_period")) != false) { + $nb = $stmt->fetchColumn(); +} +echo "quiz_attempts.value $nb\n"; diff --git a/plugins/moodle/moodle_logs.php b/plugins/moodle/moodle_logs.php new file mode 100644 index 00000000..4c979717 --- /dev/null +++ b/plugins/moodle/moodle_logs.php @@ -0,0 +1,63 @@ +#!/usr/bin/php + + * @version 1.0 2014 + * + */ +$dbh = null; +$db = getenv('db'); +$type = getenv('type'); +$host = getenv('host'); +$user = getenv('user'); +$pass = getenv('pass'); +$table_prefix = getenv('table_prefix'); +$port = getenv('port'); +if (!$port) + $port = 3306; +//$graph_period = getenv('graph_period'); +$graph_period = time() - 5*60; + +if (count($argv) === 2 && $argv[1] === 'config') { + echo "graph_title Moodle Logs\n"; + echo "graph_args --base 1000 --lower-limit 0\n"; + echo "graph_vlabel logs\n"; + echo "graph_category Moodle\n"; + echo "graph_scale no\n"; + echo "graph_info Displays the number of new logs written\n"; + echo "logs.label logs\n"; + echo "logs.min 0\n"; + echo "logs.draw AREA"; + exit(0); +} + +try { + $dsn = $type . ':host=' . $host . ';port=' . $port . ';dbname=' . $db; + $dbh = new PDO($dsn, $user, $pass); +} catch (Exception $e) { + echo "Connection failed\n"; + exit(1); +} + +//Online users +$nb = 0; +if (($stmt = $dbh->query("SELECT count(id) FROM {$table_prefix}log WHERE time > $graph_period")) != false) { + $nbusers = $stmt->fetchColumn(); +} +echo "logs.value $nb\n"; diff --git a/plugins/moodle/moodle_modules_total.php b/plugins/moodle/moodle_modules_total.php index 1407097b..a3e7be1d 100644 --- a/plugins/moodle/moodle_modules_total.php +++ b/plugins/moodle/moodle_modules_total.php @@ -67,4 +67,4 @@ if (count($argv) === 2 && $argv[1] === 'config') { foreach($data as $entry) { echo "modules_".$entry->modulename.".label ".$entry->modulename."\n"; echo "modules_".$entry->modulename.".value ".$entry->moduleinstance."\n"; -} \ No newline at end of file +} diff --git a/plugins/moodle/moodle_users_online.php b/plugins/moodle/moodle_users_online.php index 22316762..b7de9fd3 100644 --- a/plugins/moodle/moodle_users_online.php +++ b/plugins/moodle/moodle_users_online.php @@ -61,4 +61,4 @@ $nbusers = 0; if (($stmt = $dbh->query("SELECT count(id) FROM {$table_prefix}user WHERE lastaccess > $graph_period")) != false) { $nbusers = $stmt->fetchColumn(); } -echo "users_online.value $nbusers\n"; \ No newline at end of file +echo "users_online.value $nbusers\n"; diff --git a/plugins/moodle/moodle_users_total.php b/plugins/moodle/moodle_users_total.php index eda1d12b..aa0231d5 100644 --- a/plugins/moodle/moodle_users_total.php +++ b/plugins/moodle/moodle_users_total.php @@ -81,4 +81,4 @@ $nbusers = 0; if (($stmt = $dbh->query("SELECT COUNT(id) FROM {$table_prefix}user WHERE deleted=1")) != false) { $nbusers = $stmt->fetchColumn(); echo "users_deleted.value $nbusers\n"; -} \ No newline at end of file +}