mirror of https://github.com/Icinga/icinga2.git
Revert "Add LogstashWriter feature"
This reverts commit f5a971f5b0
.
refs #4054
This commit is contained in:
parent
4c7660190f
commit
52d986d02b
|
@ -1,13 +0,0 @@
|
||||||
/**
|
|
||||||
* The LogstashWriter type writes check result metrics and
|
|
||||||
* performance data to a TCP or UDP socket.
|
|
||||||
*/
|
|
||||||
|
|
||||||
library "perfdata"
|
|
||||||
|
|
||||||
object LogstashWriter "logstash" {
|
|
||||||
//host = "127.0.0.1"
|
|
||||||
//port = 9201
|
|
||||||
/* default is tcp */
|
|
||||||
//defaultProtocol = true
|
|
||||||
}
|
|
|
@ -38,7 +38,7 @@ set(base_SOURCES
|
||||||
perfdatavalue.cpp perfdatavalue.thpp scriptglobal.cpp
|
perfdatavalue.cpp perfdatavalue.thpp scriptglobal.cpp
|
||||||
scriptutils.cpp serializer.cpp socket.cpp socketevents.cpp socketevents-epoll.cpp socketevents-poll.cpp stacktrace.cpp
|
scriptutils.cpp serializer.cpp socket.cpp socketevents.cpp socketevents-epoll.cpp socketevents-poll.cpp stacktrace.cpp
|
||||||
statsfunction.cpp stdiostream.cpp stream.cpp streamlogger.cpp streamlogger.thpp string.cpp string-script.cpp
|
statsfunction.cpp stdiostream.cpp stream.cpp streamlogger.cpp streamlogger.thpp string.cpp string-script.cpp
|
||||||
sysloglogger.cpp sysloglogger.thpp tcpsocket.cpp udpsocket.cpp threadpool.cpp timer.cpp
|
sysloglogger.cpp sysloglogger.thpp tcpsocket.cpp threadpool.cpp timer.cpp
|
||||||
tlsstream.cpp tlsutility.cpp type.cpp typetype-script.cpp unixsocket.cpp utility.cpp value.cpp
|
tlsstream.cpp tlsutility.cpp type.cpp typetype-script.cpp unixsocket.cpp utility.cpp value.cpp
|
||||||
value-operators.cpp workqueue.cpp
|
value-operators.cpp workqueue.cpp
|
||||||
)
|
)
|
||||||
|
|
|
@ -45,7 +45,6 @@ Value Dictionary::Get(const String& key) const
|
||||||
return it->second;
|
return it->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves a value from a dictionary.
|
* Retrieves a value from a dictionary.
|
||||||
*
|
*
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
#include <socketpair.h>
|
#include <socketpair.h>
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <poll.h>
|
# include <poll.h>
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
using namespace icinga;
|
using namespace icinga;
|
||||||
|
@ -423,86 +423,3 @@ void Socket::SocketPair(SOCKET s[2])
|
||||||
<< boost::errinfo_errno(errno));
|
<< boost::errinfo_errno(errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a socket and connects to the specified node and service.
|
|
||||||
*
|
|
||||||
* @param node The node.
|
|
||||||
* @param service The service.
|
|
||||||
* @param protocol The protocol
|
|
||||||
*/
|
|
||||||
void Socket::Connect(const String& node, const String& service)
|
|
||||||
{
|
|
||||||
addrinfo hints;
|
|
||||||
addrinfo *result;
|
|
||||||
int error;
|
|
||||||
const char *func;
|
|
||||||
|
|
||||||
SocketType();
|
|
||||||
memset(&hints, 0, sizeof(hints));
|
|
||||||
hints.ai_family = AF_UNSPEC;
|
|
||||||
hints.ai_socktype = socktype;
|
|
||||||
hints.ai_protocol = protocol;
|
|
||||||
int rc = getaddrinfo(node.CStr(), service.CStr(), &hints, &result);
|
|
||||||
|
|
||||||
if (rc != 0) {
|
|
||||||
Log(LogCritical, protocol+"Socket")
|
|
||||||
<< "getaddrinfo() failed with error code " << rc << ", \"" << gai_strerror(rc) << "\"";
|
|
||||||
|
|
||||||
BOOST_THROW_EXCEPTION(socket_error()
|
|
||||||
<< boost::errinfo_api_function("getaddrinfo")
|
|
||||||
<< errinfo_getaddrinfo_error(rc));
|
|
||||||
}
|
|
||||||
|
|
||||||
int fd = INVALID_SOCKET;
|
|
||||||
|
|
||||||
for (addrinfo *info = result; info != NULL; info = info->ai_next) {
|
|
||||||
fd = socket(info->ai_family, info->ai_socktype, info->ai_protocol);
|
|
||||||
|
|
||||||
if (fd == INVALID_SOCKET) {
|
|
||||||
#ifdef _WIN32
|
|
||||||
error = WSAGetLastError();
|
|
||||||
#else /* _WIN32 */
|
|
||||||
error = errno;
|
|
||||||
#endif /* _WIN32 */
|
|
||||||
func = "socket";
|
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
rc = connect(fd, info->ai_addr, info->ai_addrlen);
|
|
||||||
|
|
||||||
if (rc < 0) {
|
|
||||||
#ifdef _WIN32
|
|
||||||
error = WSAGetLastError();
|
|
||||||
#else /* _WIN32 */
|
|
||||||
error = errno;
|
|
||||||
#endif /* _WIN32 */
|
|
||||||
func = "connect";
|
|
||||||
|
|
||||||
closesocket(fd);
|
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
SetFD(fd);
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
freeaddrinfo(result);
|
|
||||||
|
|
||||||
if (GetFD() == INVALID_SOCKET) {
|
|
||||||
Log(LogCritical, "UdpSocket")
|
|
||||||
<< "Invalid socket: " << Utility::FormatErrorNumber(error);
|
|
||||||
|
|
||||||
#ifndef _WIN32
|
|
||||||
BOOST_THROW_EXCEPTION(socket_error()
|
|
||||||
<< boost::errinfo_api_function(func)
|
|
||||||
<< boost::errinfo_errno(error));
|
|
||||||
#else /* _WIN32 */
|
|
||||||
BOOST_THROW_EXCEPTION(socket_error()
|
|
||||||
<< boost::errinfo_api_function(func)
|
|
||||||
<< errinfo_win32_error(error));
|
|
||||||
#endif /* _WIN32 */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -51,7 +51,6 @@ public:
|
||||||
size_t Write(const void *buffer, size_t size);
|
size_t Write(const void *buffer, size_t size);
|
||||||
|
|
||||||
void Listen(void);
|
void Listen(void);
|
||||||
void Connect(const String& node, const String& service);
|
|
||||||
Socket::Ptr Accept(void);
|
Socket::Ptr Accept(void);
|
||||||
|
|
||||||
bool Poll(bool read, bool write, struct timeval *timeout = NULL);
|
bool Poll(bool read, bool write, struct timeval *timeout = NULL);
|
||||||
|
@ -64,10 +63,6 @@ protected:
|
||||||
void SetFD(SOCKET fd);
|
void SetFD(SOCKET fd);
|
||||||
|
|
||||||
int GetError(void) const;
|
int GetError(void) const;
|
||||||
int socktype;
|
|
||||||
int protocol;
|
|
||||||
|
|
||||||
virtual void SocketType(){};
|
|
||||||
|
|
||||||
mutable boost::mutex m_SocketMutex;
|
mutable boost::mutex m_SocketMutex;
|
||||||
|
|
||||||
|
|
|
@ -27,11 +27,6 @@
|
||||||
|
|
||||||
using namespace icinga;
|
using namespace icinga;
|
||||||
|
|
||||||
void TcpSocket::SocketType(){
|
|
||||||
socktype = SOCK_STREAM;
|
|
||||||
protocol = IPPROTO_TCP;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a socket and binds it to the specified service.
|
* Creates a socket and binds it to the specified service.
|
||||||
*
|
*
|
||||||
|
|
|
@ -39,8 +39,7 @@ public:
|
||||||
void Bind(const String& service, int family);
|
void Bind(const String& service, int family);
|
||||||
void Bind(const String& node, const String& service, int family);
|
void Bind(const String& node, const String& service, int family);
|
||||||
|
|
||||||
private:
|
void Connect(const String& node, const String& service);
|
||||||
void SocketType();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
/******************************************************************************
|
|
||||||
* Icinga 2 *
|
|
||||||
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
|
||||||
* *
|
|
||||||
* 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. *
|
|
||||||
******************************************************************************/
|
|
||||||
|
|
||||||
#include "base/udpsocket.hpp"
|
|
||||||
#include "base/logger.hpp"
|
|
||||||
#include "base/utility.hpp"
|
|
||||||
#include "base/exception.hpp"
|
|
||||||
#include <boost/exception/errinfo_api_function.hpp>
|
|
||||||
#include <boost/exception/errinfo_errno.hpp>
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
using namespace icinga;
|
|
||||||
|
|
||||||
void UdpSocket::SocketType(){
|
|
||||||
socktype = SOCK_DGRAM;
|
|
||||||
protocol = IPPROTO_UDP;
|
|
||||||
}
|
|
|
@ -1,45 +0,0 @@
|
||||||
/******************************************************************************
|
|
||||||
* Icinga 2 *
|
|
||||||
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
|
||||||
* *
|
|
||||||
* 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. *
|
|
||||||
******************************************************************************/
|
|
||||||
|
|
||||||
#ifndef UDPSOCKET_H
|
|
||||||
#define UDPSOCKET_H
|
|
||||||
|
|
||||||
#include "base/i2-base.hpp"
|
|
||||||
#include "base/socket.hpp"
|
|
||||||
|
|
||||||
namespace icinga
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A UDP socket.
|
|
||||||
*
|
|
||||||
* @ingroup base
|
|
||||||
*/
|
|
||||||
class I2_BASE_API UdpSocket : public Socket
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
DECLARE_PTR_TYPEDEFS(UdpSocket);
|
|
||||||
|
|
||||||
private:
|
|
||||||
void SocketType();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* UDPSOCKET_H */
|
|
||||||
|
|
|
@ -17,13 +17,12 @@
|
||||||
|
|
||||||
mkclass_target(gelfwriter.ti gelfwriter.tcpp gelfwriter.thpp)
|
mkclass_target(gelfwriter.ti gelfwriter.tcpp gelfwriter.thpp)
|
||||||
mkclass_target(graphitewriter.ti graphitewriter.tcpp graphitewriter.thpp)
|
mkclass_target(graphitewriter.ti graphitewriter.tcpp graphitewriter.thpp)
|
||||||
mkclass_target(logstashwriter.ti logstashwriter.tcpp logstashwriter.thpp)
|
|
||||||
mkclass_target(influxdbwriter.ti influxdbwriter.tcpp influxdbwriter.thpp)
|
mkclass_target(influxdbwriter.ti influxdbwriter.tcpp influxdbwriter.thpp)
|
||||||
mkclass_target(opentsdbwriter.ti opentsdbwriter.tcpp opentsdbwriter.thpp)
|
mkclass_target(opentsdbwriter.ti opentsdbwriter.tcpp opentsdbwriter.thpp)
|
||||||
mkclass_target(perfdatawriter.ti perfdatawriter.tcpp perfdatawriter.thpp)
|
mkclass_target(perfdatawriter.ti perfdatawriter.tcpp perfdatawriter.thpp)
|
||||||
|
|
||||||
set(perfdata_SOURCES
|
set(perfdata_SOURCES
|
||||||
gelfwriter.cpp gelfwriter.thpp graphitewriter.cpp graphitewriter.thpp logstashwriter.cpp logstashwriter.thpp influxdbwriter.cpp influxdbwriter.thpp opentsdbwriter.cpp opentsdbwriter.thpp perfdatawriter.cpp perfdatawriter.thpp
|
gelfwriter.cpp gelfwriter.thpp graphitewriter.cpp graphitewriter.thpp influxdbwriter.cpp influxdbwriter.thpp opentsdbwriter.cpp opentsdbwriter.thpp perfdatawriter.cpp perfdatawriter.thpp
|
||||||
)
|
)
|
||||||
|
|
||||||
if(ICINGA2_UNITY_BUILD)
|
if(ICINGA2_UNITY_BUILD)
|
||||||
|
@ -52,11 +51,6 @@ install_if_not_exists(
|
||||||
${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
|
${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
|
||||||
)
|
)
|
||||||
|
|
||||||
install_if_not_exists(
|
|
||||||
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/logstash.conf
|
|
||||||
${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
|
|
||||||
)
|
|
||||||
|
|
||||||
install_if_not_exists(
|
install_if_not_exists(
|
||||||
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/influxdb.conf
|
${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/influxdb.conf
|
||||||
${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
|
${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
|
||||||
|
|
|
@ -64,4 +64,3 @@ private:
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* GELFWRITER_H */
|
#endif /* GELFWRITER_H */
|
||||||
|
|
||||||
|
|
|
@ -1,67 +0,0 @@
|
||||||
/******************************************************************************
|
|
||||||
* Icinga 2 *
|
|
||||||
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
|
||||||
* *
|
|
||||||
* 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. *
|
|
||||||
******************************************************************************/
|
|
||||||
|
|
||||||
#ifndef LOGSTASHWRITER_H
|
|
||||||
#define LOGSTASHWRITER_H
|
|
||||||
|
|
||||||
#include "perfdata/logstashwriter.thpp"
|
|
||||||
#include "icinga/service.hpp"
|
|
||||||
#include "base/configobject.hpp"
|
|
||||||
#include "base/tcpsocket.hpp"
|
|
||||||
#include "base/udpsocket.hpp"
|
|
||||||
#include "base/timer.hpp"
|
|
||||||
#include <fstream>
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
namespace icinga
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An Icinga logstash writer.
|
|
||||||
*
|
|
||||||
* @ingroup perfdata
|
|
||||||
*/
|
|
||||||
class LogstashWriter : public ObjectImpl<LogstashWriter>
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
DECLARE_OBJECT(LogstashWriter);
|
|
||||||
DECLARE_OBJECTNAME(LogstashWriter);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void Start(bool runtimeCreated) override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
Stream::Ptr m_Stream;
|
|
||||||
|
|
||||||
Timer::Ptr m_ReconnectTimer;
|
|
||||||
|
|
||||||
void CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
|
|
||||||
void NotificationToUserHandler(const Notification::Ptr& notification, const Checkable::Ptr& checkable,
|
|
||||||
const User::Ptr& user, NotificationType notification_type, CheckResult::Ptr const& cr,
|
|
||||||
const String& author, const String& comment_text, const String& command_name);
|
|
||||||
void StateChangeHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, StateType type);
|
|
||||||
void SendLogMessage(const String& message);
|
|
||||||
String ComposeLogstashMessage(const Dictionary::Ptr& fields, const String& source, double ts);
|
|
||||||
|
|
||||||
void ReconnectTimerHandler(void);
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* LOGSTASHWRITER_H */
|
|
|
@ -1,50 +0,0 @@
|
||||||
/******************************************************************************
|
|
||||||
* Icinga 2 *
|
|
||||||
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
|
||||||
* *
|
|
||||||
* 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. *
|
|
||||||
******************************************************************************/
|
|
||||||
|
|
||||||
#include "base/configobject.hpp"
|
|
||||||
|
|
||||||
library perfdata;
|
|
||||||
|
|
||||||
namespace icinga
|
|
||||||
{
|
|
||||||
|
|
||||||
class LogstashWriter : ConfigObject
|
|
||||||
{
|
|
||||||
[config] String host {
|
|
||||||
default {{{ return "127.0.0.1"; }}}
|
|
||||||
};
|
|
||||||
|
|
||||||
[config] String port {
|
|
||||||
default {{{ return "9201"; }}}
|
|
||||||
};
|
|
||||||
|
|
||||||
[config] bool defaultProtocol {
|
|
||||||
default {{{ return "true"; }}}
|
|
||||||
};
|
|
||||||
|
|
||||||
[config] String source {
|
|
||||||
default {{{ return "icinga2"; }}}
|
|
||||||
};
|
|
||||||
|
|
||||||
[config] bool enable_send_perfdata {
|
|
||||||
default {{{ return false; }}}
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue