in spectator/stateful_meters.h [69:76]
void record(double amount) {
if (amount >= 0) {
count_.fetch_add(1);
detail::add_double(&total_, amount);
detail::add_double(&totalSq_, amount * amount);
detail::update_max(&max_, amount);
}
}