]> granicus.if.org Git - icinga2/blob - components/perfdata/graphitewriter.cpp
Change copyright header (again).
[icinga2] / components / perfdata / graphitewriter.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)    *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #include "perfdata/graphitewriter.h"
21 #include "icinga/service.h"
22 #include "icinga/macroprocessor.h"
23 #include "icinga/icingaapplication.h"
24 #include "icinga/compatutility.h"
25 #include "icinga/perfdatavalue.h"
26 #include "base/tcpsocket.h"
27 #include "base/dynamictype.h"
28 #include "base/objectlock.h"
29 #include "base/logger_fwd.h"
30 #include "base/convert.h"
31 #include "base/utility.h"
32 #include "base/application.h"
33 #include "base/stream.h"
34 #include "base/networkstream.h"
35 #include "base/bufferedstream.h"
36 #include "base/exception.h"
37 #include "base/statsfunction.h"
38 #include <boost/algorithm/string.hpp>
39 #include <boost/algorithm/string/classification.hpp>
40 #include <boost/foreach.hpp>
41 #include <boost/algorithm/string/split.hpp>
42 #include <boost/algorithm/string/replace.hpp>
43
44 using namespace icinga;
45
46 REGISTER_TYPE(GraphiteWriter);
47
48 REGISTER_STATSFUNCTION(GraphiteWriterStats, &GraphiteWriter::StatsFunc);
49
50 Value GraphiteWriter::StatsFunc(Dictionary::Ptr& status, Dictionary::Ptr& perfdata)
51 {
52         Dictionary::Ptr nodes = make_shared<Dictionary>();
53
54         BOOST_FOREACH(const GraphiteWriter::Ptr& graphitewriter, DynamicType::GetObjects<GraphiteWriter>()) {
55                 nodes->Set(graphitewriter->GetName(), 1); //add more stats
56         }
57
58         status->Set("graphitewriter", nodes);
59
60         return 0;
61 }
62
63 void GraphiteWriter::Start(void)
64 {
65         DynamicObject::Start();
66
67         m_ReconnectTimer = make_shared<Timer>();
68         m_ReconnectTimer->SetInterval(10);
69         m_ReconnectTimer->OnTimerExpired.connect(boost::bind(&GraphiteWriter::ReconnectTimerHandler, this));
70         m_ReconnectTimer->Start();
71         m_ReconnectTimer->Reschedule(0);
72
73         Service::OnNewCheckResult.connect(boost::bind(&GraphiteWriter::CheckResultHandler, this, _1, _2));
74 }
75
76 void GraphiteWriter::ReconnectTimerHandler(void)
77 {
78         try {
79                 if (m_Stream) {
80                         m_Stream->Write("\n", 1);
81                         Log(LogWarning, "perfdata", "GraphiteWriter already connected on socket on host '" + GetHost() + "' port '" + GetPort() + "'.");
82                         return;
83                 }
84         } catch (const std::exception& ex) {
85                 Log(LogWarning, "perfdata", "GraphiteWriter socket on host '" + GetHost() + "' port '" + GetPort() + "' gone. Attempting to reconnect.");       
86         }
87
88         TcpSocket::Ptr socket = make_shared<TcpSocket>();
89
90         Log(LogDebug, "perfdata", "GraphiteWriter: Reconnect to tcp socket on host '" + GetHost() + "' port '" + GetPort() + "'.");
91         socket->Connect(GetHost(), GetPort());
92
93         NetworkStream::Ptr net_stream = make_shared<NetworkStream>(socket);
94         m_Stream = make_shared<BufferedStream>(net_stream);
95 }
96
97 void GraphiteWriter::CheckResultHandler(const Service::Ptr& service, const CheckResult::Ptr& cr)
98 {
99         if (!IcingaApplication::GetInstance()->GetEnablePerfdata() || !service->GetEnablePerfdata())
100                 return;
101
102         /* TODO: sanitize host and service names */
103         String hostName = service->GetHost()->GetName();
104         String serviceName = service->GetShortName();   
105
106         SanitizeMetric(hostName);
107         SanitizeMetric(serviceName);
108
109         String prefix = "icinga." + hostName + "." + serviceName;
110
111         /* basic metrics */
112         SendMetric(prefix, "current_attempt", service->GetCheckAttempt());
113         SendMetric(prefix, "max_check_attempts", service->GetMaxCheckAttempts());
114         SendMetric(prefix, "state_type", service->GetStateType());
115         SendMetric(prefix, "state", service->GetState());
116         SendMetric(prefix, "latency", Service::CalculateLatency(cr));
117         SendMetric(prefix, "execution_time", Service::CalculateExecutionTime(cr));
118
119         Value pdv = cr->GetPerformanceData();
120
121         if (!pdv.IsObjectType<Dictionary>())
122                 return;
123
124         Dictionary::Ptr perfdata = pdv;
125
126         ObjectLock olock(perfdata);
127         BOOST_FOREACH(const Dictionary::Pair& kv, perfdata) {
128                 double valueNum;
129
130                 if (!kv.second.IsObjectType<PerfdataValue>())
131                         valueNum = kv.second;
132                 else
133                         valueNum = static_cast<PerfdataValue::Ptr>(kv.second)->GetValue();
134
135                 String escaped_key = kv.first;
136                 SanitizeMetric(escaped_key);
137                 boost::algorithm::replace_all(escaped_key, "::", ".");
138
139                 SendMetric(prefix, escaped_key, valueNum);
140         }
141 }
142
143 void GraphiteWriter::SendMetric(const String& prefix, const String& name, double value)
144 {
145         std::ostringstream msgbuf;
146         msgbuf << prefix << "." << name << " " << value << " " << static_cast<long>(Utility::GetTime()) << "\n";
147
148         String metric = msgbuf.str();
149         Log(LogDebug, "perfdata", "GraphiteWriter: Add to metric list:'" + metric + "'.");
150
151         ObjectLock olock(this);
152
153         if (!m_Stream)
154                 return;
155
156         try {
157                 m_Stream->Write(metric.CStr(), metric.GetLength());
158         } catch (const std::exception& ex) {
159                 std::ostringstream msgbuf;
160                 msgbuf << "Exception thrown while writing to the Graphite socket: " << std::endl
161                        << DiagnosticInformation(ex);
162
163                 Log(LogCritical, "base", msgbuf.str());
164
165                 m_Stream.reset();
166         }
167 }
168
169 void GraphiteWriter::SanitizeMetric(String& str)
170 {
171         boost::replace_all(str, " ", "_");
172         boost::replace_all(str, ".", "_");
173         boost::replace_all(str, "-", "_");
174         boost::replace_all(str, "\\", "_");
175         boost::replace_all(str, "/", "_");
176 }