]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/dnsdist-carbon.cc
Merge pull request #7537 from andreydomas/dnsnameset
[thirdparty/pdns.git] / pdns / dnsdist-carbon.cc
1 /*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25 #include "iputils.hh"
26 #include "dolog.hh"
27 #include "sstuff.hh"
28
29 #include "namespaces.hh"
30 #include "dnsdist.hh"
31 #include "threadname.hh"
32
33 GlobalStateHolder<vector<CarbonConfig> > g_carbon;
34 static time_t s_start=time(0);
35 uint64_t uptimeOfProcess(const std::string& str)
36 {
37 return time(0) - s_start;
38 }
39
40 void carbonDumpThread()
41 try
42 {
43 setThreadName("dnsdist/carbon");
44 auto localCarbon = g_carbon.getLocal();
45 for(int numloops=0;;++numloops) {
46 if(localCarbon->empty()) {
47 sleep(1);
48 continue;
49 }
50 /* this is wrong, we use the interval of the first server
51 for every single one of them */
52 if(numloops) {
53 const unsigned int interval = localCarbon->at(0).interval;
54 sleep(interval);
55 }
56
57 for (const auto& conf : *localCarbon) {
58 const auto& server = conf.server;
59 const std::string& namespace_name = conf.namespace_name;
60 std::string hostname = conf.ourname;
61 if(hostname.empty()) {
62 char tmp[80];
63 memset(tmp, 0, sizeof(tmp));
64 gethostname(tmp, sizeof(tmp));
65 char *p = strchr(tmp, '.');
66 if(p) *p=0;
67 hostname=tmp;
68 boost::replace_all(hostname, ".", "_");
69 }
70 const std::string& instance_name = conf.instance_name;
71
72 try {
73 Socket s(server.sin4.sin_family, SOCK_STREAM);
74 s.setNonBlocking();
75 s.connect(server); // we do the connect so the attempt happens while we gather stats
76 ostringstream str;
77 time_t now=time(0);
78 for(const auto& e : g_stats.entries) {
79 str<<namespace_name<<"."<<hostname<<"."<<instance_name<<"."<<e.first<<' ';
80 if(const auto& val = boost::get<DNSDistStats::stat_t*>(&e.second))
81 str<<(*val)->load();
82 else if (const auto& dval = boost::get<double*>(&e.second))
83 str<<**dval;
84 else
85 str<<(*boost::get<DNSDistStats::statfunction_t>(&e.second))(e.first);
86 str<<' '<<now<<"\r\n";
87 }
88 auto states = g_dstates.getLocal();
89 for(const auto& state : *states) {
90 string serverName = state->name.empty() ? (state->remote.toString() + ":" + std::to_string(state->remote.getPort())) : state->getName();
91 boost::replace_all(serverName, ".", "_");
92 const string base = namespace_name + "." + hostname + "." + instance_name + ".servers." + serverName + ".";
93 str<<base<<"queries" << ' ' << state->queries.load() << " " << now << "\r\n";
94 str<<base<<"drops" << ' ' << state->reuseds.load() << " " << now << "\r\n";
95 str<<base<<"latency" << ' ' << (state->availability != DownstreamState::Availability::Down ? state->latencyUsec/1000.0 : 0) << " " << now << "\r\n";
96 str<<base<<"senderrors" << ' ' << state->sendErrors.load() << " " << now << "\r\n";
97 str<<base<<"outstanding" << ' ' << state->outstanding.load() << " " << now << "\r\n";
98 }
99 for(const auto& front : g_frontends) {
100 if (front->udpFD == -1 && front->tcpFD == -1)
101 continue;
102
103 string frontName = front->local.toString() + ":" + std::to_string(front->local.getPort()) + (front->udpFD >= 0 ? "_udp" : "_tcp");
104 boost::replace_all(frontName, ".", "_");
105 const string base = namespace_name + "." + hostname + "." + instance_name + ".frontends." + frontName + ".";
106 str<<base<<"queries" << ' ' << front->queries.load() << " " << now << "\r\n";
107 }
108 auto localPools = g_pools.getLocal();
109 for (const auto& entry : *localPools) {
110 string poolName = entry.first;
111 boost::replace_all(poolName, ".", "_");
112 if (poolName.empty()) {
113 poolName = "_default_";
114 }
115 const string base = namespace_name + "." + hostname + "." + instance_name + ".pools." + poolName + ".";
116 const std::shared_ptr<ServerPool> pool = entry.second;
117 str<<base<<"servers" << " " << pool->countServers(false) << " " << now << "\r\n";
118 str<<base<<"servers-up" << " " << pool->countServers(true) << " " << now << "\r\n";
119 if (pool->packetCache != nullptr) {
120 const auto& cache = pool->packetCache;
121 str<<base<<"cache-size" << " " << cache->getMaxEntries() << " " << now << "\r\n";
122 str<<base<<"cache-entries" << " " << cache->getEntriesCount() << " " << now << "\r\n";
123 str<<base<<"cache-hits" << " " << cache->getHits() << " " << now << "\r\n";
124 str<<base<<"cache-misses" << " " << cache->getMisses() << " " << now << "\r\n";
125 str<<base<<"cache-deferred-inserts" << " " << cache->getDeferredInserts() << " " << now << "\r\n";
126 str<<base<<"cache-deferred-lookups" << " " << cache->getDeferredLookups() << " " << now << "\r\n";
127 str<<base<<"cache-lookup-collisions" << " " << cache->getLookupCollisions() << " " << now << "\r\n";
128 str<<base<<"cache-insert-collisions" << " " << cache->getInsertCollisions() << " " << now << "\r\n";
129 str<<base<<"cache-ttl-too-shorts" << " " << cache->getTTLTooShorts() << " " << now << "\r\n";
130 }
131 }
132
133 {
134 WriteLock wl(&g_qcount.queryLock);
135 std::string qname;
136 for(auto &record: g_qcount.records) {
137 qname = record.first;
138 boost::replace_all(qname, ".", "_");
139 str<<"dnsdist.querycount." << qname << ".queries " << record.second << " " << now << "\r\n";
140 }
141 g_qcount.records.clear();
142 }
143
144 const string msg = str.str();
145
146 int ret = waitForRWData(s.getHandle(), false, 1 , 0);
147 if(ret <= 0 ) {
148 vinfolog("Unable to write data to carbon server on %s: %s", server.toStringWithPort(), (ret<0 ? strerror(errno) : "Timeout"));
149 continue;
150 }
151 s.setBlocking();
152 writen2(s.getHandle(), msg.c_str(), msg.size());
153 }
154 catch(std::exception& e) {
155 warnlog("Problem sending carbon data: %s", e.what());
156 }
157 }
158 }
159 }
160 catch(std::exception& e)
161 {
162 errlog("Carbon thread died: %s", e.what());
163 }
164 catch(PDNSException& e)
165 {
166 errlog("Carbon thread died, PDNSException: %s", e.reason);
167 }
168 catch(...)
169 {
170 errlog("Carbon thread died");
171 }