mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 05:34:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			776 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			776 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | 
						|
 | 
						|
#ifndef CHECKRESULTREADER_H
 | 
						|
#define CHECKRESULTREADER_H
 | 
						|
 | 
						|
#include "compat/checkresultreader-ti.hpp"
 | 
						|
#include "base/timer.hpp"
 | 
						|
#include <fstream>
 | 
						|
 | 
						|
namespace icinga
 | 
						|
{
 | 
						|
 | 
						|
/**
 | 
						|
 * An Icinga checkresult reader.
 | 
						|
 *
 | 
						|
 * @ingroup compat
 | 
						|
 */
 | 
						|
class CheckResultReader final : public ObjectImpl<CheckResultReader>
 | 
						|
{
 | 
						|
public:
 | 
						|
	DECLARE_OBJECT(CheckResultReader);
 | 
						|
	DECLARE_OBJECTNAME(CheckResultReader);
 | 
						|
 | 
						|
	static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
 | 
						|
 | 
						|
protected:
 | 
						|
	void Start(bool runtimeCreated) override;
 | 
						|
	void Stop(bool runtimeRemoved) override;
 | 
						|
 | 
						|
private:
 | 
						|
	Timer::Ptr m_ReadTimer;
 | 
						|
	void ReadTimerHandler() const;
 | 
						|
	void ProcessCheckResultFile(const String& path) const;
 | 
						|
};
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif /* CHECKRESULTREADER_H */
 |