2001-03-10 11:07:52 +00:00
<?php
2001-10-20 18:57:09 +00:00
// $Id$
2000-12-14 14:13:37 +00:00
2004-07-02 07:11:35 +00:00
/**
* @file
* System monitoring and logging for administrators.
*
* The watchdog module monitors your site and keeps a list of
* recorded events containing usage and performance data, errors,
* warnings, and similar operational information.
*
* @see watchdog().
*/
2004-05-24 18:37:50 +00:00
/**
* Implementation of hook_help().
*/
function watchdog_help($section = 'admin/help#watchdog') {
2003-08-19 19:59:33 +00:00
switch ($section) {
2004-04-18 12:51:55 +00:00
case 'admin/logs':
2004-11-23 22:20:41 +00:00
return t('<p>The watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the watchdog report on a regular basis as it is often the only way to tell what is going on.</p>');
2004-06-18 15:04:37 +00:00
case 'admin/modules#description':
2004-05-24 18:37:50 +00:00
return t('Logs and records system events.');
2003-08-19 19:59:33 +00:00
}
2002-06-01 21:57:29 +00:00
}
2004-04-21 13:56:38 +00:00
/**
2004-06-18 15:04:37 +00:00
* Implementation of hook_menu().
2004-04-21 13:56:38 +00:00
*/
2004-09-16 07:17:56 +00:00
function watchdog_menu($may_cache) {
2004-06-18 15:04:37 +00:00
$items = array();
2004-07-03 14:10:09 +00:00
2004-09-16 07:17:56 +00:00
if ($may_cache) {
$items[] = array('path' => 'admin/logs', 'title' => t('logs'),
'callback' => 'watchdog_overview', 'access' => user_access('administer watchdog'));
2004-11-28 12:28:35 +00:00
$items[] = array('path' => 'admin/logs/event', 'title' => t('details'),
'callback' => 'watchdog_event', 'access' => user_access('administer watchdog'),
2004-09-16 07:17:56 +00:00
'type' => MENU_CALLBACK);
2001-06-29 22:08:57 +00:00
}
2004-06-18 15:04:37 +00:00
return $items;
2001-05-19 13:41:52 +00:00
}
2004-07-03 14:10:09 +00:00
/**
* Implementation of hook_perm().
*/
function watchdog_perm() {
return array('administer watchdog');
}
2004-05-24 18:37:50 +00:00
/**
* Implementation of hook_cron().
*
2004-11-15 21:17:25 +00:00
* Remove expired log messages and flood control events.
2004-05-24 18:37:50 +00:00
*/
2000-12-16 08:39:01 +00:00
function watchdog_cron() {
2004-11-02 15:09:09 +00:00
db_query('DELETE FROM {watchdog} WHERE timestamp < %d', time() - variable_get('watchdog_clear', 604800));
2004-11-15 21:17:25 +00:00
db_query('DELETE FROM {flood} WHERE timestamp < %d', time() - 3600);
2000-12-16 08:39:01 +00:00
}
2000-12-14 14:13:37 +00:00
2004-05-24 18:37:50 +00:00
/**
* Menu callback; displays a listing of log messages.
*/
2004-11-28 12:28:35 +00:00
function watchdog_overview() {
2005-01-09 09:22:40 +00:00
$icons = array(WATCHDOG_NOTICE => '',
WATCHDOG_WARNING => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')),
WATCHDOG_ERROR => theme('image', 'misc/watchdog-error.png', t('error'), t('error')));
$classes = array(WATCHDOG_NOTICE => 'watchdog-notice', WATCHDOG_WARNING => 'watchdog-warning', WATCHDOG_ERROR => 'watchdog-error');
2004-11-28 12:28:35 +00:00
$names['all'] = t('all messages');
$queries['all'] = '';
foreach (_watchdog_get_message_types() as $type) {
2005-01-22 09:38:48 +00:00
$names[$type] = t('%type messages', array('%type' => t($type)));
2004-11-28 12:28:35 +00:00
$queries[$type] = "WHERE type = '". db_escape_string($type) ."'";
}
if (empty($_SESSION['watchdog_overview_filter'])) {
$_SESSION['watchdog_overview_filter'] = 'all';
}
$op = $_POST['op'];
if ($op == t('Filter') && isset($_POST['edit']['filter'])) {
$_SESSION['watchdog_overview_filter'] = $_POST['edit']['filter'];
2004-01-02 16:28:45 +00:00
}
2000-12-14 14:13:37 +00:00
2004-11-28 14:15:12 +00:00
$form = form_select(t('Filter by message type'), 'filter', $_SESSION['watchdog_overview_filter'], $names);
2004-11-28 12:28:35 +00:00
$form .= form_submit(t('Filter'));
2003-08-21 15:47:50 +00:00
$header = array(
2005-01-09 09:22:40 +00:00
' ',
2004-11-28 12:28:35 +00:00
array('data' => t('Type'), 'field' => 'w.type'),
2004-08-19 15:41:57 +00:00
array('data' => t('Date'), 'field' => 'w.timestamp', 'sort' => 'desc'),
array('data' => t('Message'), 'field' => 'w.message'),
array('data' => t('User'), 'field' => 'u.name'),
array('data' => t('Operations'), 'colspan' => '2')
2003-08-21 15:47:50 +00:00
);
2004-11-28 12:28:35 +00:00
$sql = 'SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid '. $queries[$_SESSION['watchdog_overview_filter']] . tablesort_sql($header);
2003-08-21 15:47:50 +00:00
$result = pager_query($sql, 50);
2001-01-26 13:38:46 +00:00
2000-12-14 14:13:37 +00:00
while ($watchdog = db_fetch_object($result)) {
2004-09-14 20:01:00 +00:00
$rows[] = array('data' =>
array(
// Cells
2005-01-09 09:22:40 +00:00
$icons[$watchdog->severity],
2005-01-22 09:38:48 +00:00
t($watchdog->type),
2004-09-14 20:01:00 +00:00
format_date($watchdog->timestamp, 'small'),
2005-01-09 09:22:40 +00:00
truncate_utf8($watchdog->message, 64),
2004-09-14 20:01:00 +00:00
format_name($watchdog),
$watchdog->link,
2004-11-28 12:28:35 +00:00
l(t('details'), "admin/logs/event/$watchdog->wid")
2004-09-14 20:01:00 +00:00
),
// Attributes for tr
2005-01-09 09:22:40 +00:00
'class' => "watchdog-". preg_replace('/[^a-z]/i', '-', $watchdog->type) .' '. $classes[$watchdog->severity]
2003-12-03 15:00:02 +00:00
);
2000-12-14 14:13:37 +00:00
}
2002-12-29 18:31:46 +00:00
2003-08-21 15:47:50 +00:00
if (!$rows) {
2005-01-09 09:22:40 +00:00
$rows[] = array(array('data' => t('No log messages available.'), 'colspan' => '7'));
2003-08-21 15:47:50 +00:00
}
2003-10-02 08:35:33 +00:00
2004-05-24 18:37:50 +00:00
$pager = theme('pager', NULL, 50, 0, tablesort_pager());
2003-08-21 15:47:50 +00:00
if (!empty($pager)) {
2005-01-09 09:22:40 +00:00
$rows[] = array(array('data' => $pager, 'colspan' => '7'));
2003-08-21 15:47:50 +00:00
}
2004-11-28 12:28:35 +00:00
$output = '<div class="container-inline">'. form($form) .'</div>';
$output .= theme('table', $header, $rows);
2005-04-24 16:34:36 +00:00
return $output;
2000-12-14 14:13:37 +00:00
}
2004-05-24 18:37:50 +00:00
/**
* Menu callback; displays details about a log message.
*/
2004-11-28 12:28:35 +00:00
function watchdog_event($id) {
2005-01-09 09:22:40 +00:00
$severity = array(WATCHDOG_NOTICE => t('notice'), WATCHDOG_WARNING => t('warning'), WATCHDOG_ERROR => t('error'));
2004-05-24 18:37:50 +00:00
$output = '';
$result = db_query('SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid WHERE w.wid = %d', $id);
2000-12-14 14:13:37 +00:00
if ($watchdog = db_fetch_object($result)) {
2004-05-24 18:37:50 +00:00
$output .= '<table border="1" cellpadding="2" cellspacing="2">';
2005-01-22 09:38:48 +00:00
$output .= ' <tr><th>'. t('Type') .'</th><td>' . t($watchdog->type) . '</td></tr>';
2004-05-24 18:37:50 +00:00
$output .= ' <tr><th>'. t('Date') .'</th><td>'. format_date($watchdog->timestamp, 'large') .'</td></tr>';
$output .= ' <tr><th>'. t('User') .'</th><td>'. format_name($watchdog) .'</td></tr>';
2004-11-28 12:28:35 +00:00
$output .= ' <tr><th>'. t('Location') ."</th><td>". l($watchdog->location, $watchdog->location) ."</td></tr>";
2004-05-24 18:37:50 +00:00
$output .= ' <tr><th>'. t('Message') ."</th><td>$watchdog->message</td></tr>";
2005-01-09 09:22:40 +00:00
$output .= ' <tr><th>'. t('Severity') .'</th><td>'. $severity[$watchdog->severity] .'</td></tr>';
2004-05-24 18:37:50 +00:00
$output .= ' <tr><th>'. t('Hostname') ."</th><td>$watchdog->hostname</td></tr>";
$output .= '</table>';
2000-12-14 14:13:37 +00:00
}
2005-04-24 16:34:36 +00:00
return $output;
2000-12-14 14:13:37 +00:00
}
2001-11-01 11:00:51 +00:00
2004-01-02 16:28:45 +00:00
function _watchdog_get_message_types() {
$types = array();
2005-01-09 09:22:40 +00:00
$result = db_query('SELECT DISTINCT(type) FROM {watchdog} ORDER BY type');
2004-01-02 16:28:45 +00:00
while ($object = db_fetch_object($result)) {
$types[] = $object->type;
}
return $types;
}
2001-10-09 21:01:47 +00:00
?>