2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-12-17 12:58:04 +01:00
|
|
|
|
2014-05-28 14:25:12 +02:00
|
|
|
#ifndef LIVESTATUSLOGUTILITY_H
|
|
|
|
#define LIVESTATUSLOGUTILITY_H
|
2013-12-17 12:58:04 +01:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/historytable.hpp"
|
2013-12-17 12:58:04 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
enum LogEntryType {
|
2017-12-19 15:50:05 +01:00
|
|
|
LogEntryTypeHostAlert,
|
|
|
|
LogEntryTypeHostDowntimeAlert,
|
|
|
|
LogEntryTypeHostFlapping,
|
|
|
|
LogEntryTypeHostNotification,
|
|
|
|
LogEntryTypeHostInitialState,
|
|
|
|
LogEntryTypeHostCurrentState,
|
|
|
|
LogEntryTypeServiceAlert,
|
|
|
|
LogEntryTypeServiceDowntimeAlert,
|
|
|
|
LogEntryTypeServiceFlapping,
|
|
|
|
LogEntryTypeServiceNotification,
|
|
|
|
LogEntryTypeServiceInitialState,
|
|
|
|
LogEntryTypeServiceCurrentState,
|
|
|
|
LogEntryTypeTimeperiodTransition,
|
|
|
|
LogEntryTypeVersion,
|
|
|
|
LogEntryTypeInitialStates,
|
|
|
|
LogEntryTypeProgramStarting
|
2013-12-17 12:58:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum LogEntryClass {
|
2017-12-19 15:50:05 +01:00
|
|
|
LogEntryClassInfo = 0,
|
|
|
|
LogEntryClassAlert = 1,
|
|
|
|
LogEntryClassProgram = 2,
|
|
|
|
LogEntryClassNotification = 3,
|
|
|
|
LogEntryClassPassive = 4,
|
|
|
|
LogEntryClassCommand = 5,
|
|
|
|
LogEntryClassState = 6,
|
|
|
|
LogEntryClassText = 7
|
2013-12-17 12:58:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup livestatus
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class LivestatusLogUtility
|
2013-12-17 12:58:04 +01:00
|
|
|
{
|
|
|
|
public:
|
2013-12-18 16:06:39 +01:00
|
|
|
static void CreateLogIndex(const String& path, std::map<time_t, String>& index);
|
|
|
|
static void CreateLogIndexFileHandler(const String& path, std::map<time_t, String>& index);
|
2013-12-18 17:19:16 +01:00
|
|
|
static void CreateLogCache(std::map<time_t, String> index, HistoryTable *table, time_t from, time_t until, const AddRowFunction& addRowFn);
|
2013-12-17 12:58:04 +01:00
|
|
|
static Dictionary::Ptr GetAttributes(const String& text);
|
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
LivestatusLogUtility();
|
2013-12-17 12:58:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-28 14:25:12 +02:00
|
|
|
#endif /* LIVESTATUSLOGUTILITY_H */
|