]> granicus.if.org Git - icinga2/commitdiff
Add GelfWriter
authorMarius Sturm <marius@torch.sh>
Wed, 5 Nov 2014 21:00:44 +0000 (22:00 +0100)
committerMichael Friedrich <michael.friedrich@netways.de>
Tue, 11 Nov 2014 13:16:48 +0000 (14:16 +0100)
refs #7619

lib/perfdata/CMakeLists.txt
lib/perfdata/gelfwriter.cpp [new file with mode: 0644]
lib/perfdata/gelfwriter.hpp [new file with mode: 0644]
lib/perfdata/gelfwriter.ti [new file with mode: 0644]

index 16dda3518bbac27cf7a1f09b541cd8df6983d684..6a57e755991e88605869d7dfe3bfed97464ac3bb 100644 (file)
 # along with this program; if not, write to the Free Software Foundation
 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
+mkclass_target(gelfwriter.ti gelfwriter.thpp)
 mkclass_target(graphitewriter.ti graphitewriter.thpp)
 mkclass_target(perfdatawriter.ti perfdatawriter.thpp)
 
 mkembedconfig_target(perfdata-type.conf perfdata-type.cpp)
 
 set(perfdata_SOURCES
-  graphitewriter.cpp graphitewriter.thpp perfdatawriter.cpp perfdatawriter.thpp perfdata-type.cpp
+  gelfwriter.cpp gelfwriter.thpp graphitewriter.cpp graphitewriter.thpp perfdatawriter.cpp perfdatawriter.thpp perfdata-type.cpp
 )
 
 if(ICINGA2_UNITY_BUILD)
diff --git a/lib/perfdata/gelfwriter.cpp b/lib/perfdata/gelfwriter.cpp
new file mode 100644 (file)
index 0000000..29723c7
--- /dev/null
@@ -0,0 +1,201 @@
+/******************************************************************************
+ * Icinga 2                                                                   *
+ * Copyright (C) 2012-2014 Icinga Development Team (http://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 "perfdata/gelfwriter.hpp"
+#include "icinga/service.hpp"
+#include "icinga/notification.hpp"
+#include "icinga/macroprocessor.hpp"
+#include "icinga/compatutility.hpp"
+#include "icinga/perfdatavalue.hpp"
+#include "base/tcpsocket.hpp"
+#include "base/dynamictype.hpp"
+#include "base/objectlock.hpp"
+#include "base/logger.hpp"
+#include "base/utility.hpp"
+#include "base/stream.hpp"
+#include "base/networkstream.hpp"
+#include "base/json.hpp"
+
+using namespace icinga;
+
+REGISTER_TYPE(GelfWriter);
+
+void GelfWriter::Start(void)
+{
+       DynamicObject::Start();
+
+  m_ReconnectTimer = make_shared<Timer>();
+  m_ReconnectTimer->SetInterval(10);
+  m_ReconnectTimer->OnTimerExpired.connect(boost::bind(&GelfWriter::ReconnectTimerHandler, this));
+  m_ReconnectTimer->Start();
+  m_ReconnectTimer->Reschedule(0);
+
+  // Send check results
+       Service::OnNewCheckResult.connect(boost::bind(&GelfWriter::CheckResultHandler, this, _1, _2));
+  // Send notifications
+  Service::OnNotificationSentToUser.connect(boost::bind(&GelfWriter::NotificationToUserHandler, this, _1, _2, _3, _4, _5, _6, _7, _8));
+  // Send state change
+  Service::OnStateChange.connect(boost::bind(&GelfWriter::StateChangeHandler, this, _1, _2, _3));
+}
+
+void GelfWriter::ReconnectTimerHandler(void)
+{
+  if (m_Stream)
+    return;
+
+  TcpSocket::Ptr socket = make_shared<TcpSocket>();
+
+  Log(LogNotice, "GelfWriter")
+      << "Reconnecting to GELF endpoint '" << GetHost() << "' port '" << GetPort() << "'.";
+
+  try {
+    socket->Connect(GetHost(), GetPort());
+  } catch (std::exception&) {
+    Log(LogCritical, "GelfWriter")
+        << "Can't connect to GELF endpoint '" << GetHost() << "' port '" << GetPort() << "'.";
+    return;
+  }
+
+  m_Stream = make_shared<NetworkStream>(socket);
+}
+
+void GelfWriter::CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr)
+{
+       CONTEXT("GELF Processing check result for '" + checkable->GetName() + "'");
+
+  Dictionary::Ptr fields = make_shared<Dictionary>();
+  Service::Ptr service   = dynamic_pointer_cast<Service>(checkable);
+  Host::Ptr host;
+
+  if (service) {
+    host = service->GetHost();
+    fields->Set("_service_name", service->GetShortName());
+    fields->Set("_service_state", Service::StateToString(service->GetState()));
+  } else {
+    host = static_pointer_cast<Host>(checkable);
+  }
+  fields->Set("_hostname", host->GetName());
+  fields->Set("short_message", cr->GetOutput());
+  fields->Set("_type", "CHECK RESULT");
+
+  SendLogMessage(ComposeGelfMessage(fields, "icinga"));
+}
+
+void GelfWriter::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)
+{
+  CONTEXT("GELF Processing notification to all users '" + checkable->GetName() + "'");
+  
+  Host::Ptr host;
+  Service::Ptr service;
+  tie(host, service) = GetHostService(checkable);
+
+  String notification_type_str = Notification::NotificationTypeToString(notification_type);
+
+  String author_comment = "";
+  if (notification_type == NotificationCustom || notification_type == NotificationAcknowledgement) {
+    author_comment = author + ";" + comment_text;
+  }
+
+  String output;
+  if (cr)
+    output = CompatUtility::GetCheckResultOutput(cr);
+
+  Dictionary::Ptr fields = make_shared<Dictionary>();
+  if (service) {
+    host = service->GetHost();
+    fields->Set("_type", "SERVICE NOTIFICATION");
+    fields->Set("_service", service->GetShortName());
+    fields->Set("short_message", output);
+  } else {
+    host = static_pointer_cast<Host>(checkable);
+    fields->Set("_type", "HOST NOTIFICATION");
+    fields->Set("short_message", "(" << (host->IsReachable() ? Host::StateToString(host->GetState()) : "UNREACHABLE") << ")");
+  }
+  fields->Set("_hostname", host->GetName());
+  fields->Set("_command", command_name);
+  fields->Set("_state", notification_type_str);
+  fields->Set("_comment", author_comment);
+
+  SendLogMessage(ComposeGelfMessage(fields, "icinga"));
+}
+
+void GelfWriter::StateChangeHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, StateType type)
+{
+  CONTEXT("GELF Processing state change '" + checkable->GetName() + "'");
+
+  Host::Ptr host;
+  Service::Ptr service;
+  tie(host, service) = GetHostService(checkable);
+
+  Dictionary::Ptr fields = make_shared<Dictionary>();
+  fields->Set("_state", service ? static_cast<int>(service->GetState()) : static_cast<int>(host->GetState()));
+  fields->Set("_type", "STATE CHANGE");
+  fields->Set("_current_check_attempt", checkable->GetCheckAttempt());
+  fields->Set("_max_check_attempts", checkable->GetMaxCheckAttempts());
+
+  if (service) {
+    fields->Set("_last_state", service->GetLastState());
+    fields->Set("_last_hard_state", service->GetLastHardState());
+  } else {
+    fields->Set("_last_state", host->GetLastState());
+    fields->Set("_last_hard_state", host->GetLastHardState());
+  }
+
+  if (cr) {
+    fields->Set("short_message", CompatUtility::GetCheckResultOutput(cr));
+    fields->Set("full_message", CompatUtility::GetCheckResultLongOutput(cr));
+    fields->Set("_check_source", cr->GetCheckSource());
+  }
+
+  SendLogMessage(ComposeGelfMessage(fields, "icinga"));
+}
+
+String GelfWriter::ComposeGelfMessage(const Dictionary::Ptr& fields, const String& source)
+{
+  fields->Set("version", "1.1");
+  fields->Set("host", source);
+  fields->Set("timestamp", Utility::GetTime());
+
+  return JsonEncode(fields);
+}
+
+void GelfWriter::SendLogMessage(const String& gelf)
+{
+  std::ostringstream msgbuf;
+  msgbuf << gelf;
+  msgbuf << '\0';
+
+  String log = msgbuf.str();
+
+  ObjectLock olock(this);
+
+  if (!m_Stream)
+    return;
+
+  try {
+    m_Stream->Write(log.CStr(), log.GetLength());
+  } catch (const std::exception& ex) {
+    Log(LogCritical, "GelfWriter")
+        << "Cannot write to TCP socket on host '" << GetHost() << "' port '" << GetPort() << "'.";
+
+    m_Stream.reset();
+  }
+}
diff --git a/lib/perfdata/gelfwriter.hpp b/lib/perfdata/gelfwriter.hpp
new file mode 100644 (file)
index 0000000..a15fc9a
--- /dev/null
@@ -0,0 +1,65 @@
+/******************************************************************************
+ * Icinga 2                                                                   *
+ * Copyright (C) 2012-2014 Icinga Development Team (http://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 GELFWRITER_H
+#define GELFWRITER_H
+
+#include "perfdata/gelfwriter.thpp"
+#include "icinga/service.hpp"
+#include "base/dynamicobject.hpp"
+#include "base/tcpsocket.hpp"
+#include "base/timer.hpp"
+#include <fstream>
+
+namespace icinga
+{
+
+/**
+ * An Icinga gelf writer.
+ *
+ * @ingroup perfdata
+ */
+class GelfWriter : public ObjectImpl<GelfWriter>
+{
+public:
+       DECLARE_OBJECT(GelfWriter);
+       DECLARE_OBJECTNAME(GelfWriter);
+
+protected:
+       virtual void Start(void);
+
+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);
+  String ComposeGelfMessage(const Dictionary::Ptr& fields, const String& source);
+  void StateChangeHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, StateType type);
+  void SendLogMessage(const String& gelf);
+
+       void ReconnectTimerHandler(void);
+};
+
+}
+
+#endif /* GELFWRITER_H */
diff --git a/lib/perfdata/gelfwriter.ti b/lib/perfdata/gelfwriter.ti
new file mode 100644 (file)
index 0000000..5018f70
--- /dev/null
@@ -0,0 +1,41 @@
+/******************************************************************************
+ * Icinga 2                                                                   *
+ * Copyright (C) 2012-2014 Icinga Development Team (http://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/dynamicobject.hpp"
+
+namespace icinga
+{
+
+class GelfWriter : DynamicObject
+{
+       [config] String host {
+               default {{{ return "127.0.0.1"; }}}
+       };
+       [config] String port {
+               default {{{ return "12201"; }}}
+       };
+       [config] String host_name_template {
+               default {{{ return "icinga.$host.name$"; }}}
+       };
+       [config] String service_name_template {
+               default {{{ return "icinga.$host.name$.$service.name$"; }}}
+       };
+};
+
+}