mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 03:09:21 +02:00
Added missing functions into disk logstream source
This commit is contained in:
parent
6b6724ab00
commit
f086f6ec3e
@ -92,13 +92,6 @@ class LogStreamDisk extends LogStream {
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to clear the current querystring!
|
||||
*/
|
||||
public function ResetFilters()
|
||||
{
|
||||
// nothing todo in this logstream
|
||||
}
|
||||
|
||||
/**
|
||||
* Close the file.
|
||||
@ -677,6 +670,97 @@ class LogStreamDisk extends LogStream {
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to clear the current querystring!
|
||||
*/
|
||||
public function ResetFilters()
|
||||
{
|
||||
// nothing todo in this logstream
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to verify fields | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function VerifyFields( $arrProperitesIn )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to create missing fields | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function CreateMissingFields( $arrProperitesIn )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to verify indexes | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function VerifyIndexes( $arrProperitesIn )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to create missing indexes | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function CreateMissingIndexes( $arrProperitesIn )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to verify triggers | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function VerifyChecksumTrigger( $myTriggerProperty )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to verify triggers | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function CreateMissingTrigger( $myTriggerProperty, $myCheckSumProperty )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to create missing triggers | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function GetCreateMissingTriggerSQL( $myDBTriggerField, $myDBTriggerCheckSumField )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to verify checksum field | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function VerifyChecksumField( )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to correct the checksum field | not needed in disk logstream!
|
||||
*/
|
||||
public abstract function ChangeChecksumFieldUnsigned( )
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Implementation of ConsolidateItemListByField
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user