-
Notifications
You must be signed in to change notification settings - Fork 6
/
DataDogStatsD.cpp
679 lines (596 loc) · 16.8 KB
/
DataDogStatsD.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
#include "datadogstatsd/DataDogStatsD.h"
using namespace std;
/// <summary>Initialise the DogStatsD with the API and app key, defaulting to host localhost and port 8125</summary>
/// <param name="api_key">Your API Key</param>
/// <param name="app_key">Your app key</param>
DataDogStatsD::DataDogStatsD()
{
const char* env_host = getenv("DD_AGENT_HOST");
const char* env_port = getenv("DD_DOGSTATSD_PORT");
this->dd_entity_id = getenv("DD_ENTITY_ID");
if (env_host != nullptr)
{
this->host = env_host;
}
else
{
this->host = "127.0.0.1";
}
if (env_port != nullptr)
{
this->port = atoi(env_port);
}
else
{
this->port = 8125;
}
}
DataDogStatsD::DataDogStatsD(std::string host, unsigned int port)
{
this->host = host;
this->port = port;
this->dd_entity_id = getenv("DD_ENTITY_ID");
}
DataDogStatsD::DataDogStatsD(string api_key, string app_key)
{
this->api_key = api_key;
this->app_key = app_key;
const char* env_host = getenv("DD_AGENT_HOST");
const char* env_port = getenv("DD_DOGSTATSD_PORT");
if (env_host != nullptr)
{
this->host = env_host;
}
else
{
this->host = "127.0.0.1";
}
if (env_port != nullptr)
{
this->port = atoi(env_port);
}
else
{
this->port = 8125;
}
this->dd_entity_id = getenv("DD_ENTITY_ID");
}
/// <summary>Initialise the DogStatsD with the API and app key, customised hostname and default port of 8125</summary>
/// <param name="api_key">Your API Key</param>
/// <param name="app_key">Your app key</param>
/// <param name="host">The hostname to send to DogStatsD
DataDogStatsD::DataDogStatsD(string api_key, string app_key, string host)
{
this->api_key = api_key;
this->app_key = app_key;
this->host = host;
this->port = 8125;
this->dd_entity_id = getenv("DD_ENTITY_ID");
}
/// <summary>Initialise the DogStatsD with the API and app key, customised port number defaults to host localhost</summary>
/// <param name="api_key">Your API Key</param>
/// <param name="app_key">Your app key</param>
/// <param name="port">The port number to send to DogStatsD</param>
DataDogStatsD::DataDogStatsD(string api_key, string app_key, unsigned int port)
{
this->api_key = api_key;
this->app_key = app_key;
this->host = "127.0.0.1";
this->port = port;
this->dd_entity_id = getenv("DD_ENTITY_ID");
}
/// <summary>Initialise the DogStatsD with the API and app key, with customised hostname and port</summary>
/// <param name="api_key">Your API Key</param>
/// <param name="app_key">Your app key</param>
/// <param name="host">Hostname to send to DogStatsD</param>
/// <param name="port">Port number to send to DogStatsD</param>
DataDogStatsD::DataDogStatsD(string api_key, string app_key, string host, unsigned int port)
{
this->api_key = api_key;
this->app_key = app_key;
this->host = host;
this->port = port;
this->dd_entity_id = getenv("DD_ENTITY_ID");
}
void DataDogStatsD::increment(const std::string& stats, int count)
{
std::vector<std::string> statsArray;
statsArray.push_back(stats);
if (dd_entity_id == nullptr)
{
this->updateStats(statsArray, count, 1.0, "");
}
else
{
this->updateStats(statsArray, count, 1.0, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::increment(const std::string& stats, const std::string& tags, int count)
{
std::vector<std::string> statsArray;
statsArray.push_back(stats);
this->updateStats(statsArray, count, 1.0, tags);
}
void DataDogStatsD::increment(const std::vector<std::string>& stats)
{
if (dd_entity_id == nullptr)
{
this->updateStats(stats, 1, 1.0, "");
}
else
{
this->updateStats(stats, 1, 1.0, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::increment(const std::vector<std::string>& stats, const std::string& tags)
{
this->updateStats(stats, 1, 1.0, tags);
}
void DataDogStatsD::decrement(const std::string& stats)
{
std::vector<std::string> statsArray;
statsArray.push_back(stats);
if (dd_entity_id == nullptr)
{
this->updateStats(statsArray, -1, 1.0, "");
}
else
{
this->updateStats(statsArray, 1, 1.0, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::decrement(const std::string& stats, const std::string& tags)
{
std::vector<std::string> statsArray;
statsArray.push_back(stats);
this->updateStats(statsArray, -1, 1.0, tags);
}
void DataDogStatsD::decrement(const std::vector<std::string>& stats)
{
if (dd_entity_id == nullptr)
{
this->updateStats(stats, -1, 1.0, "");
}
else
{
this->updateStats(stats, -1, 1.0, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::decrement(const std::vector<std::string>& stats, const string& tags)
{
this->updateStats(stats, -1, 1.0, tags);
}
void DataDogStatsD::timing(const std::string& stats, float timeInSeconds)
{
if (dd_entity_id == nullptr)
{
stringstream valueStream;
valueStream << (timeInSeconds) << "|ms";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0);
}
else
{
this->timing(stats, timeInSeconds, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::timing(const std::string& stats, float timeInSeconds, const std::string& tags)
{
stringstream valueStream;
valueStream << (timeInSeconds) << "|ms";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0, tags);
}
void DataDogStatsD::gauge(const std::string& stats, float value)
{
if (dd_entity_id == nullptr)
{
stringstream valueStream;
valueStream << (value) << "|g";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0);
}
else
{
this->gauge(stats, value, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::gauge(const std::string&stats, float value, const std::string& tags)
{
stringstream valueStream;
valueStream << (value) << "|g";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0, tags);
}
void DataDogStatsD::histogram(const std::string& stats, float value)
{
if (dd_entity_id == nullptr)
{
stringstream valueStream;
valueStream << (value) << "|h";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0);
}
else
{
this->histogram(stats, value, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::histogram(const std::string& stats, float value, const std::string& tags)
{
stringstream valueStream;
valueStream << (value) << "|h";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0, tags);
}
void DataDogStatsD::set(const std::string& stats, float value)
{
if (dd_entity_id == nullptr)
{
stringstream valueStream;
valueStream << (value) << "|s";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0);
}
else
{
this->set(stats, value, this->returnSerializedTagsString(this->dd_entity_id_key + ":" + this->dd_entity_id));
}
}
void DataDogStatsD::set(const std::string& stats, float value, const std::string& tags)
{
stringstream valueStream;
valueStream << (value) << "|s";
std::map<std::string, std::string> data;
data[stats] = valueStream.str();
this->send(data, 1.0, tags);
}
void DataDogStatsD::updateStats(std::vector<std::string> stats, int delta, float sampleRate, const string& tags)
{
std::map<string, string> data;
//Loop over the stats and create the multi dimension array of stat => value
for (std::vector<std::string>::iterator it = stats.begin(); it != stats.end(); ++it)
{
data[*it] = std::to_string(delta) + "|c";
}
this->send(data, sampleRate, tags);
}
void DataDogStatsD::send(std::map<string, string> data, float sampleRate, string tags)
{
if (data.size() == 0)
{
return;
}
std::map<string, string> sampledData;
if (sampleRate < 1)
{
for (std::map<string, string>::iterator it = data.begin(); it != data.end(); ++it)
{
if ((Helpers::rand() / Helpers::rand_mx()) <= sampleRate)
{
stringstream valueStream;
valueStream << it->second << "|@" << sampleRate;
string value = valueStream.str();
sampledData[it->first] = value;
}
}
}
else
{
sampledData = data;
}
if (sampledData.size() == 0)
{
return;
}
for (std::map<string, string>::iterator it = sampledData.begin(); it != sampledData.end(); ++it)
{
stringstream output;
output << it->first << ":" << it->second << tags;
string udp_message = output.str();
this->flush(udp_message);
}
}
void DataDogStatsD::event(DDEvent& ddEvent)
{
string udp_message = ddEvent.returnDDEventUDPString();
this->flush(udp_message);
}
CURL * DataDogStatsD::initCurl(DDEvent ddEvent, string *response, struct curl_slist *list, const char *jsonString)
{
CURL *curl = NULL;
curl = curl_easy_init();
if (curl == NULL)
{
cout << "Failed to initialise curl" << endl;
return NULL;
}
list = curl_slist_append(list, "Content-Type: application/json");
stringstream dd_url_stream;
dd_url_stream << "https://app.datadoghq.com/api/v1/events?api_key=" << this->api_key << "&application_key=" << this->app_key;
string dd_url = dd_url_stream.str();
curl_easy_setopt(curl, CURLOPT_URL, dd_url.c_str());
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 1);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, list);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, response);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &DataDogStatsD::curlResponseWriteCallback);
curl_easy_setopt(curl, CURLOPT_HEADER, 0);
curl_easy_setopt(curl, CURLOPT_POST, 1);
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (unsigned)strlen(jsonString));
curl_easy_setopt(curl, CURLOPT_COPYPOSTFIELDS, jsonString);
return curl;
}
bool DataDogStatsD::event(DDEvent ddEvent, bool nonBlockingMode, void(*eventCallback)(bool result, string error))
{
//Send the request blocking the current thread until a response is returned - don't call this too often or your app may lock
if (!nonBlockingMode)
{
string response;
struct curl_slist *list = NULL;
string jsonString;
ddEvent.getDDEventAsJSONString(&jsonString);
CURL *curl = this->initCurl(ddEvent, &response, list, jsonString.c_str());
if (curl == NULL)
{
if (eventCallback != nullptr)
{
eventCallback(false, "Failed to initialise curl");
}
return false;
}
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK)
{
string error = curl_easy_strerror(res);
if (eventCallback != nullptr)
{
eventCallback(false, error);
}
curl_slist_free_all(list);
curl_easy_cleanup(curl);
return false;
}
else
{
long response_code;
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
curl_slist_free_all(list);
curl_easy_cleanup(curl);
if (eventCallback != nullptr)
{
if (response_code == 200 || response_code == 201 || response_code == 202)
{
eventCallback(true, "");
return true;
}
else
{
eventCallback(false, response);
return false;
}
}
else
{
if (response_code == 200 || response_code == 201 || response_code == 202)
{
return true;
}
else
{
return false;
}
}
}
}
else
{
//Make sure we only have 1 thread running at a time, if the thread for the HTTP event is already running return an error
if (!httpEventThreadStarted)
{
//Return an error if we've got a null eventCallback function as otherwise, how you supposed to know if it failed to post the event
//If you're not worried whether the event post was not successful call DataDogStatsD::event(DDEvent) to send over UDP throught the agent
if (eventCallback == nullptr)
{
cout << "Eventcallback cannot be null if sending event in non blocking mode" << endl;
return false;
}
else
{
httpEventThreadStarted = true;
this->http_event_thread = new thread(&DataDogStatsD::sendDDEventinthread, this, ddEvent, eventCallback);
return true;
}
}
else
{
if (eventCallback != nullptr)
{
eventCallback(false, "HTTP Event thread is already sending an event, wait until the current event has been finished");
return false;
}
else
{
return false;
}
}
}
}
void DataDogStatsD::sendDDEventinthread(DDEvent ddEvent, void(*eventCallback)(bool result, string error))
{
string response;
struct curl_slist *list = NULL;
string jsonString;
ddEvent.getDDEventAsJSONString(&jsonString);
CURL *curl = this->initCurl(ddEvent, &response, list, jsonString.c_str());
if (curl == NULL)
{
eventCallback(false, "Failed to initialsie curl");
httpEventThreadStarted = false;
return;
}
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK)
{
string error = curl_easy_strerror(res);
eventCallback(false, error);
curl_slist_free_all(list);
curl_easy_cleanup(curl);
httpEventThreadStarted = false;
return;
}
else
{
long response_code;
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
if (response_code == 200 || response_code == 201 || response_code == 202)
{
eventCallback(true, "");
}
else
{
eventCallback(false, response);
}
curl_slist_free_all(list);
curl_easy_cleanup(curl);
httpEventThreadStarted = false;
return;
}
}
size_t DataDogStatsD::curlResponseWriteCallback(void *contents, size_t size, size_t nmemb, void *userp)
{
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}
void DataDogStatsD::flush(string& udp_message)
{
#ifdef _WIN32
WSAData wsaData;
int result = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (result == 0)
{
SOCKET sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
sockaddr_in service;
service.sin_family = AF_INET;
service.sin_addr.s_addr = inet_addr(this->host.c_str());
service.sin_port = htons(this->port);
//result = ::bind(sock, (SOCKADDR *)&service, sizeof(service));
result = ::connect(sock, (SOCKADDR *)&service, sizeof(service));
if (result != SOCKET_ERROR)
{
int bytes_written= ::send(sock, udp_message.c_str(), udp_message.length(), 0);
// What to do if the message wasn't fully sent?
if (bytes_written < (int)udp_message.length()) {
}
closesocket(sock);
WSACleanup();
}
}
else
{
WSACleanup();
}
#else
int udp_socket = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
struct sockaddr_in serv_addr;
bzero((char *)&serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
inet_pton(AF_INET, this->host.c_str(), &serv_addr.sin_addr);
serv_addr.sin_port = htons(this->port);
connect(udp_socket, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
ssize_t bytes_written= write(udp_socket, udp_message.c_str(), udp_message.length());
// What to do if the message wasn't fully sent?
if (bytes_written < (ssize_t)udp_message.length()) {
}
close(udp_socket);
#endif
}
string DataDogStatsD::returnSerializedTagsString(std::string tags)
{
stringstream valueStream;
valueStream << "|#" << tags;
if (dd_entity_id != nullptr)
{
valueStream << "," << this->dd_entity_id_key << ":" << this->dd_entity_id << ",";
}
string serialisedTags = valueStream.str();
if (serialisedTags.at(0) == ',')
{
serialisedTags = serialisedTags.substr(1);
}
if (serialisedTags.at(serialisedTags.length() - 1) == ',')
{
serialisedTags.pop_back();
}
return serialisedTags;
}
string DataDogStatsD::returnSerializedTagsString(std::vector<std::string> tags)
{
if (tags.size() == 0)
{
return string("");
}
stringstream valueStream;
valueStream << "|#";
int i = 0;
for (std::vector<string>::iterator it = tags.begin(); it != tags.end(); ++it)
{
valueStream << i << ":" << *it << ",";
i++;
}
const char * dd_entity_id = getenv("DD_ENTITY_ID");
if (dd_entity_id != nullptr)
{
valueStream << this->dd_entity_id_key << this->dd_entity_id << ",";
}
string value = valueStream.str();
value.pop_back();
return value;
}
string DataDogStatsD::returnSerializedTagsString(std::map<std::string, std::string> tags)
{
//Check if the envionment variable is set for entity id. If it is then add this to the tags
const char * dd_entity_id = getenv("DD_ENTITY_ID");
if (dd_entity_id != nullptr)
{
tags[this->dd_entity_id_key] = this->dd_entity_id;
}
stringstream valueStream;
valueStream << "|#";
int i = 0;
for (std::map<string, string>::iterator it = tags.begin(); it != tags.end(); ++it)
{
valueStream << it->first << ":" << it->second << ",";
i++;
}
string value = valueStream.str();
value.pop_back();
return value;
}
long DataDogStatsD::getTimeInMicroSeconds()
{
#ifndef _WIN32
struct timeval time;
gettimeofday(&time, NULL);
long microsec = ((unsigned long long)time.tv_sec * 1000000) + time.tv_usec;
return microsec;
#else
return 0;
#endif
}
DataDogStatsD::~DataDogStatsD()
{
if (this->http_event_thread != NULL)
{
this->http_event_thread->join();
delete this->http_event_thread;
this->http_event_thread = NULL;
}
}