2013-03-10 03:09:01 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-03-10 03:09:01 +01: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-09-25 09:31:52 +02:00
|
|
|
#ifndef LIVESTATUSLISTENER_H
|
|
|
|
#define LIVESTATUSLISTENER_H
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2014-05-28 14:25:12 +02:00
|
|
|
#include "livestatus/livestatuslistener.thpp"
|
|
|
|
#include "livestatus/livestatusquery.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/socket.hpp"
|
2013-07-10 14:19:01 +02:00
|
|
|
#include <boost/thread/thread.hpp>
|
2013-03-17 20:19:29 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-11-11 11:57:25 +01:00
|
|
|
namespace icinga
|
2013-03-10 03:09:01 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup livestatus
|
|
|
|
*/
|
2013-11-04 23:14:34 +01:00
|
|
|
class LivestatusListener : public ObjectImpl<LivestatusListener>
|
2013-03-10 03:09:01 +01:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(LivestatusListener);
|
|
|
|
DECLARE_OBJECTNAME(LivestatusListener);
|
2013-09-25 09:31:52 +02:00
|
|
|
|
2014-09-17 15:38:39 +02:00
|
|
|
static Value StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2013-07-19 15:42:00 +02:00
|
|
|
static int GetClientsConnected(void);
|
|
|
|
static int GetConnections(void);
|
2013-03-10 03:09:01 +01:00
|
|
|
|
2013-09-30 10:07:49 +02:00
|
|
|
static void ValidateSocketType(const String& location, const Dictionary::Ptr& attrs);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
protected:
|
|
|
|
virtual void Start(void);
|
|
|
|
|
2013-03-10 03:09:01 +01:00
|
|
|
private:
|
2013-04-04 16:08:02 +02:00
|
|
|
void ServerThreadProc(const Socket::Ptr& server);
|
2013-12-12 12:07:47 +01:00
|
|
|
void ClientHandler(const Socket::Ptr& client);
|
2013-03-10 03:09:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-25 09:31:52 +02:00
|
|
|
#endif /* LIVESTATUSLISTENER_H */
|