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':
$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>';
$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>';
$output .= t('<p>You can</p>
<ul>
<li>view watchdog logs at <a href="%admin-watchdog">administer >> watchdog</a>.</li>
<li>view watchdog event logs at <a href="%admin-watchdog-events">administer >> watchdog >> events</a>.</li>
</ul>
', array('%admin-watchdog' => url('admin/watchdog'), '%admin-watchdog-events' => url('admin/watchdog/events')));
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%watchdog">Watchdog page</a>.', array('%watchdog' => 'http://www.drupal.org/handbook/modules/watchdog/')) .'</p>';
return $output;
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.');
2005-11-01 10:17:34 +00:00
case 'admin/logs':
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>');
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'),
2005-10-21 10:50:03 +00:00
'callback' => 'watchdog_overview');
2004-11-28 12:28:35 +00:00
$items[] = array('path' => 'admin/logs/event', 'title' => t('details'),
2005-10-21 10:50:03 +00:00
'callback' => 'watchdog_event',
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-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');
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
}
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
);
2005-11-13 02:32:18 +00:00
$form['#action'] = url('admin/logs');
2005-10-07 06:11:12 +00:00
2005-10-11 19:44:35 +00:00
$form['submit'] = array('#type' => 'submit', '#value' =>t('Filter'));
2005-10-08 12:21:47 +00:00
$output = drupal_get_form('watchdog_form_overview', $form);
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
$sql = "SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid";
$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'),
2006-01-26 08:42:18 +00:00
l(truncate_utf8($watchdog->message, 56, TRUE, TRUE), 'admin/logs/event/'. $watchdog->wid, array(), NULL, NULL, FALSE, 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);
2005-09-24 07:53:26 +00:00
$output .= theme('pager', NULL, 50, 0, tablesort_pager());
2004-11-28 12:28:35 +00:00
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) {
return '<div class="container-inline">'. form_render($form) .'</div>';
}
2005-12-02 15:21:01 +00:00
function watchdog_form_overview_submit($form_id, $form) {
2005-10-07 06:11:12 +00:00
global $form_values;
$_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-01-24 08:18:26 +00:00
$header = array(t('Type'), t('Date'), t('User'), t('Location'), t('Referrer'), t('Message'), t('Severity'), t('Hostname'));
$data = array(t($watchdog->type), format_date($watchdog->timestamp, 'large'), theme('username', $watchdog), l($watchdog->location, $watchdog->location), l($watchdog->referer, $watchdog->referer), $watchdog->message, $severity[$watchdog->severity], $watchdog->hostname);
$output = theme('watchdog_event', $header, $data);
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
2006-01-24 08:18:26 +00:00
function theme_watchdog_event($header, $data) {
$output = '';
$output .= '<table class="watchdog-event">';
$n = count($header);
for ($i = 0; $i < $n; $i++) {
$output .= '<tr class="' . ($i % 2 == 0 ? 'even' : 'odd') . '"><th>' . $header[$i] . '</th><td>' . $data[$i] . '</td></tr>';
}
$output .= '</table>';
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;
}