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().
*/
2005-11-01 10:17:34 +00:00
function watchdog_help($section) {
2003-08-19 19:59:33 +00:00
switch ($section) {
2005-11-01 10:17:34 +00:00
case 'admin/help#watchdog':
2006-05-07 00:08:36 +00:00
$output = '<p>'. t('The watchdog module monitors your system, capturing system events in a log to be reviewed by an authorized individual at a later time. This is useful for site administrators who want a quick overview of activities on their site. The logs also record the sequence of events, so it can be useful for debugging site errors.') .'</p>';
2005-11-01 10:17:34 +00:00
$output .= '<p>'. t('The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the watchdog report on a regular basis to ensure their site is working properly.') .'</p>';
2006-08-18 12:17:00 +00:00
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@watchdog">Watchdog page</a>.', array('@watchdog' => 'http://drupal.org/handbook/modules/watchdog/')) .'</p>';
2005-11-01 10:17:34 +00:00
return $output;
case 'admin/logs':
2007-02-27 12:29:22 +00:00
return '<p>'. t('The watchdog module monitors your website, 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>';
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
*/
2007-01-24 14:48:36 +00:00
function watchdog_menu() {
$items['admin/logs/watchdog'] = array(
'title' => t('Recent log entries'),
'description' => t('View events that have recently been logged.'),
'page callback' => 'watchdog_overview',
'weight' => -1,
);
$items['admin/logs/page-not-found'] = array(
'title' => t("Top 'page not found' errors"),
'description' => t("View 'page not found' errors (404s)."),
'page callback' => 'watchdog_top',
'page arguments' => array('page not found'),
);
$items['admin/logs/access-denied'] = array(
'title' => t("Top 'access denied' errors"),
'description' => t("View 'access denied' errors (403s)."),
'page callback' => 'watchdog_top',
'page arguments' => array('access denied'),
);
$items['admin/logs/event/%'] = array(
'title' => t('Details'),
'page callback' => 'watchdog_event',
'page arguments' => array(3),
'type' => MENU_CALLBACK,
);
return $items;
}
2004-07-03 14:10:09 +00:00
2007-01-24 14:48:36 +00:00
function watchdog_init() {
if (arg(0) == 'admin' && arg(1) == 'logs') {
// Add the CSS for this module
drupal_add_css(drupal_get_path('module', 'watchdog') .'/watchdog.css', 'module', 'all', FALSE);
2006-08-14 07:14:50 +00:00
}
2001-05-19 13:41:52 +00:00
}
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
2006-03-26 19:31:00 +00:00
/**
* Implementation of hook_user().
*/
function watchdog_user($op, &$edit, &$user) {
if ($op == 'delete') {
2006-03-27 07:29:34 +00:00
db_query('UPDATE {watchdog} SET uid = 0 WHERE uid = %d', $user->uid);
2006-03-26 19:31:00 +00:00
}
}
2006-08-18 18:58:47 +00:00
function watchdog_form_overview() {
2004-11-28 12:28:35 +00:00
$names['all'] = t('all messages');
foreach (_watchdog_get_message_types() as $type) {
2006-08-18 12:17:00 +00:00
$names[$type] = t('!type messages', array('!type' => t($type)));
2004-11-28 12:28:35 +00:00
}
if (empty($_SESSION['watchdog_overview_filter'])) {
$_SESSION['watchdog_overview_filter'] = 'all';
}
2005-10-07 06:11:12 +00:00
$form['filter'] = array(
2005-10-11 19:44:35 +00:00
'#type' => 'select',
'#title' => t('Filter by message type'),
'#options' => $names,
'#default_value' => $_SESSION['watchdog_overview_filter']
2005-10-07 06:11:12 +00:00
);
2007-01-23 19:07:20 +00:00
$form['submit'] = array('#type' => 'submit', '#value' => t('Filter'));
2006-08-18 18:58:47 +00:00
$form['#redirect'] = FALSE;
return $form;
}
/**
* Menu callback; displays a listing of log messages.
*/
function watchdog_overview() {
2006-09-08 23:07:25 +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');
2006-08-18 18:58:47 +00:00
$output = drupal_get_form('watchdog_form_overview');
2004-11-28 12:28:35 +00:00
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'),
2005-08-06 00:35:38 +00:00
array('data' => t('Date'), 'field' => 'w.wid', 'sort' => 'desc'),
2004-08-19 15:41:57 +00:00
array('data' => t('Message'), 'field' => 'w.message'),
array('data' => t('User'), 'field' => 'u.name'),
2005-11-24 19:50:50 +00:00
array('data' => t('Operations'))
2003-08-21 15:47:50 +00:00
);
2006-01-05 23:35:34 +00:00
2006-12-29 17:22:20 +00:00
$sql = "SELECT w.wid, w.uid, w.severity, w.type, w.timestamp, w.message, w.link, u.name FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid";
2006-01-05 23:35:34 +00:00
$tablesort = tablesort_sql($header);
$type = $_SESSION['watchdog_overview_filter'];
if ($type != 'all') {
$result = pager_query($sql ." WHERE w.type = '%s'". $tablesort, 50, 0, NULL, $type);
}
else {
$result = pager_query($sql . $tablesort, 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'),
2007-02-15 11:40:19 +00:00
l(truncate_utf8($watchdog->message, 56, TRUE, TRUE), 'admin/logs/event/'. $watchdog->wid, array('html' => TRUE)),
2005-08-01 05:14:05 +00:00
theme('username', $watchdog),
2004-09-14 20:01:00 +00:00
$watchdog->link,
),
// 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-11-24 19:50:50 +00:00
$rows[] = array(array('data' => t('No log messages available.'), 'colspan' => 6));
2003-08-21 15:47:50 +00:00
}
2003-10-02 08:35:33 +00:00
2004-11-28 12:28:35 +00:00
$output .= theme('table', $header, $rows);
2006-04-13 08:25:27 +00:00
$output .= theme('pager', NULL, 50, 0);
2004-11-28 12:28:35 +00:00
2006-08-29 09:51:50 +00:00
return $output;
}
/**
* Menu callback; generic function to display a page of the most frequent
* watchdog events of a specified type.
*/
function watchdog_top($type) {
$header = array(
array('data' => t('Count'), 'field' => 'count', 'sort' => 'desc'),
array('data' => t('Message'), 'field' => 'message')
);
$result = pager_query("SELECT COUNT(wid) AS count, message FROM {watchdog} WHERE type = '%s' GROUP BY message ". tablesort_sql($header), 30, 0, "SELECT COUNT(DISTINCT(message)) FROM {watchdog} WHERE type = '%s'", $type);
2007-01-31 15:49:26 +00:00
$rows = array();
2006-08-29 09:51:50 +00:00
while ($watchdog = db_fetch_object($result)) {
$rows[] = array($watchdog->count, truncate_utf8($watchdog->message, 56, TRUE, TRUE));
}
2007-01-31 15:49:26 +00:00
if (empty($rows)) {
2006-08-29 09:51:50 +00:00
$rows[] = array(array('data' => t('No log messages available.'), 'colspan' => 2));
}
$output = theme('table', $header, $rows);
$output .= theme('pager', NULL, 30, 0);
2005-04-24 16:34:36 +00:00
return $output;
2000-12-14 14:13:37 +00:00
}
2005-10-07 06:11:12 +00:00
function theme_watchdog_form_overview($form) {
2006-08-10 15:42:33 +00:00
return '<div class="container-inline">'. drupal_render($form) .'</div>';
2005-10-07 06:11:12 +00:00
}
2006-09-08 16:33:02 +00:00
function watchdog_form_overview_submit($form_id, $form_values) {
2005-10-07 06:11:12 +00:00
$_SESSION['watchdog_overview_filter'] = $form_values['filter'];
}
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)) {
2006-08-23 18:16:45 +00:00
$rows = array(
array(
array('data' => t('Type'), 'header' => TRUE),
t($watchdog->type),
),
array(
array('data' => t('Date'), 'header' => TRUE),
format_date($watchdog->timestamp, 'large'),
),
array(
array('data' => t('User'), 'header' => TRUE),
theme('username', $watchdog),
),
array(
array('data' => t('Location'), 'header' => TRUE),
l($watchdog->location, $watchdog->location),
),
array(
array('data' => t('Referrer'), 'header' => TRUE),
l($watchdog->referer, $watchdog->referer),
),
array(
array('data' => t('Message'), 'header' => TRUE),
$watchdog->message,
),
array(
array('data' => t('Severity'), 'header' => TRUE),
$severity[$watchdog->severity],
),
array(
array('data' => t('Hostname'), 'header' => TRUE),
$watchdog->hostname,
),
2007-01-29 19:04:58 +00:00
array(
array('data' => t('Operations'), 'header' => TRUE),
$watchdog->link,
),
2006-08-23 18:16:45 +00:00
);
$attributes = array('class' => 'watchdog-event');
$output = theme('table', array(), $rows, $attributes);
2006-01-24 08:18:26 +00:00
}
return $output;
}
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;
}