mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 11:19:26 +02:00
the filters properly. The real filtering will be done in tog logstream facility. -Modified index page, added first filters for configuration.
31 lines
840 B
PHP
31 lines
840 B
PHP
<?php
|
|
/*
|
|
*********************************************************************
|
|
* Copyright by Adiscon GmbH | 2008! *
|
|
* -> www.phplogcon.org <- *
|
|
* *
|
|
* Use this script at your own risk! *
|
|
* ----------------------------------------------------------------- *
|
|
* Some constants *
|
|
* *
|
|
* -> Stuff which has to be static and predefined *
|
|
* *
|
|
* All directives are explained within this file *
|
|
*********************************************************************
|
|
*/
|
|
|
|
// --- Avoid directly accessing this file!
|
|
if ( !defined('IN_PHPLOGCON') )
|
|
{
|
|
die('Hacking attempt');
|
|
exit;
|
|
}
|
|
// ---
|
|
|
|
// --- Some custom defines
|
|
define('DATEMODE_ALL', 1);
|
|
define('DATEMODE_RANGE', 2);
|
|
define('DATEMODE_LASTX', 3);
|
|
|
|
// ---
|
|
?>
|