Skip to content

Commit 5357a29

Browse files
committed
2 parents 3c24a92 + 9fd339e commit 5357a29

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

DataDogStatsD.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ void DataDogStatsD::send(std::map<string, string> data, float sampleRate, string
248248

249249
void DataDogStatsD::event(DDEvent& ddEvent)
250250
{
251-
//cout << ddEvent.returnDDEventUDPString() << endl;
252251
string udp_message = ddEvent.returnDDEventUDPString();
253252
this->flush(udp_message);
254253
}
@@ -530,4 +529,4 @@ DataDogStatsD::~DataDogStatsD()
530529
delete this->http_event_thread;
531530
this->http_event_thread = NULL;
532531
}
533-
}
532+
}

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
<a href="https://ci.boardiesitsolutions.com/viewType.html?buildTypeId=CppDatadogstatsd_Build&guest=1">
3+
<img src="https://ci.boardiesitsolutions.com/app/rest/builds/buildType:(id:CppDatadogstatsd_Build)/statusIcon"/>
4+
</a>
5+
16
# C++ DataDog StatsD Client
27

38
This is a simple library to allow you to submit custom metrics from your C++ apps in

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ LDFLAGS = -lpthread -pthread -lm -L/usr/lib64/
1313
.PHONY: clean
1414

1515
default:
16-
$(CC) -shared -Wl,-soname,libDataDogStatsD.so.1 -o $(lib_name) $(OBJECTS) $(LDFLAGS)
17-
ln -sf $(lib_name) libDataDogStatsD.so
16+
$(CC) -shared -Wl,-soname,libDataDogStatsD.so.1 -o $(lib_name) $(OBJECTS) $(LDFLAGS)
17+
ln -sf $(lib_name) libDataDogStatsD.so
1818

1919
clean:
20-
rm -vf $(OBJECTS) depend $(lib_name)
20+
rm -vf $(OBJECTS) depend $(lib_name)
2121

2222
depend: $(SOURCES)
23-
$(CC) $(CFLAGS) > depend
23+
$(CC) $(CFLAGS) > depend
2424

2525
-include depend

0 commit comments

Comments
 (0)