2013-06-06 11:26:00 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-06-06 11:26:00 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-06-06 11:26:30 +02:00
|
|
|
#ifndef FILELOGGER_H
|
|
|
|
#define FILELOGGER_H
|
2013-06-06 11:26:00 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/filelogger.thpp"
|
2013-06-06 11:26:00 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2013-06-06 11:26:30 +02:00
|
|
|
* A logger that logs to a file.
|
2013-06-06 11:26:00 +02:00
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2013-11-04 23:14:34 +01:00
|
|
|
class I2_BASE_API FileLogger : public ObjectImpl<FileLogger>
|
2013-06-06 11:26:00 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-07-09 08:42:08 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(FileLogger);
|
2014-08-17 17:57:20 +02:00
|
|
|
DECLARE_TYPENAME(FileLogger);
|
2013-06-06 11:26:00 +02:00
|
|
|
|
2014-08-17 17:57:20 +02:00
|
|
|
static Value StatsFunc(Dictionary::Ptr& status, Dictionary::Ptr& perfdata);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
virtual void Start(void);
|
2014-05-22 11:22:30 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void ReopenLogFile(void);
|
2013-06-06 11:26:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-06 11:26:30 +02:00
|
|
|
#endif /* FILELOGGER_H */
|