statsd-client-cpp icon indicating copy to clipboard operation
statsd-client-cpp copied to clipboard

a client sdk for StatsD, written in C++

Results 4 statsd-client-cpp issues
Sort by recently updated
recently updated
newest added

in file: https://github.com/talebook/statsd-client-cpp/blob/master/src/statsd_client.cpp#L158 StatsdClient::count() has 'value' defined as size_t, which is commonly an unsigned value. %zd in snprintf() helps, consider use uint32_t instead size_t

Using the default copy constructor leads to the Data pointer being shared between copies of the client. Once a client gets deleted, it deletes the Data which is shared across...