void send_uint()

in spectator/stateless_meters.h [88:94]


  void send_uint(uint64_t value) {
    if (value_prefix_.empty()) {
      value_prefix_ = detail::create_prefix(*id_, Type());
    }
    auto msg = absl::StrFormat("%s%u", value_prefix_, value);
    publisher_->send(msg);
  }